/* ============================================================
   FlipperPal — Shared Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --navy:        #0A0E1A;
  --navy-light:  #0F1629;
  --navy-mid:    #161f35;
  --navy-card:   #111827;
  --white:       #FFFFFF;
  --off-white:   #F0F4FF;
  --gold:        #F5A623;
  --gold-dark:   #D4911A;
  --gold-glow:   rgba(245, 166, 35, 0.18);
  --blue-accent: #3B82F6;
  --blue-glow:   rgba(59, 130, 246, 0.18);
  --green:       #22C55E;
  --red:         #EF4444;
  --gray-text:   #94A3B8;
  --gray-border: rgba(255,255,255,0.08);
  --gray-card:   rgba(255,255,255,0.04);

  --font: 'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1200px;
  --radius:    0.75rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;

  --transition: 0.2s ease;
  --transition-md: 0.35s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-card: 0 4px 32px rgba(0,0,0,0.45);
  --shadow-gold: 0 0 40px rgba(245,166,35,0.12), 0 4px 20px rgba(0,0,0,0.4);
  --shadow-blue: 0 0 40px rgba(59,130,246,0.12), 0 4px 20px rgba(0,0,0,0.4);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ── Utilities ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: 6rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.section-sm { padding: 4rem 1.5rem; max-width: var(--max-w); margin: 0 auto; }
.text-gold  { color: var(--gold); }
.text-gray  { color: var(--gray-text); }
.text-center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Scroll Animations ───────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4, 0, 0.2, 1), transform 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }

/* ── Navigation ──────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-border);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
  background: var(--navy-mid);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(245,166,35,0.25);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--gray-text);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition-md);
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition-md);
  white-space: nowrap;
  text-decoration: none;
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 0 24px rgba(245,166,35,0.25);
}
.btn-gold:hover {
  background: #fbb635;
  box-shadow: 0 0 36px rgba(245,166,35,0.4);
  transform: translateY(-1px);
}
.btn-outline {
  border: 1.5px solid var(--gray-border);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.05);
}
.btn-sm { padding: 0.5rem 1rem; font-size: 0.825rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
.btn-danger {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 24px rgba(239,68,68,0.2);
}
.btn-danger:hover {
  background: #f87171;
  box-shadow: 0 0 36px rgba(239,68,68,0.35);
  transform: translateY(-1px);
}
.btn-danger:disabled {
  opacity: 0.55;
  transform: none;
  cursor: not-allowed;
}

/* ── Delete Account Warning ──────────────────────────────── */
.delete-warning {
  background: rgba(239,68,68,0.08);
  border: 1.5px solid rgba(239,68,68,0.25);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.875rem;
  align-items: flex-start;
}
.delete-warning-icon {
  color: var(--red);
  flex-shrink: 0;
  margin-top: 2px;
}
.delete-warning p {
  font-size: 0.875rem;
  color: var(--off-white);
  line-height: 1.6;
}
.delete-warning strong { color: var(--white); }
.delete-warning ul {
  margin-top: 0.5rem;
  padding-left: 1.25rem;
  list-style: disc;
}
.delete-warning li {
  font-size: 0.875rem;
  color: var(--gray-text);
  margin-bottom: 0.2rem;
}
.delete-confirm-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  cursor: pointer;
}
.delete-confirm-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--red);
  cursor: pointer;
}
.delete-confirm-check span {
  font-size: 0.875rem;
  color: var(--off-white);
  line-height: 1.5;
}

