/* CSS Custom Properties */
:root {
  /* Colors */
  --primary-blue: #0EA5E9;
  --primary-light: #22D3EE;
  --text-dark: #1F2937;
  --text-medium: #4B5563;
  --text-light: #6B7280;
  --bg-white: #FFFFFF;
  --bg-gray: #F9FAFB;
  --bg-light: #F3F4F6;
  --border-light: #E5E7EB;
  --border-medium: #D1D5DB;
  --success: #10B981;
  --warning: #F59E0B;
  --error: #EF4444;
  
  /* Typography */
  --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  
  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Layout */
  --container-width: 1200px;
  --border-radius: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  
  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 350ms ease-in-out;
}

/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* Focus Styles */
:focus-visible {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Screen Reader Only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-4);
}

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

@media (min-width: 1024px) {
  .container {
    padding: 0 var(--space-8);
  }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

@media (min-width: 768px) {
  h1 {
    font-size: var(--font-size-5xl);
  }
  
  h2 {
    font-size: var(--font-size-4xl);
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: var(--font-size-6xl);
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-3) var(--space-6);
  font-size: var(--font-size-base);
  font-weight: 600;
  text-align: center;
  border-radius: var(--border-radius);
  transition: all var(--transition-fast);
  cursor: pointer;
  border: 1px solid transparent;
  text-decoration: none;
  min-height: 44px; /* Accessibility: minimum touch target */
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: var(--shadow-sm);
}

.btn-outline {
  background: transparent;
  color: var(--primary-blue);
  border-color: var(--primary-blue);
}

.btn-outline:hover {
  background: var(--primary-blue);
  color: white;
}

/* Store Badges */
.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-top: var(--space-6);
  justify-content: center;
  align-items: center;
  width: 100%;
}

.store-badge {
  display: inline-block;
  transition: transform var(--transition-fast);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.store-badge:hover {
  transform: translateY(-2px);
}

.store-badge svg {
  display: block;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition-normal);
}

.header.scrolled {
  border-bottom-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-weight: 700;
  font-size: var(--font-size-lg);
  color: var(--text-dark);
}

.logo {
  width: 40px;
  height: 40px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger {
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition-fast);
  position: relative;
}

.hamburger::before,
.hamburger::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition-fast);
}

.hamburger::before {
  top: -6px;
}

.hamburger::after {
  bottom: -6px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-link {
  font-weight: 500;
  color: var(--text-medium);
  transition: color var(--transition-fast);
  padding: var(--space-2) 0;
}

.nav-link:hover {
  color: var(--primary-blue);
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: var(--space-4) 0;
    box-shadow: var(--shadow-md);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
  }
  
  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-link {
    padding: var(--space-3) var(--space-4);
    width: 100%;
    border-bottom: 1px solid var(--border-light);
  }
  
  .nav-link:last-child {
    border-bottom: none;
  }
}

/* Hero Section */
.hero {
  padding: calc(70px + var(--space-6)) 0 var(--space-8) 0;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.03), rgba(34, 211, 238, 0.03));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(ellipse at top, rgba(14, 165, 233, 0.1), transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.hero-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-text .store-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.hero-icon-container {
  display: flex;
  justify-content: center;
  margin-bottom: var(--space-8);
}

.app-icon-large {
  width: 120px;
  height: 120px;
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition-normal);
}

.app-icon-large:hover {
  transform: scale(1.05);
}

@media (min-width: 768px) {
  .app-icon-large {
    width: 150px;
    height: 150px;
  }
}

.hero-title {
  margin-bottom: var(--space-4);
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
}

.hero-subtitle {
  font-size: var(--font-size-xl);
  font-weight: 600;
  color: var(--text-medium);
  margin-bottom: var(--space-4);
  text-align: center;
}

