/* ============================================================
   LUNIO — Design System & Website Styles  v1.0
   ============================================================ */

/* === DESIGN TOKENS ======================================== */
:root {
  --c-deep:     #3E6E98;
  --c-sky:      #A9CBE8;
  --c-eye:      #7FAED6;
  --c-icon-bg:  #DCEAF6;
  --c-deep-dark:#2A4A62;

  --c-bg:       #EEF4FA;
  --c-surface:  #FFFFFF;
  --c-surface2: #F4F8FC;

  --c-text:     #2F3A45;
  --c-text-2:   #6B7C8C;
  --c-text-3:   #9AAABB;

  --c-divider:  #D8E2EC;
  --c-border:   #D0DCE8;
  --c-bg-alt:   #EBF1F7;
  --c-success:  #7DBFA1;
  --c-warning:  #E6B566;
  --c-error:    #D87A7A;

  --s-1:4px; --s-2:8px; --s-3:12px; --s-4:16px; --s-5:20px;
  --s-6:24px; --s-7:28px; --s-8:32px; --s-10:40px; --s-12:48px;
  --s-16:64px; --s-20:80px; --s-24:96px;

  --r-xs:4px; --r-sm:8px; --r-md:16px;
  --r-lg:24px; --r-xl:32px; --r-full:9999px;

  --shadow-xs: 0 1px 2px rgba(47,58,69,.06);
  --shadow-sm: 0 1px 3px rgba(47,58,69,.08), 0 1px 2px rgba(47,58,69,.04);
  --shadow-md: 0 4px 12px rgba(62,110,152,.10), 0 2px 4px rgba(62,110,152,.06);
  --shadow-lg: 0 12px 32px rgba(62,110,152,.14), 0 4px 8px rgba(62,110,152,.08);
  --shadow-xl: 0 24px 48px rgba(62,110,152,.18), 0 8px 16px rgba(62,110,152,.10);
  --focus-ring: 0 0 0 3px rgba(62,110,152,.25);

  --t-fast:   150ms cubic-bezier(.4,0,.2,1);
  --t-normal: 220ms cubic-bezier(.4,0,.2,1);
  --t-slow:   380ms cubic-bezier(.4,0,.2,1);

  --font: 'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-w: 1200px;
  --nav-h: 72px;
}

/* === RESET ================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--c-deep); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-deep-dark); }
a:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--r-sm); }
ul, ol { list-style: none; }

/* === LAYOUT =============================================== */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-5);
}
@media (min-width: 768px)  { .container { padding: 0 var(--s-8); } }
@media (min-width: 1280px) { .container { padding: 0 var(--s-12); } }

section { padding: var(--s-20) 0; }
@media (min-width: 768px) { section { padding: var(--s-24) 0; } }

/* Subtle alt section background — used on FAQ, secondary sections */
.section--alt { background: var(--c-surface); }

/* === NAVIGATION =========================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background var(--t-normal), box-shadow var(--t-normal);
}
.nav.scrolled {
  background: rgba(238,244,250,.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--c-divider);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 var(--s-5);
}
@media (min-width: 768px) { .nav-inner { padding: 0 var(--s-8); } }
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-actions { display: none; align-items: center; gap: var(--s-3); }
@media (min-width: 768px) { .nav-actions { display: flex; } }
.nav-menu-btn {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border: none; background: transparent; cursor: pointer;
  color: var(--c-text); border-radius: var(--r-sm);
  transition: background var(--t-fast);
}
.nav-menu-btn:hover { background: var(--c-icon-bg); }
@media (min-width: 768px) { .nav-menu-btn { display: none; } }

.mobile-menu {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--c-surface);
  box-shadow: var(--shadow-lg); z-index: 99;
  padding: var(--s-4); flex-direction: column; gap: var(--s-3);
  border-bottom: 1px solid var(--c-divider);
}
.mobile-menu.open { display: flex; }
.mobile-nav { display: flex; flex-direction: column; padding-bottom: var(--s-3); border-bottom: 1px solid var(--c-divider); }
.mobile-nav-link {
  display: block; padding: var(--s-3) var(--s-2);
  font-size: 15px; font-weight: 500; color: var(--c-text);
  border-radius: var(--r-sm); transition: all var(--t-fast);
}
.mobile-nav-link:hover { background: var(--c-bg); color: var(--c-deep); }

/* Language toggle (injected by JS when 2+ languages exist) */
.lang-toggle {
  display: flex; align-items: center; gap: 2px;
  background: var(--c-bg); border-radius: var(--r-full); padding: 3px;
}
.lang-btn {
  padding: 5px 11px; border-radius: var(--r-full);
  font-size: 12px; font-weight: 700; letter-spacing: .3px;
  cursor: pointer; border: none; background: transparent;
  color: var(--c-text-2); transition: all var(--t-fast);
  line-height: 1; font-family: var(--font);
}
.lang-btn.active { background: var(--c-surface); color: var(--c-deep); box-shadow: var(--shadow-xs); }
.lang-btn:hover:not(.active) { color: var(--c-text); }
.mobile-lang-toggle {
  display: flex; justify-content: center;
  padding-top: var(--s-3); border-top: 1px solid var(--c-divider);
}