/* ── Store Badges ────────────────────────────────────────── */
.store-badges {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  border-radius: 10px;
  background: #111;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: var(--transition-md);
  min-width: 160px;
}
.store-badge:hover {
  background: #1a1a1a;
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.store-badge-icon { flex-shrink: 0; }
.store-badge-text { display: flex; flex-direction: column; }
.store-badge-text span { font-size: 0.65rem; color: #aaa; line-height: 1.2; }
.store-badge-text strong { font-size: 0.9rem; color: var(--white); font-weight: 700; line-height: 1.3; }

/* ── Section Labels ──────────────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--white);
}
.section-subtitle {
  font-size: 1.0625rem;
  color: var(--gray-text);
  line-height: 1.65;
  max-width: 560px;
}

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0A0E1A 0%, #0d1425 50%, #0A0E1A 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 50%, rgba(245,166,35,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 20% 30%, rgba(59,130,246,0.05) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-content { max-width: 580px; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 100px;
  padding: 0.3rem 0.875rem;
  font-size: 0.775rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.375rem;
  color: var(--white);
}
.hero-title span { color: var(--gold); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 520px;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.825rem;
  color: var(--gray-text);
  margin-top: 0.5rem;
}
.stars { color: var(--gold); letter-spacing: -1px; }

/* ── Phone Mockup ────────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(245,166,35,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.phone-wrap {
  position: relative;
  z-index: 1;
}
.phone-frame {
  width: 270px;
  height: 560px;
  background: #0d1118;
  border-radius: 42px;
  border: 1.5px solid rgba(255,255,255,0.12);
  box-shadow:
    0 0 0 1px rgba(0,0,0,0.8),
    0 32px 80px rgba(0,0,0,0.7),
    0 0 60px rgba(245,166,35,0.08);
  position: relative;
  overflow: hidden;
  padding: 14px 10px 10px;
}
.phone-notch {
  width: 80px;
  height: 24px;
  background: #000;
  border-radius: 0 0 16px 16px;
  margin: 0 auto 10px;
}
.phone-screen {
  background: #F8F9FA;
  border-radius: 28px;
  height: calc(100% - 44px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-app-header {
  background: var(--navy);
  padding: 12px 16px 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.phone-app-logo {
  width: 28px;
  height: 28px;
  background: var(--gold);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 900;
  color: var(--navy);
  flex-shrink: 0;
}
.phone-app-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}
.phone-doc {
  flex: 1;
  padding: 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: #fff;
}
.phone-doc-title {
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  color: #0A0E1A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-bottom: 6px;
  border-bottom: 1.5px solid #eee;
}
.phone-doc-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.phone-doc-label {
  font-size: 7px;
  font-weight: 600;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.phone-doc-value {
  font-size: 9.5px;
  font-weight: 600;
  color: #1E293B;
}
.phone-doc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.phone-doc-divider {
  height: 1px;
  background: #F1F5F9;
}
.phone-sig-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 4px;
}
.phone-sig-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 6px;
  padding: 8px 6px 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.phone-sig-label {
  font-size: 6.5px;
  color: #94A3B8;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.phone-sig-line {
  border-bottom: 1px solid #CBD5E1;
  height: 16px;
  position: relative;
}
.phone-sig-line.signed::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 2px;
  right: 2px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 20'%3E%3Cpath d='M2 15 Q10 5 18 12 Q26 18 34 8 Q42 0 50 10 Q56 16 58 14' stroke='%230A0E1A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / contain;
}
.phone-stamp {
  margin-top: auto;
  text-align: center;
  background: rgba(239,68,68,0.06);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 4px;
  padding: 3px 6px;
  font-size: 7.5px;
  font-weight: 800;
  color: #DC2626;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.phone-generate-btn {
  background: var(--navy);
  margin: 8px;
  border-radius: 8px;
  padding: 8px;
  text-align: center;
  font-size: 9px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ── Marquee / Social Proof Bar ──────────────────────────── */
.proof-bar {
  background: rgba(255,255,255,0.03);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
  padding: 1rem 0;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 2.5rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gray-text);
  white-space: nowrap;
}
.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── Features Grid ───────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 3.5rem;
}
.feature-card {
  background: var(--gray-card);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition-md);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-md);
  border-radius: var(--radius-lg);
}
.feature-card:hover {
  border-color: rgba(245,166,35,0.2);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}
.feature-card:hover::before { opacity: 1; }
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(245,166,35,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--white);
}
.feature-body {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.65;
}

