*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  background: var(--green);
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 0 0 8px 8px;
  font-size: 0.9rem;
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

:root {
  --green: #1A9B6B;
  --green-dark: #0F7A54;
  --green-deeper: #0A5E40;
  --green-light: #E8F5EF;
  --rose: #C4917B;
  --rose-light: #E2BFB0;
  --rose-dark: #A06B58;
  --bg: #FAFAF8;
  --bg-alt: #F0EDE8;
  --card: #FFFFFF;
  --text: #1A1A1A;
  --text-secondary: #666660;
  --border: #E5E2DD;
  --radius: 18px;
  --shadow: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 32px rgba(0,0,0,0.1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #141211;
    --bg-alt: #1E1A17;
    --card: #2A2420;
    --text: #F5F0EB;
    --text-secondary: #B0A5A0;
    --border: #3D3530;
    --green-light: rgba(26, 155, 107, 0.15);
    --shadow: 0 4px 24px rgba(0,0,0,0.2);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.3);
  }
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Kadwa', Georgia, serif; }

/* ─── Navigation ─── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  padding: 0 1.5rem;
  height: 60px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.2); }

.nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #FFFFFF;
}

.nav-brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.nav-brand-text {
  font-family: 'Kadwa', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-brand-text span { color: var(--rose-light); transition: color 0.2s; }

.nav-brand { transition: opacity 0.2s; }
.nav-brand:hover { opacity: 0.9; }
.nav-brand:hover .nav-brand-text span { color: #FFFFFF; }

.lang-select {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #FFFFFF;
  padding: 0.35rem 0.6rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  appearance: auto;
}
.lang-select option {
  background: var(--green-dark);
  color: #FFFFFF;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26,155,107,0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(196,145,123,0.12) 0%, transparent 50%),
    linear-gradient(135deg, #0F7A54 0%, #1A9B6B 50%, #158B5E 100%);
  color: #FFFFFF;
  padding: 4rem 1.5rem 3rem;
  overflow: hidden;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero .tagline {
  font-size: 1.3rem;
  opacity: 0.95;
  margin-bottom: 0.5rem;
  font-weight: 400;
  line-height: 1.5;
}

.hero .subtitle {
  font-size: 1.1rem;
  opacity: 0.95;
  font-style: italic;
  margin-bottom: 2rem;
}

.accent { color: var(--rose-light); font-style: normal; }

.store-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #FFFFFF;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  cursor: default;
}
.apple-store-link {
  background: #000;
  border: 1px solid #A6A6A6;
  border-radius: 10px;
  padding: 0.5rem 1.1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.apple-store-link:hover {
  background: #000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.apple-store-link .store-badge-icon {
  width: 28px;
  height: 28px;
}
.apple-store-link .store-badge-text small {
  opacity: 0.95;
}
.store-badge:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}
.footer-badges .store-badge {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.15);
  color: var(--text);
}
.footer-badges .store-badge:hover {
  background: rgba(0,0,0,0.1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.footer-badges .apple-store-link {
  background: #000;
  border-color: #A6A6A6;
  color: #fff;
}
.footer-badges .apple-store-link:hover {
  background: #000;
}
.store-badge-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.store-badge-text small {
  display: block;
  font-size: 0.7rem;
  opacity: 0.85;
  line-height: 1.2;
}
.store-badge-text strong {
  display: block;
  font-size: 0.95rem;
  line-height: 1.2;
}

/* ─── Section Headers & Feature Tags ─── */

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  color: var(--green);
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.feature-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
  margin-top: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (prefers-color-scheme: dark) {
  .feature-tag { color: #7DCEA0; }
}

/* ─── Evidence ─── */
.evidence {
  position: relative;
  background: var(--bg-alt);
  padding: 4rem 1.5rem;
  overflow: hidden;
}

.evidence-inner {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.stat {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat-value {
  display: block;
  font-family: 'Kadwa', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}

.stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.references {
  text-align: center;
}

.references h3 {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Lato', sans-serif;
}

.ref-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  list-style: none;
}

.ref-list li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  padding: 0.35rem 0.85rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  white-space: nowrap;
}

/* --- About --- */
.about {
  background: var(--bg);
  padding: 4rem 1.5rem;
}

.about-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.about-supra {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--rose);
  margin-bottom: 0.75rem;
}

