/* ============================
   Design System
   ============================ */
:root {
  --bg: #f4f7fa;
  --bg-warm: #f8f6f3;
  --bg-alt: #f0f3f7;
  --card: #ffffff;
  --muted: #5e7a8a;
  --muted-light: #8ba3b3;
  --dark: #1a2d42;
  --darker: #0f1e30;
  --accent: #4a7c96;
  --accent-hover: #3a6a84;
  --accent-light: #6b9db5;
  --sage: #7da68a;
  --sage-light: #e8f0ea;
  --lavender: #9b8ec4;
  --lavender-light: #eee8f7;
  --sand: #c4a97d;
  --sand-light: #f5f0e6;
  --rose: #c48b8b;
  --rose-light: #f7eded;
  --border: #dde5ed;
  --border-light: #e8eef4;
  --maxw: 1140px;
  --pad: 24px;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-soft: 0 4px 24px rgba(26, 45, 66, 0.07);
  --shadow-elevated: 0 16px 48px rgba(26, 45, 66, 0.10), 0 4px 16px rgba(26, 45, 66, 0.05);
  --shadow-card: 0 2px 12px rgba(26, 45, 66, 0.06);
}

*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--dark);
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================
   Header
   ============================ */
header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px var(--pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--dark);
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: contain;
}

.logo-text h2 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.3px;
}

nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

nav a:hover, nav a:focus { color: var(--accent); }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--dark);
  padding: 8px;
  margin: 0;
  line-height: 1;
}

.menu-toggle:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

nav.mobile-nav {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--card);
  border-bottom: 1px solid var(--border);
  flex-direction: column;
  width: 100%;
  padding: 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

nav.mobile-nav.open { max-height: 500px; }

nav.mobile-nav a {
  padding: 14px 24px;
  border-bottom: 1px solid var(--border-light);
  display: block;
  text-align: center;
  width: 100%;
  font-size: 15px;
}

nav.mobile-nav a:last-child { border-bottom: none; }

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================
   Sticky Download Bar
   ============================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: rgba(26, 45, 66, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 10px var(--pad);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 -4px 30px rgba(0,0,0,0.15);
}

.sticky-bar.visible { transform: translateY(0); }

.sticky-bar-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-bar-text {
  color: rgba(255,255,255,0.9);
  font-size: 14px;
  font-weight: 600;
}

.sticky-bar .store-btn {
  padding: 8px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.25s;
}

.sticky-bar .store-btn-apple { background: white; color: var(--dark); }
.sticky-bar .store-btn-google { background: rgba(255,255,255,0.15); color: white; border: 1px solid rgba(255,255,255,0.25); }
.sticky-bar .store-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.2); }

/* ============================
   Hero
   ============================ */
.hero {
  padding: 80px var(--pad) 64px;
  text-align: center;
  background: linear-gradient(180deg, #f0f4f8 0%, var(--bg) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(74, 124, 150, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sage-light);
  color: var(--sage);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin: 0 0 18px;
  color: var(--dark);
  line-height: 1.15;
  position: relative;
  z-index: 1;
  letter-spacing: -1px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 17px;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.store-badge-apple {
  background: var(--dark);
  color: white;
  box-shadow: 0 4px 20px rgba(26, 45, 66, 0.25);
}

.store-badge-apple:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 45, 66, 0.35);
}

.store-badge-google {
  background: white;
  color: var(--dark);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-card);
}

.store-badge-google:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(26, 45, 66, 0.12);
  border-color: var(--accent-light);
}

.store-badge svg { flex-shrink: 0; }

.hero-rating {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
}