.hero-description {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  margin-bottom: var(--space-4);
  max-width: 500px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.trust-bar {
  margin-top: var(--space-3);
  margin-bottom: var(--space-6);
}

.trust-text {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  text-align: center;
}

.company-bar {
  margin-top: var(--space-6);
}

.company-text {
  font-size: var(--font-size-sm);
  color: var(--text-light);
  text-align: center;
  opacity: 0.8;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-phone {
  max-width: 300px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Section Styles */
section {
  padding: var(--space-16) 0;
}

/* Reduce spacing for features section that follows hero */
.hero + .features {
  padding-top: var(--space-8);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-12);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Features Section */
.features {
  background: var(--bg-gray);
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

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

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-card {
  background: white;
  padding: var(--space-8);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
  border-radius: var(--border-radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-6);
  color: white;
}

.feature-title {
  margin-bottom: var(--space-4);
}

.feature-description {
  color: var(--text-medium);
}

/* How It Works Section */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .steps {
    gap: var(--space-16);
  }
}

.step {
  display: flex;
  align-items: flex-start;
  gap: var(--space-6);
  text-align: left;
}

@media (max-width: 767px) {
  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  font-weight: 700;
  flex-shrink: 0;
}

.step-title {
  margin-bottom: var(--space-3);
}

.step-description {
  color: var(--text-medium);
  font-size: var(--font-size-lg);
}

/* Screenshots Carousel */
.screenshots {
  background: var(--bg-gray);
}

.carousel-wrapper {
  max-width: 1000px;
  margin: 0 auto;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius-xl);
  background: white;
  box-shadow: var(--shadow-lg);
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-normal);
  cursor: grab;
}

.carousel-track:active {
  cursor: grabbing;
}

.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--space-8);
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
}

@media (min-width: 768px) {
  .carousel-slide {
    flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    flex: 0 0 33.333%;
  }
}

.carousel-slide img {
  max-width: 250px;
  height: auto;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  opacity: 1;
  transition: opacity 0.3s ease;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--primary-blue);
  color: white;
  border-color: var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.carousel-btn-prev {
  left: var(--space-4);
}

.carousel-btn-next {
  right: var(--space-4);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--border-medium);
  border: none;
  cursor: pointer;
  transition: background-color var(--transition-fast);
}

.carousel-dot:hover,
.carousel-dot.active {
  background: var(--primary-blue);
}

/* FAQ Section */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-item {
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition-fast);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item[open] {
  box-shadow: var(--shadow-md);
}

.faq-question {
  padding: var(--space-6);
  font-size: var(--font-size-lg);
  font-weight: 600;
  cursor: pointer;
  background: var(--bg-white);
  border: none;
  width: 100%;
  text-align: left;
  list-style: none;
  position: relative;
  transition: background-color var(--transition-fast);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: var(--space-6);
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--font-size-xl);
  font-weight: 300;
  color: var(--primary-blue);
  transition: transform var(--transition-fast);
}

.faq-item[open] .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--text-medium);
  line-height: 1.7;
}

.faq-answer a {
  color: var(--primary-blue);
  text-decoration: underline;
}

.faq-answer a:hover {
  text-decoration: none;
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
  color: white;
}

.newsletter-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-title {
  color: white;
  margin-bottom: var(--space-4);
}

.newsletter-description {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
  opacity: 0.9;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1;
}

@media (min-width: 768px) {
  .form-group {
    flex-direction: row;
  }
}

.form-input {
  padding: var(--space-4);
  border: 1px solid var(--border-light);
  border-radius: var(--border-radius);
  font-size: var(--font-size-base);
  background: white;
  flex: 1;
  min-height: 44px;
}

.form-input:focus {
  outline: none;
  border-color: var(--primary-blue);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.form-note {
  font-size: var(--font-size-sm);
  opacity: 0.8;
  margin-top: var(--space-4);
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: var(--space-8) 0 var(--space-4);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr 2fr 1fr;
    gap: var(--space-8);
  }
}

.footer-brand {
  text-align: center;
}

@media (min-width: 768px) {
  .footer-brand {
    text-align: left;
  }
}

.footer-logo {
  margin: 0 auto var(--space-2);
}

@media (min-width: 768px) {
  .footer-logo {
    margin: 0 0 var(--space-2) 0;
  }
}

