/* Ugo Landing Page Styles */
/* Mobile-First Responsive Design */

:root {
  /* Nature-Inspired Color Palette */
  --primary-blue: #2C5F7E;
  --primary-blue-light: #3A7FA8;
  --accent-orange: #E17B3B;
  --accent-gold: #F2B74F;
  --earth-green: #5A7D5F;
  --earth-green-dark: #3D5940;
  --neutral-tan: #D4C4B0;
  --neutral-brown: #6B5747;
  --background-light: #F7F5F2;
  --text-dark: #2A2A2A;
  --text-light: #FFFFFF;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  
  /* Typography */
  --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Dark mode color overrides */
.ion-palette-dark {
  --primary-blue: #4A8FB8;
  --primary-blue-light: #5BA3D0;
  --accent-orange: #F28B4F;
  --accent-gold: #F5C96F;
  --earth-green: #7AA37F;
  --earth-green-dark: #5A8B5F;
  --neutral-tan: #B8A890;
  --neutral-brown: #8B7A6B;
  --background-light: #1A1A1A;
  --text-dark: #E0E0E0;
  --text-light: #FFFFFF;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-color: var(--background-light);
  transition: background-color 0.3s ease, color 0.3s ease;
}

@media (min-width: 1201px) {
  body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 50%;
    width: 1200px;
    height: 100vh;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 1500;
    box-shadow: 0 0 0 100vmax #101820;
  }
}

/* Ionic Grid overrides */
ion-grid {
  --ion-grid-padding: var(--spacing-sm);
  max-width: 1024px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  ion-grid {
    --ion-grid-padding: var(--spacing-md);
  }
}

/* Container for non-grid sections */
.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 var(--spacing-sm);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-md);
  }
}

/* Section Titles */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: var(--spacing-sm);
  color: var(--primary-blue);
}

.section-subtitle {
  font-size: 1.125rem;
  text-align: center;
  color: var(--neutral-brown);
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
  
  .section-subtitle {
    font-size: 1.25rem;
  }
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--earth-green-dark) 100%);
  padding: var(--spacing-xl) var(--spacing-md);
  text-align: center;
}

.ion-palette-dark .hero-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--earth-green-dark) 100%);
}

img.hero-splash {
   max-height: 120px;
  margin-bottom: 0px;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
  position: relative;
  z-index: 2;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-logo {
  position: relative;
  z-index: 2;
  width: auto;
  height: 3rem;
  min-height: 3rem;
  margin: 0 auto;
  display: block;
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
  object-fit: contain;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-orange);
  margin-bottom: var(--spacing-sm);
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-cta {
  --padding-start: 2rem;
  --padding-end: 2rem;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: var(--spacing-lg);
}

.hero-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.hero-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-light);
}

.hero-feature ion-icon {
  font-size: 2rem;
  color: var(--accent-gold);
}

.hero-feature span {
  font-weight: 600;
  font-size: 0.875rem;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: var(--spacing-md);
  left: 50%;
  transform: translateX(-50%);
  cursor: pointer;
  animation: bounce 2s infinite;
  z-index: 3;
}

.hero-scroll-indicator ion-icon {
  font-size: 2rem;
  color: var(--text-light);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

@media (min-width: 768px) {
  .hero-section {
    padding: var(--spacing-xl) var(--spacing-md);
  }
  
  .hero-logo {
    height: 4.2rem;
    min-height: 4.2rem;
    margin-bottom: 0;
  }
  
  .hero-title {
    font-size: 3.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
  }
}

/* Problem/Solution Section */
.problem-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-light);
}

.problem-section ion-row {
  align-items: stretch;
}

.problem-section ion-col {
  display: flex;
  flex-direction: column;
}

.comparison-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.comparison-card ion-card {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.comparison-card ion-card-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin-bottom: var(--spacing-sm);
}

@media (min-width: 768px) {
  .comparison-card ion-card-content {
    flex-direction: row;
    align-items: flex-start;
  }
}

.comparison-problem,
.comparison-solution {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  width: 100%;
  flex: 1;
}

.comparison-problem ion-icon,
.comparison-solution ion-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}


/* Features Section */
.features-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--earth-green-dark) 100%);
}