.hero-stars { color: #e6a817; font-size: 16px; letter-spacing: 2px; }

/* ============================
   Desktop Feature Split View
   ============================ */
.desktop-features {
    max-width: var(--maxw);
    margin: 60px auto 30px;
    background: white;
    border-radius: 24px;
    box-shadow: var(--shadow-elevated);
    display: flex;
    overflow: hidden;
    border: 1px solid var(--border-light);
    text-align: left;
}

.feature-list {
    flex: 2; /* 40% width approx */
    border-right: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    background: var(--bg-alt);
    overflow-y: auto;
    max-height: 700px;
}

.feature-list-item {
    padding: 20px 32px;
    cursor: pointer;
    transition: all 0.2s;
    border-left: 4px solid transparent;
    display: flex;
    align-items: center;
    gap: 16px;
}

.feature-list-item:hover {
    background: rgba(255,255,255,0.6);
}

.feature-list-item.active {
    background: white;
    border-left-color: var(--accent);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.feature-list-item h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: var(--muted);
    transition: color 0.2s;
}

.feature-list-item.active h3 { color: var(--dark); }

.feature-list-icon { 
    color: var(--muted-light); 
    width: 24px; 
    height: 24px; 
    flex-shrink: 0;
    transition: color 0.2s;
}

.feature-list-item.active .feature-list-icon { color: var(--accent); }

.feature-display {
    flex: 3; /* 60% width */
    padding: 40px;
    background: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.feature-display-content {
    max-width: 400px;
    width: 100%;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.feature-display-text h2 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 12px;
    color: var(--dark);
}

.feature-display-text p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
    margin: 0 0 32px;
}

.feature-phone-frame {
    width: 240px; /* Reduced from 280px */
    aspect-ratio: 9/19.5;
    background: #000;
    border-radius: 24px;
    border: 6px solid var(--dark);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    margin: 0 auto;
    position: relative;
}

.feature-phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive toggles */
.mobile-features { display: none; }

@media (max-width: 900px) {
    .desktop-features { display: none; }
    .mobile-features { display: block; }
}

/* Adjust GRID for mobile-features wrapper */
.mobile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding-top: 40px;
}

@media (max-width: 600px) {
  .mobile-grid { grid-template-columns: 1fr; }
}

/* ============================
   Problem / PAS Section
   ============================ */
.problem-section {
  padding: 80px var(--pad);
  background: var(--bg-warm);
}

.problem-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.problem-inner h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.problem-inner > p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 40px;
}

.problem-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 680px;
  margin: 0 auto;
}

.problem-card {
  padding: 28px;
  border-radius: var(--radius);
  text-align: left;
}

.problem-card-bad {
  background: var(--rose-light);
  border: 2px solid rgba(196, 139, 139, 0.3);
}

.problem-card-good {
  background: var(--sage-light);
  border: 2px solid rgba(125, 166, 138, 0.3);
  box-shadow: var(--shadow-card);
}

.problem-card h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.problem-card ul {
  margin: 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.8;
}

.problem-card li { margin-bottom: 2px; }

/* ============================
   Section Shared
   ============================ */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 16px;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================
   Feature Story Sections
   ============================ */
/* ============================
   Features Grid System
   ============================ */
.features-section {
  padding: 80px var(--pad);
  background: white;
}

.mobile-features {
  padding: 60px var(--pad);
  background: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.feature-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-elevated);
  border-color: var(--accent-light);
}

.feature-card:hover .feature-icon {
    background: var(--accent);
    color: white;
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
  transition: all 0.3s;
}

.feature-icon svg { width: 24px; height: 24px; }

.feature-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--dark);
}

.feature-card p {
  font-size: 15px;
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
}

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.feature-modal {
  background: white;
  width: 90%;
  max-width: 450px;
  border-radius: 32px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.12), 0 10px 30px rgba(0,0,0,0.05); /* Soft, elevated shadow */
  transform: scale(0.9);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  border: 1px solid rgba(0,0,0,0.05);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
}

.modal-overlay.active .feature-modal {
  transform: scale(1);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--bg-alt);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  color: var(--dark);
  z-index: 5;
}

.modal-close:hover { background: var(--border); transform: rotate(90deg); }