/* === BUTTONS ============================================== */
.btn {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 13px var(--s-6); border-radius: var(--r-full);
  font-family: var(--font); font-size: 15px; font-weight: 600;
  line-height: 1; cursor: pointer; border: 2px solid transparent;
  transition: all var(--t-normal); white-space: nowrap;
  text-decoration: none; user-select: none;
}
.btn:focus-visible { outline: none; box-shadow: var(--focus-ring); }

.btn-primary { background: var(--c-deep); color: #fff; border-color: var(--c-deep); }
.btn-primary:hover {
  background: var(--c-deep-dark); border-color: var(--c-deep-dark); color: #fff;
  transform: translateY(-1px); box-shadow: var(--shadow-md);
}
.btn-primary:active { transform: none; box-shadow: none; }

.btn-outline { background: transparent; color: var(--c-deep); border-color: var(--c-deep); }
.btn-outline:hover { background: var(--c-icon-bg); color: var(--c-deep-dark); transform: translateY(-1px); }

.btn-ghost { background: rgba(255,255,255,.12); color: #fff; border-color: rgba(255,255,255,.3); }
.btn-ghost:hover { background: rgba(255,255,255,.22); color: #fff; border-color: rgba(255,255,255,.5); }

.btn-sm { padding: 10px var(--s-4); font-size: 13px; }
.btn-lg { padding: 16px var(--s-8); font-size: 16px; }
.btn-full { width: 100%; justify-content: center; }

/* Store Buttons */
.btn-store {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 18px; background: var(--c-text); color: #fff;
  border-radius: var(--r-md); font-family: var(--font);
  border: 2px solid var(--c-text); text-decoration: none;
  transition: all var(--t-normal);
}
.btn-store:hover {
  background: #000; border-color: #000; color: #fff;
  transform: translateY(-2px); box-shadow: var(--shadow-lg);
}
.btn-store i { font-size: 22px; flex-shrink: 0; }
.btn-store .store-meta { display: flex; flex-direction: column; gap: 1px; }
.btn-store .store-label { font-size: 10px; font-weight: 400; opacity: .7; letter-spacing: .3px; }
.btn-store .store-name { font-size: 15px; font-weight: 700; line-height: 1; }
.btn-store-light {
  background: rgba(255,255,255,.12); border-color: rgba(255,255,255,.3); color: #fff;
}
.btn-store-light:hover { background: rgba(255,255,255,.22); border-color: rgba(255,255,255,.5); color: #fff; }

/* === HERO ================================================= */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + var(--s-16)) 0 var(--s-16);
  background: linear-gradient(155deg, #fff 0%, var(--c-bg) 55%, #dce9f2 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -160px; right: -160px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(169,203,232,.25) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-16); align-items: center;
}
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-content { max-width: 560px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: var(--s-2);
  padding: 6px 14px; background: var(--c-icon-bg); color: var(--c-deep);
  border-radius: var(--r-full); font-size: 13px; font-weight: 600;
  letter-spacing: .2px; margin-bottom: var(--s-5);
}
.hero-eyebrow i { font-size: 14px; }
.hero-headline {
  font-size: clamp(38px, 5.5vw, 62px);
  font-weight: 700; line-height: 1.08; letter-spacing: -1.5px;
  color: var(--c-text); margin-bottom: var(--s-5);
}
.hero-headline em { color: var(--c-deep); font-style: normal; }
.hero-sub {
  font-size: clamp(16px, 2vw, 18px); line-height: 1.65;
  color: var(--c-text-2); margin-bottom: var(--s-8); max-width: 460px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-5); }
.hero-trust {
  display: flex; align-items: center; gap: var(--s-4);
  flex-wrap: wrap;
}
.hero-trust-item {
  display: flex; align-items: center; gap: var(--s-1);
  font-size: 13px; color: var(--c-text-3); font-weight: 500;
}
.hero-trust-item i { font-size: 14px; color: var(--c-success); }

/* Phone Mockup */
.hero-visual {
  display: flex; justify-content: center; align-items: center;
  position: relative;
}
.hero-visual::before {
  content: ''; position: absolute; top: 0; right: -40px;
  width: 220px; height: 220px;
  background-image: radial-gradient(var(--c-sky) 1.5px, transparent 1.5px);
  background-size: 22px 22px; opacity: .35; pointer-events: none;
  border-radius: var(--r-full);
}
.phone {
  position: relative; width: 260px; flex-shrink: 0;
  animation: phone-float 4s ease-in-out infinite;
}
@media (min-width: 480px) { .phone { width: 290px; } }
@keyframes phone-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.phone-frame {
  width: 100%; aspect-ratio: 9/19;
  background: #1C2B3A; border-radius: 44px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(255,255,255,.06),
              inset 0 0 0 1px rgba(255,255,255,.04);
}
.phone-frame::before { /* notch */
  content: ''; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 88px; height: 28px; background: #1C2B3A;
  border-radius: 0 0 18px 18px; z-index: 10;
}
.phone-frame::after { /* home bar */
  content: ''; position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  width: 88px; height: 4px; background: rgba(255,255,255,.2);
  border-radius: var(--r-full); z-index: 10;
}
.phone-screen {
  position: absolute; inset: 3px; border-radius: 42px;
  background: var(--c-bg); overflow: hidden;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: var(--s-4); padding: var(--s-8) var(--s-5);
}
.phone-wordmark { height: 20px; width: auto; margin-bottom: var(--s-2); opacity: .6; }
.phone-icon {
  width: 68px; height: 68px; border-radius: 18px;
  overflow: hidden; box-shadow: var(--shadow-md);
}
.phone-icon img { width: 100%; height: 100%; object-fit: cover; }
.phone-status {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 8px 18px; background: #fff; border-radius: var(--r-full);
  font-size: 13px; font-weight: 600; color: var(--c-success);
  box-shadow: var(--shadow-sm);
}
.phone-status::before {
  content: ''; width: 8px; height: 8px; background: var(--c-success);
  border-radius: 50%; animation: pulse-dot 2.2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.phone-timer-label {
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--c-text-3); margin-top: var(--s-2);
}
.phone-timer {
  font-size: 34px; font-weight: 700; color: var(--c-text);
  letter-spacing: -1px; line-height: 1;
}
.phone-cta-btn {
  padding: 12px 28px; background: var(--c-deep); color: #fff;
  border-radius: var(--r-full); font-size: 14px; font-weight: 600;
  box-shadow: var(--shadow-md); margin-top: var(--s-2);
}

/* Floating notification badge */
.phone-float-notif {
  position: absolute; bottom: -16px; left: -52px;
  background: var(--c-surface); border-radius: var(--r-md);
  padding: 10px 14px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--s-2);
  animation: notif-float 3.5s ease-in-out infinite;
  white-space: nowrap; border: 1px solid var(--c-divider);
}
@keyframes notif-float {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(0deg); }
}
.phone-float-notif i { font-size: 16px; color: var(--c-success); }
.phone-float-notif span { font-size: 12px; font-weight: 600; color: var(--c-text); }