/* ── How It Works ────────────────────────────────────────── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 3.5rem;
  position: relative;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.steps-list::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 28px;
  bottom: 28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, rgba(245,166,35,0.1) 100%);
}
.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1.75rem 2rem 1.75rem 0;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy-mid);
  border: 2px solid rgba(245,166,35,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--gold);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.step-content { padding-top: 0.5rem; }
.step-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.375rem;
}
.step-desc {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.6;
}

/* ── Pricing ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: start;
}
.pricing-card {
  background: var(--gray-card);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  transition: var(--transition-md);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card-free  { }
.pricing-card-basic {
  border-color: rgba(59,130,246,0.3);
  box-shadow: var(--shadow-blue);
}
.pricing-card-pro {
  border-color: rgba(245,166,35,0.4);
  box-shadow: var(--shadow-gold);
  background: linear-gradient(160deg, rgba(245,166,35,0.05) 0%, var(--gray-card) 60%);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.875rem;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 0.5rem;
}
.pricing-price {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.pricing-price span { font-size: 1.1rem; font-weight: 600; vertical-align: top; margin-top: 0.4rem; display: inline-block; }
.pricing-per {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-bottom: 1.5rem;
}
.pricing-divider {
  height: 1px;
  background: var(--gray-border);
  margin: 1.25rem 0;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin-bottom: 1.75rem;
}
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.4;
}
.pricing-feature-check { color: var(--green); flex-shrink: 0; margin-top: 1px; }
.pricing-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 700;
  transition: var(--transition-md);
  text-decoration: none;
}
.pricing-btn-free {
  background: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid var(--gray-border);
}
.pricing-btn-free:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.pricing-btn-basic {
  background: var(--blue-accent);
  color: var(--white);
}
.pricing-btn-basic:hover {
  background: #2563EB;
  box-shadow: 0 0 24px rgba(59,130,246,0.35);
}
.pricing-btn-pro {
  background: var(--gold);
  color: var(--navy);
}
.pricing-btn-pro:hover {
  background: #fbb635;
  box-shadow: 0 0 30px rgba(245,166,35,0.4);
  transform: translateY(-1px);
}

/* ── Comparison Table ────────────────────────────────────── */
.comparison-wrap {
  overflow-x: auto;
  margin-top: 3.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 580px;
}
.comparison-table th,
.comparison-table td {
  padding: 0.875rem 1.25rem;
  text-align: center;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--gray-border);
}
.comparison-table th:first-child,
.comparison-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--gray-text);
}
.comparison-table thead th {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-text);
  background: rgba(255,255,255,0.025);
  padding: 1.125rem 1.25rem;
}
.comparison-table thead th.col-us {
  color: var(--gold);
  background: rgba(245,166,35,0.07);
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover td { background: rgba(255,255,255,0.02); }
.comparison-table td.col-us {
  background: rgba(245,166,35,0.04);
  font-weight: 600;
}
.check  { color: var(--green); font-size: 1.1rem; }
.cross  { color: #475569; font-size: 1.1rem; }
.partial { color: #F59E0B; font-size: 0.8rem; font-weight: 600; }
.price-cell { font-weight: 700; color: var(--white); }
.price-cell-us { color: var(--gold) !important; }

/* ── Final CTA ───────────────────────────────────────────── */
.cta-section {
  text-align: center;
  padding: 6rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(245,166,35,0.07) 0%, transparent 70%),
    linear-gradient(0deg, rgba(245,166,35,0.02) 0%, transparent 100%);
  pointer-events: none;
}
.cta-title {
  font-size: clamp(1.875rem, 4.5vw, 3.25rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.cta-subtitle {
  font-size: 1rem;
  color: var(--gray-text);
  margin-bottom: 2.5rem;
}
.cta-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.cta-note {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ── Footer ──────────────────────────────────────────────── */
.footer {
  background: rgba(0,0,0,0.3);
  border-top: 1px solid var(--gray-border);
  padding: 3rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 1.1rem;
  font-weight: 800;
}
.footer-logo-icon {
  width: 32px;
  height: 32px;
  background: var(--navy-mid);
  border-radius: 7px;
  border: 1.5px solid rgba(245,166,35,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-nav a {
  font-size: 0.875rem;
  color: var(--gray-text);
  font-weight: 500;
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-border);
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--gray-text);
}

/* ── Support Page ────────────────────────────────────────── */
.support-hero {
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 3rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--off-white);
}
.form-input,
.form-select,
.form-textarea {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(245,166,35,0.4);
  box-shadow: 0 0 0 3px rgba(245,166,35,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder { color: #475569; }
.form-select option { background: var(--navy-mid); color: var(--white); }
.form-textarea { resize: vertical; min-height: 140px; }

.contact-info-card {
  background: var(--gray-card);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-info-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.contact-email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-border);
}
.faq-item:first-child { border-top: 1px solid var(--gray-border); }
.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-align: left;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
}
.faq-btn svg {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition-md);
}
.faq-btn.open svg { transform: rotate(180deg); }
.faq-answer {
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.7;
  padding-bottom: 1.25rem;
  display: none;
}
.faq-answer.open { display: block; }

/* ── Legal Pages (Privacy / Terms) ──────────────────────── */
.legal-hero {
  padding: 4rem 1.5rem 3rem;
  border-bottom: 1px solid var(--gray-border);
}
.legal-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.legal-last-updated {
  font-size: 0.8rem;
  color: var(--gray-text);
  margin-top: 0.5rem;
}
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.legal-body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin: 2.5rem 0 0.875rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--gray-border);
}
.legal-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin: 1.5rem 0 0.5rem;
}
.legal-body p {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.75;
  margin-bottom: 0.875rem;
}
.legal-body ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 0.875rem;
}
.legal-body ul li {
  font-size: 0.9rem;
  color: var(--gray-text);
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.legal-body a { color: var(--gold); }
.legal-body a:hover { text-decoration: underline; }

/* ── Image Assets ────────────────────────────────────────── */
.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
  object-fit: cover;
  flex-shrink: 0;
}