.modal-header { text-align: center; margin-bottom: 24px; width: 100%; flex-shrink: 0; }
.modal-title { font-size: 24px; font-weight: 700; margin: 0 0 8px; color: var(--dark); }
.modal-desc { font-size: 16px; color: var(--muted); }

.modal-media {
    width: 240px;
    aspect-ratio: 9/19.5;
    background: #000;
    border-radius: 24px;
    border: 6px solid var(--dark);
    overflow: hidden;
    box-shadow: var(--shadow-elevated);
    margin: 0 auto;
    position: relative;
    flex-shrink: 0;
}

.modal-media img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    display: block;
    max-height: 480px;
}

 @media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-modal { 
      padding: 24px 20px; 
      width: 95%; 
      max-height: 90vh; /* Don't exceed screen height */
      display: flex;
      flex-direction: column;
      align-items: center; /* Center content */
  }
  .modal-header {
      margin-bottom: 16px;
  }
  .modal-title { font-size: 20px; }
  .modal-desc { font-size: 14px; }
  .modal-media {
      width: auto;
      height: 55vh;
      aspect-ratio: 9/19.5;
      max-width: 100%;
  }
  .modal-media img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }
}

/* ============================
   Trust / Privacy (compact)
   ============================ */
.trust-section {
  padding: 80px var(--pad);
  background: var(--bg);
}

.trust-row {
  display: flex;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}

.trust-card {
  flex: 1;
  background: var(--card);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-light);
  transition: transform 0.3s ease;
}

.trust-card:hover { transform: translateY(-3px); }

.trust-icon { font-size: 24px; margin-bottom: 12px; display: block; }

.trust-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--dark);
}

.trust-card p {
  color: var(--muted);
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
}

.trust-card ul {
  margin: 8px 0 0;
  padding: 0 0 0 18px;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.7;
}

.trust-card li { margin-bottom: 2px; }

/* ============================
   Disclosure (compact)
   ============================ */
.disclosure-section {
  padding: 64px var(--pad);
  background: white;
}

.disclosure-inner {
  max-width: 760px;
  margin: 0 auto;
}

.disclosure-inner h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  color: var(--dark);
  text-align: center;
}

.disclosure-inner > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 20px;
}

.disclosure-inner h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 20px 0 10px;
  color: var(--dark);
}

.disclosure-inner ul {
  margin: 0 0 16px 18px;
  padding: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.disclosure-inner li { margin-bottom: 3px; }

/* ============================
   Screenshots Gallery
   ============================ */
.screenshots-section {
  padding: 80px var(--pad);
  background: var(--bg-alt);
}

.gallery-track {
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.gallery-track::-webkit-scrollbar { display: none; }

.gallery-flex {
  display: flex;
  gap: 20px;
  padding: 0 var(--pad);
  min-width: min-content;
}

.gallery-card {
  flex: 0 0 auto;
  width: 240px;
  text-align: center;
  transition: transform 0.3s ease;
}

.gallery-card:hover { transform: translateY(-5px); }

.gallery-card img {
  max-width: 100%;
  height: auto;
  border-radius: 22px;
  box-shadow: var(--shadow-elevated);
  max-height: 500px;
  display: block;
  margin: 0 auto;
}

.gallery-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 24px;
}

.gallery-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}

.gallery-dot.active, .gallery-dot:hover {
  background: var(--accent);
  transform: scale(1.2);
}

/* ============================
   FAQ
   ============================ */
.faq-section {
  padding: 80px var(--pad);
  background: white;
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
  padding: 20px 0;
}

.faq-item:last-child { border-bottom: none; }

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--muted-light);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-q::after { transform: rotate(45deg); }

.faq-a {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.8;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, opacity 0.3s;
  opacity: 0;
}

.faq-item.open .faq-a {
  max-height: 500px;
  opacity: 1;
}

/* ============================
   Download CTA
   ============================ */