.footer-brand-name {
  display: block;
  font-size: var(--font-size-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.footer-tagline {
  opacity: 0.8;
  font-size: var(--font-size-sm);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-links {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
}

.footer-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-link {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition-fast);
  font-size: var(--font-size-sm);
}

.footer-link:hover {
  color: white;
}

.footer-download {
  text-align: center;
}

.footer-download-text {
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-2);
  opacity: 0.8;
}

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

.footer-copyright {
  font-size: var(--font-size-sm);
  opacity: 0.6;
}

/* Privacy Page Specific Styles */
.privacy-page {
  padding-top: calc(70px + var(--space-8));
  min-height: 100vh;
}

/* Copyright Page Specific Styles */
.copyright-page {
  padding-top: calc(70px + var(--space-8));
  min-height: 100vh;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.02), rgba(34, 211, 238, 0.02));
}

.copyright-content {
  max-width: 900px;
  margin: 0 auto;
  padding: var(--space-12) var(--space-4);
}

.copyright-content h1 {
  margin-bottom: var(--space-4);
  text-align: center;
  font-size: var(--font-size-4xl);
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.copyright-meta {
  text-align: center;
  color: var(--text-light);
  font-size: var(--font-size-base);
  margin-bottom: var(--space-12);
  padding: var(--space-4);
  background: rgba(14, 165, 233, 0.05);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-blue);
}

.copyright-section {
  margin-bottom: var(--space-12);
  background: white;
  padding: var(--space-8);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}

.copyright-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-light));
  border-radius: var(--border-radius) 0 0 var(--border-radius);
}

.copyright-section h2 {
  color: var(--primary-blue);
  margin-bottom: var(--space-6);
  font-size: var(--font-size-2xl);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.copyright-section h2::before {
  content: '§';
  font-size: var(--font-size-xl);
  color: var(--primary-light);
  font-weight: bold;
}

.copyright-section p {
  line-height: 1.7;
  margin-bottom: var(--space-4);
  color: var(--text-medium);
  font-size: var(--font-size-base);
}

.copyright-section p strong {
  color: var(--text-dark);
  font-weight: 600;
}

.copyright-list {
  margin-bottom: var(--space-4);
  padding-left: 0;
  list-style: none;
}

.copyright-list li {
  margin-bottom: var(--space-3);
  line-height: 1.7;
  color: var(--text-medium);
  padding: var(--space-3) var(--space-4);
  background: var(--bg-gray);
  border-radius: var(--border-radius);
  border-left: 3px solid var(--primary-light);
  position: relative;
  padding-left: var(--space-8);
}

.copyright-list li::before {
  content: '✓';
  position: absolute;
  left: var(--space-3);
  color: var(--primary-blue);
  font-weight: bold;
}

.copyright-list li strong {
  color: var(--text-dark);
  font-weight: 600;
}

.contact-info {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(34, 211, 238, 0.1));
  padding: var(--space-8);
  border-radius: var(--border-radius-lg);
  margin-top: var(--space-6);
  border: 1px solid rgba(14, 165, 233, 0.2);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-blue), var(--primary-light));
}

.contact-info p {
  margin-bottom: var(--space-3);
  font-size: var(--font-size-base);
  line-height: 1.6;
}

.contact-info p:last-child {
  margin-bottom: 0;
}

.contact-info strong {
  color: var(--text-dark);
  font-weight: 600;
}

/* Special styling for key sections */
.copyright-section:first-of-type {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(14, 165, 233, 0.2);
}

.copyright-section:first-of-type h2 {
  color: var(--primary-blue);
  font-size: var(--font-size-3xl);
}

/* Responsive improvements */
@media (max-width: 768px) {
  .copyright-content {
    padding: var(--space-8) var(--space-3);
  }
  
  .copyright-section {
    padding: var(--space-6);
    margin-bottom: var(--space-8);
  }
  
  .copyright-content h1 {
    font-size: var(--font-size-3xl);
  }
  
  .copyright-section h2 {
    font-size: var(--font-size-xl);
  }
}

/* Coming Soon Page Specific Styles */
.coming-soon-page {
  padding-top: calc(70px + var(--space-12));
  min-height: 100vh;
}

.coming-soon-content {
  max-width: 700px;
  margin: 0 auto;
  padding: var(--space-12) var(--space-4);
  text-align: center;
}

.coming-soon-content h1 {
  margin-bottom: var(--space-8);
  color: var(--primary-blue);
  font-size: var(--font-size-4xl);
  line-height: 1.2;
}

.coming-soon-description {
  font-size: var(--font-size-xl);
  color: var(--text-medium);
  margin-bottom: var(--space-12);
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-12);
}