.features-section .section-title,
.features-section .section-subtitle {
  color: var(--text-light);
}

.features-section ion-row {
  align-items: stretch;
}

.features-section ion-col {
  display: flex;
  flex-direction: column;
}

.feature-card {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.feature-card ion-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card ion-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue-light), var(--accent-orange));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-sm);
}

.feature-icon ion-icon {
  color: white;
}

.feature-card ion-card-title {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
}

.feature-description {
  color: var(--neutral-brown);
  margin-bottom: var(--spacing-md);
}

.feature-details {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-details li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-xs);
  margin-bottom: var(--spacing-xs);
  font-size: 0.9rem;
}

.feature-details ion-icon {
  flex-shrink: 0;
  margin-top: 2px;
}


/* Screenshot Section */
.screenshot-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-light);
}

.screenshot-placeholder {
  background: white;
  border-radius: 12px;
  padding: var(--spacing-lg);
  text-align: center;
  border: 3px dashed var(--neutral-tan);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.ion-palette-dark .screenshot-placeholder {
  background: var(--ion-color-step-50, #1e1e1e);
  border-color: var(--neutral-tan);
}

.screenshot-placeholder ion-icon {
  font-size: 4rem;
  color: var(--neutral-tan);
  margin-bottom: var(--spacing-sm);
}

.screenshot-placeholder.has-screenshot {
  border: none;
  padding: var(--spacing-md);
  min-height: auto;
}

.screenshot-image {
  width: 100%;
  max-width: 500px;
  max-height: 640px;
  height: auto;
  margin-bottom: var(--spacing-sm);
  display: block;
  margin-left: auto;
  margin-right: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  object-fit: contain;
}

.screenshot-placeholder h3 {
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

.screenshot-placeholder p {
  color: var(--neutral-brown);
  font-size: 0.9rem;
  max-width: 400px;
}


/* Offline Section */
.offline-section {
  padding: var(--spacing-xl) 0;
  background-color: white;
}

.ion-palette-dark .offline-section {
  background-color: var(--ion-color-step-50, #1e1e1e);
}

.offline-content {
  display: grid;
  gap: var(--spacing-lg);
  align-items: center;
}

.offline-text ion-icon,
.privacy-text ion-icon {
  margin-bottom: var(--spacing-md);
}

.offline-text h2,
.privacy-text h2 {
  font-size: 2rem;
  color: var(--primary-blue);
  margin-bottom: var(--spacing-md);
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: var(--spacing-md) 0;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
}

.benefit-list ion-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  margin-top: 2px;
}

@media (min-width: 968px) {
  .offline-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .privacy-content {
    grid-template-columns: 1fr 1fr;
  }
}

/* Privacy Section */
.privacy-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--earth-green) 0%, var(--primary-blue) 100%);
  color: var(--text-light);
}

.privacy-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
}

.privacy-header ion-icon {
  margin-bottom: var(--spacing-md);
}

.privacy-header h2 {
  color: var(--text-light);
  margin-bottom: var(--spacing-md);
}

.privacy-header p {
  color: var(--text-light);
  opacity: 0.95;
}

.privacy-content {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.privacy-visual {
  width: 100%;
}

.privacy-text {
  width: 100%;
}

.privacy-text h2 {
  color: var(--text-light);
}

.privacy-text p {
  color: var(--text-light);
  opacity: 0.95;
}

.privacy-section .benefit-list li {
  color: var(--text-light);
}

/* How It Works Section */
.how-it-works-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-light);
}

.how-it-works-section ion-row {
  margin-top: var(--spacing-md);
}

.how-it-works-section ion-col {
  overflow: visible;
}

.step-card {
  text-align: center;
  position: relative;
  height: 100%;
  overflow: visible !important;
  margin-top: var(--spacing-md);
}

.step-card ion-card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--spacing-lg);
}

.step-number {
  position: absolute;
  top: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-gold));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.step-card ion-icon {
  font-size: 3rem;
  margin: var(--spacing-md) 0;
}

.step-card h3 {
  color: var(--primary-blue);
  margin-bottom: var(--spacing-sm);
  font-size: 1.25rem;
}

.step-card p {
  color: var(--neutral-brown);
}

.cta-container {
  text-align: center;
}