.download-section {
  padding: 80px var(--pad);
  background: var(--dark);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download-section::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(74, 124, 150, 0.15) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.download-section h2 {
  font-size: 34px;
  font-weight: 700;
  margin: 0 0 14px;
  position: relative;
  z-index: 1;
  letter-spacing: -0.5px;
}

.download-section .container > p {
  font-size: 16px;
  opacity: 0.8;
  margin: 0 0 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.download-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s;
}

.download-badge-apple {
  background: white;
  color: var(--dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.download-badge-google {
  background: rgba(255,255,255,0.12);
  color: white;
  border: 2px solid rgba(255,255,255,0.25);
}

.download-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.download-privacy-note {
  margin-top: 28px;
  font-size: 12px;
  opacity: 0.55;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-weight: 600;
}

/* ============================
   Footer
   ============================ */
footer {
  background: var(--darker);
  color: white;
  padding: 40px var(--pad) 28px;
}

.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand img { width: 32px; height: 32px; border-radius: 8px; }
.footer-brand span { font-size: 17px; font-weight: 700; }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover { color: white; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 20px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

.footer-privacy-statement {
  font-weight: 600;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  font-size: 10px;
  color: rgba(255,255,255,0.45);
}

/* ============================
   Responsive: Tablet (iPad)
   ============================ */
@media (max-width: 1024px) {
  .feature-row { gap: 40px; }
  .feature-media { flex: 0 0 180px; max-width: 180px; }
  .feature-text h2 { font-size: 25px; }
}

/* ============================
   Responsive: Mobile landscape / small tablet
   ============================ */
@media (max-width: 768px) {
  .header-container { position: relative; }
  .menu-toggle { display: flex; order: 2; }
  nav:not(.mobile-nav) { display: none; }
  nav.mobile-nav { display: none; }
  nav.mobile-nav.open { display: flex; }

  .hero { padding: 56px var(--pad) 48px; }
  .hero h1 { font-size: 32px; letter-spacing: -0.5px; }
  .hero-subtitle { font-size: 15px; margin-bottom: 28px; }
  .hero-cta { flex-direction: column; align-items: center; }
  .store-badge { width: 100%; max-width: 260px; justify-content: center; }

  .problem-comparison { grid-template-columns: 1fr; gap: 14px; }
  .problem-inner h2, .section-header h2 { font-size: 26px; }

  /* Feature rows stack on mobile */
  .feature-row,
  .feature-row:nth-child(even) {
    flex-direction: column;
    text-align: center;
    gap: 28px;
    padding: 40px var(--pad);
  }

  .feature-media {
    flex: none;
    max-width: 180px;
    margin: 0 auto;
  }

  .feature-tag { margin-bottom: 8px; }
  .feature-text h2 { font-size: 23px; }
  .feature-text p { font-size: 14px; }

  .trust-row { flex-direction: column; }

  .download-badges { flex-direction: column; align-items: center; }
  .download-badge { width: 100%; max-width: 260px; justify-content: center; }
  .download-section h2 { font-size: 26px; }

  .footer-top { flex-direction: column; align-items: center; text-align: center; }
  .footer-links { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

  .gallery-card { width: 200px; }
  .sticky-bar-text { display: none; }
}

/* ============================
   Responsive: Small phones
   ============================ */
@media (max-width: 480px) {
  .hero h1 { font-size: 27px; }
  .hero-subtitle { font-size: 14px; }

  .problem-inner h2, .section-header h2 { font-size: 23px; }
  .problem-card { padding: 22px; }

  .feature-row,
  .feature-row:nth-child(even) {
    padding: 32px var(--pad);
  }
  .feature-media { max-width: 160px; }
  .feature-text h2 { font-size: 21px; }

  .trust-card { padding: 22px; }

  .gallery-card { width: 180px; }
  .gallery-card img { border-radius: 18px; }

  .footer-links { flex-direction: column; gap: 10px; }
}