/* Hero screenshot image */
.hero-phone-img {
  width: 260px;
  border-radius: 24px;
  box-shadow: var(--shadow-xl);
  animation: phone-float 4s ease-in-out infinite;
  display: block;
}
@media (min-width: 480px) { .hero-phone-img { width: 290px; } }

/* === SCREENSHOTS =========================================== */
.screenshots-bg {
  background: var(--c-surface2);
  padding: var(--s-16) 0 var(--s-20);
  overflow: hidden;
}
.screenshots-bg .section-header { margin-bottom: var(--s-10); }
.screenshots-strip {
  display: flex;
  gap: var(--s-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: var(--s-2) var(--s-5) var(--s-6);
  scrollbar-width: none;
  /* centre on desktop once all 4 fit */
  justify-content: flex-start;
}
@media (min-width: 900px) { .screenshots-strip { justify-content: center; } }
.screenshots-strip::-webkit-scrollbar { display: none; }
.screenshot-item {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center;
  gap: var(--s-3);
  scroll-snap-align: center;
}
.screenshot-img {
  width: 155px;
  box-shadow: var(--shadow-lg);
  display: block;
}
.screenshot-caption {
  font-size: 12px; font-weight: 600;
  color: var(--c-text-2); text-align: center;
}
@media (min-width: 480px) { .screenshot-img { width: 175px; } }
@media (min-width: 768px) {
  .screenshot-img { width: 200px; }
  .screenshot-caption { font-size: 13px; }
}

/* === SECTION HEADER ======================================= */
.section-header { margin-bottom: var(--s-12); }
.section-header.centered {
  text-align: center; max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.section-eyebrow {
  display: inline-block; font-size: 11px; font-weight: 600;
  letter-spacing: .6px; text-transform: uppercase; color: var(--c-eye);
  margin-bottom: var(--s-3); opacity: .85;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 700; line-height: 1.15;
  letter-spacing: -.5px; color: var(--c-text); margin-bottom: var(--s-4);
}
.section-sub { font-size: 17px; line-height: 1.65; color: var(--c-text-2); }

/* === HOW IT WORKS ========================================= */
.how-bg { background: var(--c-surface); }
.steps-wrap {
  background: var(--c-surface); border-radius: var(--r-xl);
  border: 1px solid var(--c-divider); overflow: hidden;
}
.steps-grid {
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 768px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 768px) { .steps-grid > .step:last-child:nth-child(3n+1) { grid-column: 2; } }
.step {
  padding: var(--s-10) var(--s-8); text-align: center;
  position: relative;
  transition: background var(--t-normal);
}
.step:hover { background: var(--c-bg); }
@media (min-width: 768px) {
  .step:not(:last-child)::after {
    content: ''; position: absolute; top: 50%; right: 0;
    transform: translateY(-50%); width: 1px; height: 60%;
    background: var(--c-divider);
  }
}
@media (max-width: 767px) {
  .step:not(:last-child) { border-bottom: 1px solid var(--c-divider); }
}
.step-num {
  width: 36px; height: 36px; background: var(--c-icon-bg); color: var(--c-deep);
  border-radius: 50%; font-size: 14px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--s-4);
}
.step-icon {
  width: 60px; height: 60px; background: var(--c-icon-bg); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-deep); font-size: 26px; margin: 0 auto var(--s-4);
  transition: all var(--t-normal);
}
.step:hover .step-icon { background: var(--c-deep); color: #fff; transform: scale(1.06); }
.step-title { font-size: 17px; font-weight: 600; color: var(--c-text); margin-bottom: var(--s-2); }
.step-desc { font-size: 14px; line-height: 1.65; color: var(--c-text-2); }

/* === FEATURES ============================================= */
.features-bg { background: var(--c-bg); }
.features-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-5);
}
@media (min-width: 640px)  { .features-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-6); } }
@media (min-width: 1024px) { .features-grid { grid-template-columns: repeat(var(--grid-cols, 3), 1fr); gap: var(--s-6); } }
/* Centre a lone last item when grid has 3 columns */
@media (min-width: 1024px) {
  .features-grid > *:last-child:nth-child(3n+1) { grid-column: 2; }
}
.feature-card {
  background: var(--c-surface); border-radius: var(--r-lg);
  padding: var(--s-7); border: 1px solid var(--c-divider);
  transition: border-color var(--t-normal), box-shadow var(--t-normal);
}
.feature-card:hover {
  border-color: var(--c-eye); box-shadow: var(--shadow-sm);
}
.feature-icon {
  width: 44px; height: 44px; background: var(--c-icon-bg);
  border-radius: var(--r-md); display: flex; align-items: center;
  justify-content: center; color: var(--c-deep); font-size: 20px;
  margin-bottom: var(--s-4); flex-shrink: 0;
}
.feature-title { font-size: 15px; font-weight: 600; color: var(--c-text); margin-bottom: var(--s-2); }
.feature-desc { font-size: 14px; line-height: 1.7; color: var(--c-text-2); }
/* Lists inside feature cards (how-it-works detail cards) */
.feature-card ol { list-style: decimal; padding-left: 1.25rem; margin: var(--s-3) 0 0; }
.feature-card ul { list-style: disc; padding-left: 1.25rem; margin: var(--s-3) 0 0; }
.feature-card ol li, .feature-card ul li {
  font-size: 14px; line-height: 1.9; color: var(--c-text-2);
  padding-left: .25rem;
}
.feature-card ol li + li, .feature-card ul li + li { margin-top: .15rem; }
.feat-badge {
  display: inline-block; font-size: 10px; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  background: var(--c-icon-bg); color: var(--c-deep);
  border-radius: var(--r-full); padding: 3px 9px;
  margin-bottom: var(--s-2);
}