.about h2 {
  font-family: 'Kadwa', Georgia, serif;
  color: var(--green);
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.about-desc {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.about-chips {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.about-chip svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

/* ─── Pricing ─── */
.pricing {
  max-width: 1080px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.price-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-light);
}
.price-card.featured:hover {
  border-color: var(--rose);
}

.price-card.featured {
  border-color: var(--rose);
  box-shadow: 0 0 0 2px var(--rose-light), var(--shadow);
  position: relative;
}

.price-badge {
  position: absolute;
  top: -0.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: #FFFFFF;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.price-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--green);
  font-family: 'Kadwa', Georgia, serif;
  margin-bottom: 0.15rem;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.price-card ul {
  list-style: none;
  text-align: left;
}
.price-card ul li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}
.price-card ul li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  min-width: 16px;
  background: var(--green-light);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5 8L7 10.5L11.5 5.5' stroke='%231A9B6B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center;
}

/* ─── Disclaimer ─── */
.disclaimer {
  max-width: 720px;
  margin: 0 auto;
  padding: 1.5rem 1.5rem 2rem;
  text-align: center;
}
.disclaimer p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.7;
  opacity: 0.8;
}

/* ─── Footer ─── */
footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text);
}
.footer-brand img {
  width: 28px;
  height: 28px;
  border-radius: 6px;
}
.footer-brand-text {
  font-family: 'Kadwa', Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
}
.footer-brand-text span { color: var(--rose); }

.footer-links {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
.footer-links a {
  color: var(--green);
  text-decoration: none;
  font-size: 0.9rem;
  transition: opacity 0.2s;
}
.footer-links a:hover { opacity: 0.7; }

.footer-badges {
  justify-content: center;
  margin: 0.5rem 0 0;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 0.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-fade {
  opacity: 0;
  transform: none;
  transition: opacity 0.8s ease;
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible,
.reveal-fade.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
}

/* ─── Nav Utilities ─── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-page-title {
  color: #FFFFFF;
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ═══════════════════════════════════════════════
   Screenshot Redesign — New Sections
   ═══════════════════════════════════════════════ */

/* ─── Hero Centered Layout ─── */
.hero-inner-centered {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.hero-inner-centered .store-badges {
  justify-content: center;
}

/* ─── Hero Phone Trio ─── */
.hero-phones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}

.hero-phone {
  border-radius: 28px;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.hero-phone img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-phone-center {
  width: 240px;
  z-index: 2;
}

.hero-phone-left,
.hero-phone-right {
  width: 200px;
  opacity: 0.8;
  transform: translateY(10px);
  z-index: 1;
}

.hero-phone-left {
  transform: translateY(10px) rotate(-5deg);
}

.hero-phone-right {
  transform: translateY(10px) rotate(5deg);
}

/* ─── Showcase Device Frame ─── */
.showcase-phone {
  width: 260px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  flex-shrink: 0;
}

.showcase-phone img {
  width: 100%;
  height: auto;
  display: block;
}

/* ─── Feature Showcase Sections ─── */
.showcase {
  padding: 4rem 1.5rem;
}

.showcase-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.showcase.reverse .showcase-inner {
  direction: rtl;
}

.showcase.reverse .showcase-inner > * {
  direction: ltr;
}

.showcase-text h2 {
  font-family: 'Kadwa', Georgia, serif;
  color: var(--green);
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.showcase-text p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

.showcase-bullets {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
}
.showcase-bullets li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.97rem;
  line-height: 1.55;
  color: var(--text-secondary);
}
.showcase-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ─── Differentiators Bar ─── */
.differentiators {
  background: var(--bg-alt);
  padding: 4rem 1.5rem;
}

.differentiators-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.diff-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.diff-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-light);
}

.diff-icon {
  width: 44px;
  height: 44px;
  color: var(--green);
  margin: 0 auto 0.75rem;
}

.diff-item h3 {
  font-family: 'Kadwa', Georgia, serif;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.diff-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.differentiators-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  max-width: 1080px;
  margin: 2rem auto 0;
}

/* ─── Light & Dark Section ─── */
.lightdark {
  padding: 4rem 1.5rem;
}

.lightdark-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.lightdark-inner h2 {
  font-family: 'Kadwa', Georgia, serif;
  color: var(--green);
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}

.lightdark-inner p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.lightdark-phones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.lightdark-phone {
  width: 240px;
  border-radius: 28px;
  overflow: hidden;
  flex-shrink: 0;
}

.lightdark-phone img {
  width: 100%;
  height: auto;
  display: block;
}

.lightdark-phone-light {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.lightdark-phone-dark {
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ─── App Tour Carousel ─── */
.app-tour {
  padding: 4rem 1.5rem;
  background: var(--bg);
  overflow: hidden;
}

.app-tour-inner {
  max-width: 1080px;
  margin: 0 auto;
  text-align: center;
}

.app-tour-inner h2 {
  font-family: 'Kadwa', Georgia, serif;
  color: var(--green);
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.app-tour-inner > p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.tour-lang-hint {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  margin-top: -1rem;
  margin-bottom: 2rem;
  opacity: 0.8;
}

.tour-lang-hint:empty {
  display: none;
}

.carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  max-width: 740px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.carousel-slide {
  flex: 0 0 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

@media (min-width: 701px) {
  .carousel-slide {
    flex: 0 0 33.333%;
    padding: 0 0.5rem;
  }
}

.carousel-phone {
  width: 220px;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
  transition: transform 0.4s ease, opacity 0.4s ease;
  flex-shrink: 0;
}

.carousel-phone img {
  width: 100%;
  height: auto;
  display: block;
}

.carousel-caption {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 260px;
}

.carousel-arrow {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--green);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
  flex-shrink: 0;
  z-index: 2;
  line-height: 1;
}

.carousel-arrow:hover {
  background: var(--green);
  color: #FFFFFF;
  box-shadow: var(--shadow);
  transform: scale(1.05);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, transform 0.3s;
}

.carousel-dot.active {
  background: var(--green);
  transform: scale(1.3);
}

/* ─── Secondary Feature Pills ─── */
.secondary-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-secondary);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.secondary-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--green-light);
}

.secondary-languages {
  width: 100%;
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-secondary);
  opacity: 0.7;
  margin: 0;
}