.features-preview {
  background: var(--bg-gray);
  padding: var(--space-8);
  border-radius: var(--border-radius);
  margin-bottom: var(--space-12);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-12);
}

.features-preview h2 {
  margin-bottom: var(--space-6);
  color: var(--text-dark);
  font-size: var(--font-size-2xl);
}

.features-list {
  list-style: none;
  padding: 0;
  text-align: left;
  max-width: 350px;
  margin: 0 auto;
}

.features-list li {
  padding: var(--space-3) 0;
  font-size: var(--font-size-lg);
  color: var(--text-medium);
  display: flex;
  align-items: center;
}


.ios-alternative {
  margin-bottom: var(--space-12);
  background: rgba(14, 165, 233, 0.05);
  padding: var(--space-8);
  border-radius: var(--border-radius);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--space-12);
}

.ios-alternative p {
  margin-bottom: var(--space-6);
  color: var(--text-medium);
  font-size: var(--font-size-lg);
}

.back-link-container {
  margin-top: var(--space-12);
  padding-top: var(--space-8);
  border-top: 2px solid var(--border-light);
  text-align: center;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  background: var(--primary-blue);
  color: white;
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 500;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.back-link:hover {
  background: var(--primary-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: white;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: var(--space-8) 0;
}

.privacy-content h1 {
  margin-bottom: var(--space-6);
  text-align: center;
}

.privacy-meta {
  text-align: center;
  color: var(--text-light);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-4);
}

.privacy-intro {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-8);
  padding: var(--space-6);
  background: var(--bg-light);
  border-radius: var(--border-radius-lg);
  border-left: 4px solid var(--primary-blue);
}

.privacy-section {
  margin-bottom: var(--space-8);
}

.privacy-section h2 {
  margin-bottom: var(--space-6);
  color: var(--primary-blue);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: var(--space-3);
}

.privacy-section h3 {
  margin: var(--space-6) 0 var(--space-4);
  color: var(--text-dark);
}

.privacy-section p {
  margin-bottom: var(--space-4);
  line-height: 1.7;
}

.privacy-section ul {
  margin: var(--space-4) 0;
  padding-left: var(--space-6);
}

.privacy-section li {
  list-style: disc;
  margin-bottom: var(--space-2);
  line-height: 1.6;
}

.privacy-section a {
  color: var(--primary-blue);
  text-decoration: underline;
}

.privacy-section a:hover {
  text-decoration: none;
}

.contact-info {
  background: var(--bg-light);
  padding: var(--space-6);
  border-radius: var(--border-radius);
  margin: var(--space-4) 0;
}

.privacy-footer {
  margin-top: var(--space-16);
  padding-top: var(--space-8);
  border-top: 1px solid var(--border-light);
}

.back-link {
  color: var(--primary-blue);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition-fast);
}

.back-link:hover {
  color: var(--primary-light);
}

.footer-content-simple {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-6);
  margin-bottom: var(--space-8);
}

.footer-links-simple {
  display: flex;
  gap: var(--space-6);
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  .store-badges {
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  :root {
    --space-4: 0.75rem;
    --space-6: 1rem;
    --space-8: 1.5rem;
    --space-12: 2rem;
    --space-16: 2.5rem;
  }
  
  .hero {
    padding: calc(70px + var(--space-8)) 0 var(--space-12) 0;
  }
  
  .hero-title {
    font-size: var(--font-size-3xl);
  }
  
  .store-badges {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  
  .store-badge svg {
    width: 120px;
    height: 36px;
  }
  
  .feature-card,
  .step,
  .faq-item {
    padding: var(--space-6);
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
  }
  
  .carousel-btn-prev {
    left: var(--space-2);
  }
  
  .carousel-btn-next {
    right: var(--space-2);
  }
}

/* Print Styles */
@media print {
  .header,
  .footer,
  .newsletter {
    display: none;
  }
  
  .privacy-page {
    padding-top: 0;
  }
  
  * {
    background: white !important;
    color: black !important;
    box-shadow: none !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
  :root {
    --border-light: #000;
    --border-medium: #000;
    --text-light: #000;
    --text-medium: #000;
  }
  
  .btn-outline {
    border-width: 2px;
  }
}

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