/* Community Section */
.community-section {
  padding: var(--spacing-xl) 0;
  background-color: white;
}

.ion-palette-dark .community-section {
  background-color: var(--ion-color-step-50, #1e1e1e);
}

.community-card {
  height: 100%;
}

.community-card ion-icon {
  margin-bottom: var(--spacing-sm);
}

.community-card ion-card-title {
  font-size: 1.25rem;
  color: var(--primary-blue);
}

.community-screenshot {
  margin-top: var(--spacing-lg);
  min-height: 400px;
}


/* FAQ Section */
.faq-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--background-light);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 12px;
  margin-bottom: var(--spacing-md);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.ion-palette-dark .faq-item {
  background: var(--ion-color-step-50, #1e1e1e);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.faq-question {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.faq-question ion-card-title {
  font-size: 1.125rem;
  text-align: center;
  margin-bottom: var(--spacing-xs);
  color: var(--primary-blue);
}

.ion-palette-dark .faq-question ion-card-title {
  color: var(--primary-blue-light);
}

.faq-question .faq-arrow {
  font-size: 1.5rem;
  color: var(--primary-blue);
  flex-shrink: 0;
}

.ion-palette-dark .faq-question .faq-arrow {
  color: var(--primary-blue-light);
}

.faq-answer {
  color: var(--neutral-brown);
}

.ion-palette-dark .faq-answer {
  color: var(--text-dark);
}

.ion-palette-dark .faq-answer ion-text {
  color: var(--text-dark) !important;
}

/* Final CTA Section */
.final-cta-section {
  padding: var(--spacing-xl) 0;
  background: linear-gradient(135deg, var(--accent-orange) 0%, var(--accent-gold) 100%);
  text-align: center;
  color: var(--text-light);
}

.final-cta-section h2 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-sm);
  color: var(--text-light);
}

.final-cta-section p {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
}

.cta-note {
  font-size: 0.875rem;
  margin-top: var(--spacing-md);
  opacity: 0.9;
}