/* Hero mascot (character_200.png) */
.hero-mascot {
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: drop-shadow(0 32px 60px rgba(0,0,0,0.55));
  animation: mascot-float 5.5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes mascot-float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-16px); }
}

/* CTA mascot (empty_state_300.png) */
.cta-section { position: relative; }
.cta-mascot-wrap {
  position: absolute;
  right: max(2%, calc(50% - 680px));
  bottom: 0;
  width: 220px;
  pointer-events: none;
}
.cta-mascot {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.4));
  opacity: 0.9;
}

/* Support hero mascot */
.support-hero-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.support-hero-mascot {
  width: 150px;
  height: auto;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.3));
  flex-shrink: 0;
  animation: mascot-float 5.5s ease-in-out infinite;
}

@media (max-width: 768px) {
  .cta-mascot-wrap  { display: none; }
  .hero-mascot      { max-width: 280px; }
  .support-hero-inner { flex-direction: column-reverse; gap: 1.5rem; }
  .support-hero-mascot { width: 110px; }
}

/* ── Background accents ──────────────────────────────────── */
.bg-section-alt {
  background: rgba(255,255,255,0.015);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: repeat(2, 1fr); }
  .contact-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding: 3.5rem 1.5rem;
    gap: 3rem;
    text-align: center;
  }
  .hero-content { max-width: 100%; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .store-badges { justify-content: center; }
  .hero-rating { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-frame { width: 220px; height: 460px; }
  .nav-links, .nav-cta { display: none; }
  .nav-menu-btn { display: flex; }
  .nav-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-menu-btn.open span:nth-child(2) { opacity: 0; }
  .nav-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; }
  .section-title { font-size: 1.875rem; }
  .hero-title    { font-size: 2.25rem; }
  .section { padding: 4rem 1.5rem; }
  .steps-list::before { left: 22px; }
  .step-num { width: 46px; height: 46px; font-size: 0.95rem; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ── Mobile nav drawer ───────────────────────────────────── */
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(10, 14, 26, 0.98);
  border-top: 1px solid var(--gray-border);
  border-bottom: 1px solid var(--gray-border);
  padding: 1rem 1.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  display: block;
  padding: 0.875rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-text);
  border-bottom: 1px solid var(--gray-border);
  transition: color var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--white); }