/* === TRUST BAR ============================================ */
.trust {
  background: var(--c-surface);
  border-top: 1px solid var(--c-divider);
  border-bottom: 1px solid var(--c-divider);
  padding: var(--s-10) 0;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--s-6);
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: var(--s-2); text-align: center; }
.trust-item i { font-size: 26px; color: var(--c-deep); }
.trust-item-title { font-size: 13px; font-weight: 600; color: var(--c-text); }
.trust-item-sub { font-size: 12px; color: var(--c-text-3); }

/* === PRICING ============================================== */
.pricing-bg { background: var(--c-surface); }
.pricing-toggle {
  display: flex; align-items: center; gap: var(--s-3);
  justify-content: center; margin-bottom: var(--s-10);
}
.toggle-label { font-size: 14px; font-weight: 500; color: var(--c-text-2); cursor: pointer; }
.toggle-label.active { color: var(--c-text); font-weight: 600; }
.toggle-switch { position: relative; width: 44px; height: 24px; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-track {
  position: absolute; inset: 0; background: var(--c-divider);
  border-radius: var(--r-full); cursor: pointer; transition: background var(--t-normal);
}
.toggle-switch input:checked + .toggle-track { background: var(--c-deep); }
.toggle-track::before {
  content: ''; position: absolute; width: 18px; height: 18px;
  left: 3px; top: 3px; background: #fff; border-radius: 50%;
  transition: transform var(--t-normal); box-shadow: var(--shadow-xs);
}
.toggle-switch input:checked + .toggle-track::before { transform: translateX(20px); }
.save-badge {
  display: inline-block; padding: 3px 9px; background: var(--c-success);
  color: #fff; border-radius: var(--r-full); font-size: 11px; font-weight: 700; letter-spacing: .3px;
}
.pricing-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-4);
}
@media (min-width: 640px)  { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pricing-grid { grid-template-columns: repeat(4, 1fr); } }
.pricing-card {
  background: var(--c-bg); border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-6); border: 2px solid transparent;
  position: relative; transition: all var(--t-normal);
  display: flex; flex-direction: column;
}
.pricing-card:hover { border-color: var(--c-sky); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  background: var(--c-surface); border-color: var(--c-deep); box-shadow: var(--shadow-lg);
}
.popular-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--c-deep); color: #fff; padding: 4px 16px;
  border-radius: var(--r-full); font-size: 11px; font-weight: 700;
  letter-spacing: .5px; white-space: nowrap;
}
.plan-name { font-size: 20px; font-weight: 700; color: var(--c-text); margin-bottom: var(--s-1); }
.plan-tagline { font-size: 13px; color: var(--c-text-2); margin-bottom: var(--s-5); }
.plan-price-wrap { margin-bottom: var(--s-5); min-height: 64px; }
.plan-price { font-size: 38px; font-weight: 700; color: var(--c-text); letter-spacing: -1px; line-height: 1; }
.plan-price.free { color: var(--c-deep); }
.plan-period { font-size: 13px; color: var(--c-text-2); margin-top: 4px; }
.plan-annual-note { font-size: 12px; color: var(--c-success); font-weight: 600; margin-top: 2px; }
.plan-features { display: flex; flex-direction: column; gap: var(--s-3); margin-bottom: var(--s-6); flex: 1; }
.plan-features li { display: flex; align-items: flex-start; gap: var(--s-2); font-size: 14px; color: var(--c-text); }
.plan-features li i { font-size: 16px; color: var(--c-success); flex-shrink: 0; margin-top: 1px; }
.plan-features li.dim { color: var(--c-text-3); }
.plan-features li.dim i { color: var(--c-divider); }
.plan-cta {
  display: block; text-align: center; padding: 13px;
  border-radius: var(--r-full); font-size: 14px; font-weight: 600;
  border: 2px solid var(--c-deep); color: var(--c-deep); background: transparent;
  cursor: pointer; font-family: var(--font); text-decoration: none;
  transition: all var(--t-normal);
}
.plan-cta:hover { background: var(--c-deep); color: #fff; }
.pricing-card.popular .plan-cta { background: var(--c-deep); color: #fff; }
.pricing-card.popular .plan-cta:hover { background: var(--c-deep-dark); border-color: var(--c-deep-dark); }
.pricing-note { text-align: center; margin-top: var(--s-8); font-size: 13px; color: var(--c-text-3); }

/* === FINAL CTA ============================================ */
.cta-section {
  background: var(--c-deep); position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(169,203,232,.15) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(127,174,214,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 700; color: #fff;
  margin-bottom: var(--s-4); letter-spacing: -.5px; line-height: 1.15;
}
.cta-sub { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: var(--s-8); line-height: 1.65; }
.cta-buttons { display: flex; flex-wrap: wrap; gap: var(--s-3); justify-content: center; }
.cta-disclaimer { margin-top: var(--s-5); font-size: 12px; color: rgba(255,255,255,.35); }

/* === FOOTER =============================================== */
.footer {
  background: var(--c-surface);
  border-top: 1px solid var(--c-divider);
  padding: var(--s-16) 0 var(--s-8);
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--s-10);
  margin-bottom: var(--s-10);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }
.footer-logo { height: 26px; width: auto; margin-bottom: var(--s-4); }
.footer-tagline { font-size: 14px; line-height: 1.65; color: var(--c-text-2); max-width: 260px; }
.footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: .8px;
  text-transform: uppercase; color: var(--c-text-3); margin-bottom: var(--s-4);
}
.footer-links { display: flex; flex-direction: column; gap: var(--s-3); }
.footer-links a { font-size: 14px; color: var(--c-text-2); transition: color var(--t-fast); }
.footer-links a:hover { color: var(--c-deep); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: center; gap: var(--s-4);
  padding-top: var(--s-6); border-top: 1px solid var(--c-divider);
}
.footer-copyright { font-size: 13px; color: var(--c-text-3); }
.footer-disclaimer {
  width: 100%; margin-top: var(--s-4);
  padding-top: var(--s-4); border-top: 1px solid var(--c-divider);
  font-size: 12px; color: var(--c-text-3); line-height: 1.6;
}

/* === COMPARISON TABLES ==================================== */
.cmp-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; line-height: 1.6;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.cmp-table thead tr {
  background: var(--c-deep);
  border-bottom: 2px solid var(--c-deep-dark);
}
.cmp-table th {
  padding: .85rem 1rem !important;
  font-weight: 700; font-size: 13px;
  letter-spacing: .2px; color: #fff !important;
}
.cmp-table th:not(:first-child) {
  text-align: center;
  border-left: 1px solid rgba(255,255,255,.15);
}
.cmp-table th:first-child { text-align: left; }
.cmp-table td {
  padding: .8rem 1rem; vertical-align: top;
  border-bottom: 1px solid var(--c-border);
}
.cmp-table td:not(:first-child) {
  text-align: center;
  border-left: 1px solid var(--c-border);
}
.cmp-table tbody tr:nth-child(odd) { background: var(--c-surface) !important; }
.cmp-table tbody tr:nth-child(even) { background: var(--c-bg-alt) !important; }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover { background: var(--c-icon-bg) !important; transition: background var(--t-fast); }
.cmp-table .cmp-highlight { color: var(--c-deep); font-weight: 700; }

/* === PAGE HERO (inner pages) ============================== */
.page-hero {
  padding: calc(var(--nav-h) + var(--s-16)) 0 var(--s-12);
  background: linear-gradient(155deg, #fff 0%, var(--c-bg) 100%);
  text-align: center;
}
.page-hero-icon {
  width: 72px; height: 72px; background: var(--c-icon-bg);
  border-radius: var(--r-lg); display: flex; align-items: center;
  justify-content: center; font-size: 32px; color: var(--c-deep);
  margin: 0 auto var(--s-5);
}
.page-hero-eyebrow {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--c-deep);
  margin-bottom: var(--s-3);
}
.page-hero-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: var(--c-text);
  letter-spacing: -.5px; margin-bottom: var(--s-3);
}
.page-hero-sub {
  font-size: 17px; color: var(--c-text-2);
  max-width: 520px; margin: 0 auto; line-height: 1.65;
}