/* Footer */
.footer {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.ion-palette-dark .footer {
  background-color: #1A1A1A;
  color: var(--text-light);
}

.ion-palette-dark .footer ion-text {
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

.footer-logo-section {
  text-align: center;
  margin-bottom: var(--spacing-lg);
}

.footer-logo {
  width: 240px;
  height: auto;
  margin: 0 auto var(--spacing-sm) auto;
  display: block;
}

.footer-links-row {
  justify-content: center;
}

.footer-links-row .footer-section {
  text-align: center;
}

.footer-section h4 {
  color: var(--accent-gold);
  margin-bottom: var(--spacing-md);
  font-size: 1.125rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: var(--spacing-xs);
}

.footer-section a {
  color: var(--text-light);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-section a:hover {
  opacity: 1;
  color: var(--accent-gold);
}

.social-links {
  display: flex;
  gap: var(--spacing-sm);
  margin-top: var(--spacing-md);
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  transition: background-color 0.3s ease;
}

.social-links a:hover {
  background-color: var(--accent-orange);
}

.social-links ion-icon {
  font-size: 1.25rem;
}

.footer-bottom {
  text-align: center;
  padding-top: var(--spacing-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 968px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* Theme Toggle Button */
.theme-toggle-button {
  position: fixed;
  top: var(--spacing-sm);
  right: max(var(--spacing-sm), calc((100vw - 1024px) / 2 + var(--spacing-sm)));
  z-index: 1000;
  --padding-start: 0.75rem;
  --padding-end: 0.75rem;
  --padding-top: 0.75rem;
  --padding-bottom: 0.75rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  transition: background-color 0.3s ease, transform 0.2s ease, opacity 0.3s ease, visibility 0.3s ease;
  opacity: 1;
  visibility: visible;
}

.theme-toggle-button.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.theme-toggle-button:hover {
  transform: scale(1.1);
}

.theme-toggle-button ion-icon {
  font-size: 1.5rem;
  color: var(--text-dark);
}

.ion-palette-dark .theme-toggle-button {
  background-color: rgba(30, 30, 30, 0.9);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ion-palette-dark .theme-toggle-button ion-icon {
  color: var(--text-light);
}

@media (min-width: 768px) {
  .theme-toggle-button {
    top: var(--spacing-md);
    right: max(var(--spacing-md), calc((100vw - 1024px) / 2 + var(--spacing-md)));
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

body {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

/* Ionic Customizations */
ion-button {
  --border-radius: 8px;
  text-transform: none;
  font-weight: 600;
}

ion-card {
  --background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin: 0;
}

.ion-palette-dark ion-card {
  --background: var(--ion-color-step-50, #1e1e1e);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

ion-card-header {
  padding-bottom: 0;
}

ion-card-title {
  font-weight: 700;
}

ion-img {
  display: block;
}

ion-list {
  background: transparent;
  padding: 0;
}

ion-item {
  --background: transparent;
  --padding-start: 0;
  --inner-padding-end: 0;
}

.footer ion-item {
  --color: var(--primary-blue);
  --color-hover: var(--accent-gold);
}

.footer .footer-section ion-item {
  --background: transparent;
  --color: var(--primary-blue);
  --color-hover: var(--accent-gold);
  --color-focused: var(--primary-blue);
  --color-activated: var(--accent-gold);
  --inner-border-width: 0;
}

.footer .footer-section ion-label {
  --color: var(--primary-blue);
  color: var(--primary-blue) !important;
  opacity: 1 !important;
  font-weight: 500;
}

.footer .footer-section ion-item::part(native) {
  background: transparent;
  color: var(--primary-blue);
  opacity: 1;
}

.footer .footer-section ion-item:hover ion-label {
  color: var(--accent-gold);
  opacity: 1;
}

.ion-palette-dark .footer .footer-section ion-item {
  --color: var(--primary-blue-light);
  --color-focused: var(--primary-blue-light);
}

.ion-palette-dark .footer .footer-section ion-label {
  --color: var(--primary-blue-light);
  color: var(--primary-blue-light) !important;
}

.ion-palette-dark .footer .footer-section ion-item::part(native) {
  color: var(--primary-blue-light);
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Modal Dark Mode Support */
body.ion-palette-dark ion-modal {
  --background: #1a1a1a;
  --color: #e0e0e0;
}

body.ion-palette-dark ion-modal ion-header ion-toolbar {
  --background: #1a1a1a;
  --color: #e0e0e0;
  --border-color: rgba(255, 255, 255, 0.1);
}

body.ion-palette-dark ion-modal ion-content {
  --background: #1a1a1a;
  --color: #e0e0e0;
}

body.ion-palette-dark ion-modal ion-item {
  --background: #1a1a1a;
  --color: #e0e0e0;
  --border-color: rgba(255, 255, 255, 0.1);
}

body.ion-palette-dark ion-modal ion-input {
  --color: #e0e0e0;
  --placeholder-color: rgba(224, 224, 224, 0.6);
  --background: rgba(255, 255, 255, 0.05);
}

body.ion-palette-dark ion-modal ion-label {
  --color: #e0e0e0;
}

body.ion-palette-dark ion-modal ion-button {
  --color: #ffffff;
}

/* Also target modal with the class directly (for programmatically added class) */
ion-modal.ion-palette-dark {
  --background: #1a1a1a;
  --color: #e0e0e0;
}

ion-modal.ion-palette-dark ion-header ion-toolbar {
  --background: #1a1a1a;
  --color: #e0e0e0;
  --border-color: rgba(255, 255, 255, 0.1);
}

ion-modal.ion-palette-dark ion-content {
  --background: #1a1a1a;
  --color: #e0e0e0;
}

ion-modal.ion-palette-dark ion-item {
  --background: #1a1a1a;
  --color: #e0e0e0;
  --border-color: rgba(255, 255, 255, 0.1);
}

ion-modal.ion-palette-dark ion-input {
  --color: #e0e0e0;
  --placeholder-color: rgba(224, 224, 224, 0.6);
  --background: rgba(255, 255, 255, 0.05);
}

ion-modal.ion-palette-dark ion-label {
  --color: #e0e0e0;
}

ion-modal.ion-palette-dark ion-button {
  --color: #ffffff;
}

/* Print Styles */
@media print {
  .hero-section,
  .final-cta-section {
    break-inside: avoid;
  }
  
  .footer {
    page-break-before: always;
  }
}