.secondary-pill-icon {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

/* ─── Responsive: Tablet (1024px) ─── */
@media (max-width: 1024px) {
  .showcase-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .showcase.reverse .showcase-inner {
    direction: ltr;
  }

  .showcase-visual {
    order: -1;
  }

  .differentiators-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-phone-center {
    width: 220px;
  }

  .hero-phone-left,
  .hero-phone-right {
    width: 160px;
    opacity: 0.5;
  }

  .hero-phones {
    overflow: hidden;
    margin-left: -1rem;
    margin-right: -1rem;
    padding: 0.5rem 0;
  }
}

/* ─── Responsive: Mobile (700px) ─── */
@media (max-width: 700px) {
  /* Hero */
  .hero { padding: 3rem 1.25rem 2.5rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero .tagline { font-size: 1.1rem; }
  .store-badges { justify-content: center; }
  .hero-phone-center {
    width: 200px;
  }

  .hero-phone-left,
  .hero-phone-right {
    width: 140px;
    opacity: 0.4;
  }

  .hero-phone-left {
    transform: translateY(10px) rotate(-7deg);
  }

  .hero-phone-right {
    transform: translateY(10px) rotate(7deg);
  }

  .hero-phones {
    overflow: hidden;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    padding: 0.5rem 0;
  }

  /* Section Headers */
  .section-header h2 { font-size: 1.6rem; }

  /* Evidence */
  .stats-bar { grid-template-columns: 1fr 1fr; }

  /* About */
  .about h2 { font-size: 1.4rem; }
  .about-chips { flex-direction: column; align-items: center; }

  /* Showcase */
  .showcase { padding: 3rem 1.25rem; }
  .showcase-inner { gap: 2rem; }
  .showcase-text h2 { font-size: 1.4rem; }
  .showcase-phone { width: 200px; }

  /* Differentiators */
  .differentiators { padding: 3rem 1.25rem; }
  .differentiators-inner { grid-template-columns: 1fr; }

  /* Light & Dark */
  .lightdark { padding: 3rem 1.25rem; }
  .lightdark-inner h2 { font-size: 1.4rem; }
  .lightdark-phones { gap: 1rem; }
  .lightdark-phone { width: 180px; }

  /* App Tour Carousel */
  .app-tour { padding: 3rem 1.25rem; }
  .app-tour-inner h2 { font-size: 1.4rem; }
  .carousel-phone { width: 200px; }
  .carousel-arrow { width: 32px; height: 32px; font-size: 1.1rem; }

  /* Secondary Features */
  .secondary-pill { font-size: 0.8rem; padding: 0.4rem 0.85rem; }

  /* Pricing */
  .pricing-cards { grid-template-columns: 1fr; }

  /* Footer */
  .footer-links { justify-content: center; }
}

/* ═══════════════════════════════════════════════
   Privacy Policy Page
   ═══════════════════════════════════════════════ */

.policy-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.policy-title {
  font-family: 'Kadwa', Georgia, serif;
  color: var(--green);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 2rem;
}

.policy-content {
  display: none;
}

.policy-content.active {
  display: block;
}

.policy-content section {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.policy-content section:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.policy-content h2 {
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--rose-light);
}

.policy-content h3 {
  color: var(--green-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
}

.policy-content p {
  margin-bottom: 0.75rem;
  color: var(--text);
}

.policy-content ul {
  margin: 0.5rem 0 0.75rem 1.5rem;
  color: var(--text);
}

.policy-content ul li {
  margin-bottom: 0.35rem;
  line-height: 1.6;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(26,155,107,0.08), rgba(196,145,123,0.08));
  border-left: 4px solid var(--green);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1rem 0;
}

@media (prefers-color-scheme: dark) {
  .highlight-box {
    background: linear-gradient(135deg, rgba(26,155,107,0.12), rgba(196,145,123,0.06));
  }
}

.highlight-box p {
  margin-bottom: 0;
  font-weight: 500;
}

.update-date {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* ─── Privacy Page Responsive ─── */
@media (max-width: 700px) {
  .policy-main { padding: 1.25rem 1rem 2rem; }
  .policy-content section { padding: 1.25rem 1rem; }
  .policy-content h2 { font-size: 1.1rem; }
}

/* ═══════════════════════════════════════════════
   Methodology Page
   ═══════════════════════════════════════════════ */

.method-hero {
  background: linear-gradient(135deg, #0F7A54 0%, #1A9B6B 50%, #158B5E 100%);
  color: #FFFFFF;
  padding: 3rem 1.5rem 2.5rem;
  text-align: center;
}

.method-hero h1 {
  font-family: 'Kadwa', Georgia, serif;
  font-size: 2rem;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.method-hero p {
  font-size: 1.05rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

.method-main {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

.method-summary-box {
  background: linear-gradient(135deg, rgba(26,155,107,0.08), rgba(196,145,123,0.08));
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.method-summary-box h2 {
  font-family: 'Kadwa', Georgia, serif;
  color: var(--green);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.method-summary-box p {
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.method-summary-box p:last-child {
  margin-bottom: 0;
}

.method-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.25rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.method-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.method-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--rose-light);
}

.method-icon {
  width: 28px;
  height: 28px;
  color: var(--green);
  flex-shrink: 0;
}

.method-card-header h2 {
  font-family: 'Kadwa', Georgia, serif;
  color: var(--green);
  font-size: 1.25rem;
  margin: 0;
}

.method-card h3 {
  color: var(--green-dark);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 1.25rem 0 0.5rem;
}

.method-card p {
  margin-bottom: 0.75rem;
  color: var(--text);
  line-height: 1.7;
}

.method-card ul {
  margin: 0.5rem 0 0.75rem 1.5rem;
  color: var(--text);
}

.method-card ul li {
  margin-bottom: 0.35rem;
  line-height: 1.6;
}

.method-card code {
  background: var(--bg-alt);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: 'SF Mono', 'Fira Code', monospace;
}

.method-card .note {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-style: italic;
  line-height: 1.6;
}

.method-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0;
  font-size: 0.9rem;
}

.method-table th {
  background: var(--bg-alt);
  color: var(--text);
  font-weight: 700;
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid var(--border);
}

.method-table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

.method-table tr:last-child td {
  border-bottom: none;
}

.method-refs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.ref-tag {
  font-size: 0.75rem;
  color: var(--text-secondary);
  padding: 0.2rem 0.6rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  white-space: nowrap;
}

.method-bibliography ol {
  padding-left: 1.5rem;
}

.method-bibliography li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.method-cta {
  display: block;
  width: fit-content;
  margin: 2rem auto 0;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--green);
  border-radius: 12px;
  color: var(--green);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.method-cta:hover {
  background: var(--green);
  color: #FFFFFF;
  transform: translateY(-2px);
}

@media (max-width: 700px) {
  .method-hero { padding: 2rem 1.25rem; }
  .method-hero h1 { font-size: 1.6rem; }
  .method-main { padding: 1.25rem 1rem 2rem; }
  .method-card { padding: 1.25rem 1rem; }
  .method-card-header h2 { font-size: 1.1rem; }
}

@media (prefers-color-scheme: dark) {
  .method-summary-box {
    background: linear-gradient(135deg, rgba(26,155,107,0.12), rgba(196,145,123,0.06));
  }
}