/* === SUPPORT PAGE ========================================= */
.support-cards { display: grid; grid-template-columns: 1fr; gap: var(--s-5); }
@media (min-width: 640px) { .support-cards { grid-template-columns: repeat(3, 1fr); } }
.support-card {
  background: var(--c-surface); border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-6); border: 1px solid var(--c-divider);
  text-align: center; transition: all var(--t-normal);
  display: flex; flex-direction: column; align-items: center;
}
.support-card:hover { border-color: var(--c-sky); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.support-card-icon {
  width: 60px; height: 60px; background: var(--c-icon-bg); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--c-deep); margin-bottom: var(--s-5);
}
.support-card-icon--danger { background: #FDEAEA; color: var(--c-error); }
.support-card-title { font-size: 17px; font-weight: 600; color: var(--c-text); margin-bottom: var(--s-2); }
.support-card-sub { font-size: 14px; color: var(--c-text-2); margin-bottom: var(--s-5); line-height: 1.6; flex: 1; }
.support-card-cta {
  display: inline-block; padding: var(--s-3) var(--s-5);
  background: var(--c-icon-bg); color: var(--c-deep);
  border-radius: var(--r-full); font-size: 14px; font-weight: 600;
  text-decoration: none; transition: all var(--t-fast); word-break: break-all;
}
.support-card-cta:hover { background: var(--c-deep); color: #fff; }

.topics-grid { display: grid; grid-template-columns: 1fr; gap: var(--s-3); }
@media (min-width: 640px) { .topics-grid { grid-template-columns: repeat(2, 1fr); } }
.topic-item {
  display: flex; align-items: center; gap: var(--s-3);
  padding: var(--s-4) var(--s-5); background: var(--c-surface);
  border: 1px solid var(--c-divider); border-radius: var(--r-md);
  font-size: 14px; font-weight: 500; color: var(--c-text); text-decoration: none;
  transition: all var(--t-fast);
}
.topic-item:hover { border-color: var(--c-sky); color: var(--c-deep); box-shadow: var(--shadow-sm); transform: translateX(3px); }
.topic-item i { font-size: 18px; color: var(--c-sky); flex-shrink: 0; transition: color var(--t-fast); }
.topic-item:hover i { color: var(--c-deep); }

/* === ACCOUNT DELETION PAGE ================================ */
.deletion-wrap { max-width: 760px; margin: 0 auto; }

/* Warning alert */
.deletion-alert {
  display: flex; gap: var(--s-4); align-items: flex-start;
  background: #FFF4E5; border: 1px solid var(--c-warning);
  border-radius: var(--r-lg); padding: var(--s-5) var(--s-6);
  margin-bottom: var(--s-8);
}
.deletion-alert-icon {
  font-size: 22px; color: #7A4A1A; flex-shrink: 0; margin-top: 2px;
}
.deletion-alert-text {
  font-size: 14px; font-weight: 600; color: #7A4A1A; line-height: 1.6;
  margin-bottom: var(--s-2);
}
.deletion-alert-sub {
  font-size: 13px; color: #7A4A1A; opacity: .75; line-height: 1.6;
}

/* Steps */
.deletion-steps { list-style: none; display: flex; flex-direction: column; gap: var(--s-4); margin-bottom: var(--s-8); }
.deletion-step {
  background: var(--c-surface); border-radius: var(--r-lg);
  border: 1px solid var(--c-divider);
  display: grid; grid-template-columns: 44px 1fr;
  gap: var(--s-3) var(--s-5); align-items: center;
  padding: var(--s-5) var(--s-6);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
@media (min-width: 640px) {
  .deletion-step { grid-template-columns: 44px 88px 1fr; }
}
.deletion-step:hover { border-color: var(--c-sky); box-shadow: var(--shadow-sm); }
.step-number {
  width: 44px; height: 44px; background: var(--c-icon-bg); color: var(--c-deep);
  border-radius: 50%; font-size: 17px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  grid-column: 1; grid-row: 1; align-self: center;
}
.step-content { grid-column: 2; grid-row: 1; }
@media (min-width: 640px) {
  .step-content { grid-column: 3; }
}
.step-title { font-size: 15px; font-weight: 600; color: var(--c-text); margin-bottom: var(--s-2); }
.step-desc { font-size: 14px; line-height: 1.65; color: var(--c-text-2); }
.step-screenshot { display: none; }
@media (min-width: 640px) {
  .step-screenshot {
    display: flex; align-items: center; justify-content: center;
    grid-column: 2; grid-row: 1;
  }
}
.screenshot-phone {
  width: 80px; height: 140px; background: var(--c-bg);
  border: 2px solid var(--c-divider); border-radius: 12px;
  padding: 6px; position: relative; overflow: hidden;
}
.screenshot-screen {
  width: 100%; height: 100%; background: var(--c-surface2);
  border-radius: 8px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  border: 1px dashed var(--c-divider);
}
.screenshot-placeholder-icon { font-size: 18px; color: var(--c-text-3); }
.screenshot-label { font-size: 7px; color: var(--c-text-3); text-align: center; line-height: 1.3; padding: 0 4px; }

/* Alt method + data sections */
.deletion-alt {
  background: var(--c-icon-bg); border-radius: var(--r-lg);
  padding: var(--s-6) var(--s-8); margin-bottom: var(--s-5);
  border: 1px solid var(--c-sky);
}
.deletion-alt-title { font-size: 16px; font-weight: 600; color: var(--c-deep); margin-bottom: var(--s-2); }
.deletion-alt-desc { font-size: 14px; color: var(--c-text); line-height: 1.65; }
.deletion-alt-desc a { color: var(--c-deep); font-weight: 600; }

.deletion-data {
  display: flex; gap: var(--s-4); align-items: flex-start;
  background: var(--c-surface); border: 1px solid var(--c-divider);
  border-radius: var(--r-lg); padding: var(--s-6) var(--s-8);
  margin-bottom: var(--s-5);
}
.deletion-data-icon { font-size: 22px; color: var(--c-text-3); flex-shrink: 0; margin-top: 2px; }
.deletion-data-title { font-size: 15px; font-weight: 600; color: var(--c-text); margin-bottom: var(--s-2); }
.deletion-data-desc { font-size: 14px; color: var(--c-text-2); line-height: 1.65; }

/* === FAQ PAGE ============================================= */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--s-3); }
.faq-item {
  background: var(--c-surface); border: 1px solid var(--c-divider);
  border-radius: var(--r-lg); overflow: hidden;
  transition: border-color var(--t-fast);
}
.faq-item[open] { border-color: var(--c-sky); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4); padding: var(--s-5) var(--s-6);
  font-size: 15px; font-weight: 600; color: var(--c-text);
  cursor: pointer; list-style: none; user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: ''; flex-shrink: 0; width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7C8C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform var(--t-fast);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--c-deep); }
.faq-body {
  padding: 0 var(--s-6) var(--s-5);
  font-size: 14px; line-height: 1.75; color: var(--c-text-2);
  white-space: pre-line;
  border-top: 1px solid var(--c-divider);
  padding-top: var(--s-4);
}
.faq-loading {
  text-align: center; padding: var(--s-16) 0;
  font-size: 15px; color: var(--c-text-3);
}

/* === SCROLL REVEAL ======================================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity var(--t-slow), transform var(--t-slow);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }
.reveal-delay-5 { transition-delay: 400ms; }
.reveal-delay-6 { transition-delay: 480ms; }

/* === UTILITIES ============================================ */
.hidden { display: none !important; }
.text-center { text-align: center; }
.mt-2 { margin-top: var(--s-2); }
.mt-4 { margin-top: var(--s-4); }
.mt-6 { margin-top: var(--s-6); }
.mt-8 { margin-top: var(--s-8); }
.mt-12 { margin-top: var(--s-12); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-6 { margin-bottom: var(--s-6); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0;
  margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0;
}
