/* =========================================
   LEALTY — Design System v2
   ========================================= */

:root {
  /* Brand Colors */
  --navy:          #0C1340;
  --navy-mid:      #1A2158;
  --blue:          #1A56DB;
  --blue-light:    #EBF2FF;
  --gold:          #F59E0B;
  --gold-pale:     #FFFBEB;
  --gold-border:   rgba(245,158,11,0.3);
  --green:         #059669;
  --green-light:   #ECFDF5;
  --purple:        #7C3AED;
  --purple-light:  #F5F3FF;

  /* Neutrals */
  --ink:    #0F172A;
  --muted:  #64748B;
  --border: rgba(15,23,42,0.08);
  --bg:     #F8FAFC;
  --white:  #FFFFFF;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, -apple-system, sans-serif;

  /* Radii */
  --radius:    16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(15,23,42,0.06), 0 1px 2px rgba(15,23,42,0.04);
  --shadow:    0 4px 16px rgba(15,23,42,0.08), 0 2px 6px rgba(15,23,42,0.06);
  --shadow-lg: 0 12px 40px rgba(15,23,42,0.12), 0 4px 12px rgba(15,23,42,0.08);
  --shadow-gold: 0 8px 32px rgba(245,158,11,0.28);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --transition: all 0.25s var(--ease);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---- Header ---- */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s var(--ease);
}
.header.scrolled { box-shadow: var(--shadow); }

.navbar { padding: 18px 0; }
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}
.logo-star { color: var(--gold); font-size: 1.1rem; line-height: 1; }
.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2px;
  align-items: center;
}
.nav-link {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--ink);
  background: var(--bg);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover {
  background: #D97706;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(245,158,11,0.38);
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover {
  background: #1448B8;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,86,219,0.3);
}
.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }
.btn-white-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-white-outline:hover { background: rgba(255,255,255,0.12); }
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* ---- Hero ---- */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-bg-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero-bg-glow--gold {
  width: 560px; height: 560px;
  background: rgba(245,158,11,0.13);
  top: -180px; right: 2%;
}
.hero-bg-glow--blue {
  width: 380px; height: 380px;
  background: rgba(26,86,219,0.18);
  bottom: -80px; left: -40px;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,158,11,0.12);
  border: 1px solid var(--gold-border);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 500px;
  line-height: 1.75;
  margin-bottom: 2.25rem;
}
.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  gap: 0;
}
.stat-item { flex: 1; }
.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 2px;
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px; height: 36px;
  background: rgba(255,255,255,0.1);
  margin: 0 24px;
  flex-shrink: 0;
}

/* ---- Hero Visual ---- */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.loyalty-card {
  width: 100%;
  aspect-ratio: 1.586 / 1;
  background: linear-gradient(140deg, #1E3A8A 0%, #1A56DB 55%, #2563EB 100%);
  border-radius: 20px;
  padding: 26px 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
}
.loyalty-card::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  border: 64px solid rgba(255,255,255,0.05);
  top: -90px; right: -70px;
}
.loyalty-card__shine {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255,255,255,0.07) 50%, transparent 80%);
  pointer-events: none;
}
.loyalty-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.loyalty-card__logo {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.loyalty-card__type {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  background: rgba(245,158,11,0.22);
  border: 1px solid rgba(245,158,11,0.4);
  color: #FCD34D;
  padding: 3px 10px;
  border-radius: 20px;
}
.loyalty-card__points { text-align: center; }
.loyalty-card__points-label {
  display: block;
  font-size: 0.68rem;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.loyalty-card__points-value {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: #FCD34D;
  letter-spacing: -0.02em;
}
.loyalty-card__bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.loyalty-card__name {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  opacity: 0.88;
}
.loyalty-card__since { font-size: 0.72rem; opacity: 0.5; }

/* Notification floaters */
.hero-notif {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 12px 16px;
  width: 260px;
  animation: float-in 0.7s var(--ease) both;
}
.hero-notif--2 { animation-delay: 0.35s; align-self: flex-end; }
@keyframes float-in {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-notif__icon {
  font-size: 1.4rem;
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-notif__title {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
  margin-bottom: 1px;
}
.hero-notif__body { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ---- Section Shared ---- */
.section-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }

/* ---- Features ---- */
.features { padding: 100px 0; background: var(--bg); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature-icon-wrap {
  width: 50px; height: 50px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon-wrap--gold   { background: var(--gold-pale);     color: var(--gold); }
.feature-icon-wrap--blue   { background: var(--blue-light);    color: var(--blue); }
.feature-icon-wrap--green  { background: var(--green-light);   color: var(--green); }
.feature-icon-wrap--purple { background: var(--purple-light);  color: var(--purple); }
.feature-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.45rem; }
.feature-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.7; }

/* ---- Benefits ---- */
.benefits { padding: 100px 0; background: var(--white); }
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefits-intro { color: var(--muted); margin: 1.25rem 0 2rem; font-size: 1rem; line-height: 1.75; }
.benefits-list { display: flex; flex-direction: column; gap: 2rem; }
.benefit-item { display: flex; gap: 1.25rem; align-items: flex-start; }
.benefit-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  background: var(--gold-pale);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  flex-shrink: 0;
  margin-top: 2px;
  line-height: 1.4;
}
.benefit-body h3 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
.benefit-body p  { font-size: 0.875rem; color: var(--muted); line-height: 1.75; }

/* Card Stack Visual */
.benefits-visual { position: relative; height: 380px; }
.benefits-card-stack {
  position: relative; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.stack-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  position: absolute;
  width: 300px;
}
.stack-card--back  {
  background: #DBEAFE; height: 190px;
  transform: rotate(8deg) translateY(22px); z-index: 1;
}
.stack-card--mid   {
  background: var(--blue-light); height: 210px;
  transform: rotate(4deg) translateY(11px); z-index: 2;
}
.stack-card--front {
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  height: 250px;
  transform: rotate(0deg); z-index: 3;
  display: flex; flex-direction: column; gap: 14px;
}
.stack-card__bar {
  height: 9px; background: var(--border); border-radius: 5px;
}
.stack-card__bar--short { width: 58%; }
.stack-card__header {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.85rem; font-weight: 700; color: var(--ink);
}
.stack-card__header span:last-child {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--green); background: var(--green-light);
  padding: 3px 10px; border-radius: 20px;
}
.stack-card__reward p   { font-size: 0.78rem; color: var(--muted); margin-bottom: 7px; }
.progress-bar {
  height: 7px; background: var(--bg);
  border-radius: 4px; overflow: hidden; margin-bottom: 5px;
}
.progress-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 4px;
}
.progress-label { font-size: 0.78rem; color: var(--muted); }
.stack-card__footer {
  display: flex; gap: 20px;
  padding-top: 12px; border-top: 1px solid var(--border);
}
.stack-card__label {
  font-size: 0.68rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 2px;
}
.stack-card__value { font-size: 0.875rem; font-weight: 600; color: var(--ink); }

/* ---- Privacy Banner ---- */
.privacy-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1E306E 100%);
  padding: 60px 0; position: relative; overflow: hidden;
}
.privacy-banner::before {
  content: '';
  position: absolute;
  width: 440px; height: 440px;
  background: rgba(245,158,11,0.07);
  border-radius: 50%; top: -220px; right: 8%;
  filter: blur(60px); pointer-events: none;
}
.privacy-banner__content {
  display: flex; align-items: center;
  justify-content: space-between; gap: 2rem; color: white;
  position: relative;
}
.privacy-banner__text h3 {
  font-family: var(--font-display);
  font-size: 1.55rem; font-weight: 700; margin-bottom: 0.4rem;
}
.privacy-banner__text p { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ---- Contact ---- */
.contact { padding: 100px 0; background: var(--bg); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.contact-text .section-title { margin-bottom: 1rem; }
.contact-text > p { color: var(--muted); line-height: 1.75; margin-bottom: 2rem; }
.contact-support-link { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.contact-info { display: flex; flex-direction: column; gap: 10px; }
.contact-info-item {
  display: flex; align-items: center; gap: 12px;
  color: var(--muted); font-size: 0.875rem;
}
.contact-info-icon {
  width: 34px; height: 34px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem; flex-shrink: 0;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-group { margin-bottom: 1.15rem; }
.form-group label {
  display: block;
  font-size: 0.82rem; font-weight: 600;
  color: var(--ink); margin-bottom: 5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,86,219,0.1);
}
.form-group textarea { resize: vertical; min-height: 96px; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #C0C9D6; }

/* ---- Privacy Page ---- */
.privacy-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1E306E 100%);
  color: white; padding: 60px 0; text-align: center;
}
.privacy-hero h1 {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 700; margin-bottom: 0.5rem;
}
.privacy-hero .subtitle { font-size: 1.1rem; opacity: 0.7; }

.privacy-nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  position: sticky; top: 61px; z-index: 999;
}
.privacy-nav-buttons {
  display: flex; gap: 6px;
  justify-content: center; flex-wrap: wrap;
}
.privacy-nav-btn {
  padding: 8px 16px;
  background: var(--bg);
  border: 1.5px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.85rem; font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer; transition: var(--transition);
  color: var(--muted);
}
.privacy-nav-btn:hover { background: #E8ECF0; color: var(--ink); }
.privacy-nav-btn.active { background: var(--blue); color: white; border-color: var(--blue); }

.privacy-content { padding: 56px 0; background: var(--bg); }
.privacy-section {
  display: none;
  background: var(--white);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.privacy-section.active { display: block; }
.privacy-section h2 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  margin-bottom: 1.5rem; color: var(--ink);
}
.privacy-section h3 {
  font-size: 1.2rem; font-weight: 600;
  margin-top: 2rem; margin-bottom: 0.75rem; color: var(--ink);
}
.privacy-section h4 {
  font-size: 1rem; font-weight: 600;
  margin-top: 1.25rem; margin-bottom: 0.5rem; color: var(--ink);
}
.privacy-section p { margin-bottom: 1rem; line-height: 1.8; color: #374151; }
.privacy-section ul { margin-left: 1.5rem; margin-bottom: 1rem; }
.privacy-section li { margin-bottom: 0.4rem; line-height: 1.8; color: #374151; }
.last-updated { color: var(--muted); font-style: italic; margin-bottom: 2rem; font-size: 0.875rem; }

.privacy-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem; margin-bottom: 2.5rem;
}
.pillar-card {
  background: var(--bg); padding: 2rem;
  border-radius: var(--radius); text-align: center;
  border: 1px solid var(--border);
}
.pillar-icon { font-size: 2.4rem; margin-bottom: 0.75rem; }
.pillar-card h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.4rem; margin-top: 0; }
.pillar-card p  { color: var(--muted); font-size: 0.875rem; line-height: 1.7; }

.info-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
}
.info-box h3, .info-box h4 { color: var(--ink); margin-top: 0; }
.info-box ul { margin-left: 1.25rem; }

.choices-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.choice-card {
  background: var(--bg); padding: 2rem;
  border-radius: var(--radius); text-align: center;
  border: 1px solid var(--border);
}
.choice-card h3 { margin-bottom: 0.75rem; color: var(--ink); }
.choice-card p  { margin-bottom: 1.5rem; color: var(--muted); font-size: 0.875rem; }

.security-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1.25rem; margin: 1.5rem 0;
}
.security-item {
  background: var(--bg); padding: 1.5rem;
  border-radius: var(--radius); text-align: center;
  border: 1px solid var(--border);
}
.security-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.security-item h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 0.35rem; margin-top: 0; }
.security-item p  { color: var(--muted); font-size: 0.82rem; }

/* ---- FAQ (shared) ---- */
.faq-content { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.6rem; overflow: hidden;
  transition: var(--transition);
}
.faq-item.active { box-shadow: var(--shadow); border-color: transparent; }
.faq-question {
  width: 100%; padding: 1.2rem 1.5rem;
  background: transparent; border: none;
  text-align: left; font-size: 0.95rem; font-weight: 600;
  font-family: var(--font-body); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  color: var(--ink); transition: var(--transition); gap: 1rem;
}
.faq-question:hover { background: var(--bg); }
.faq-icon {
  font-size: 1.2rem; font-weight: 300; color: var(--muted);
  flex-shrink: 0; transition: transform 0.25s var(--ease), color 0.25s;
}
.faq-item.active .faq-icon { transform: rotate(45deg); color: var(--blue); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease); }
.faq-item.active .faq-answer { max-height: 500px; }
.faq-answer p { padding: 0 1.5rem 1.5rem; color: var(--muted); line-height: 1.8; font-size: 0.9rem; }

.privacy-contact {
  text-align: center; margin-top: 2.5rem;
  padding: 2rem; background: var(--bg);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.privacy-contact h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; margin-bottom: 0.5rem; color: var(--ink);
}
.privacy-contact p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.9rem; }

/* ---- Support Page ---- */
.support-hero {
  background: var(--bg);
  padding: 70px 0; text-align: center;
  border-bottom: 1px solid var(--border);
}
.support-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700; color: var(--ink);
  margin-bottom: 1rem; letter-spacing: -0.02em;
}
.support-hero p {
  font-size: 1rem; color: var(--muted);
  max-width: 480px; margin: 0 auto; line-height: 1.75;
}

.quick-help { padding: 60px 0; background: var(--white); }
.quick-help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.quick-help-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  text-align: center; text-decoration: none; color: inherit;
  transition: var(--transition); cursor: pointer; display: block;
}
.quick-help-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.quick-help-icon { font-size: 2.4rem; margin-bottom: 1rem; display: block; }
.quick-help-card h3 { font-size: 0.98rem; font-weight: 600; margin-bottom: 0.35rem; }
.quick-help-card p  { font-size: 0.82rem; color: var(--muted); line-height: 1.65; }

.support-faq { padding: 80px 0; background: var(--bg); }
.support-faq .section-header { margin-bottom: 3rem; }

.faq-category-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin: 2.5rem 0 1rem; padding-top: 1rem;
  display: block;
}
.faq-category-label:first-of-type { margin-top: 0; }

.support-contact-section { padding: 80px 0; background: var(--white); }
.support-contact-section .contact-layout { gap: 60px; }

.app-info { padding: 56px 0; background: var(--bg); border-top: 1px solid var(--border); }
.app-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.app-info-item h4 {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.35rem;
}
.app-info-item p { font-size: 0.98rem; font-weight: 600; color: var(--ink); }
.app-info-item a { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }

/* ---- Footer ---- */
.footer { background: var(--navy); color: white; padding: 60px 0 24px; }
.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px; margin-bottom: 40px;
}
.footer-logo {
  display: inline-flex; align-items: center; gap: 6px;
  text-decoration: none; color: white; margin-bottom: 1rem;
}
.footer-logo .logo-star { color: var(--gold); }
.footer-logo span:last-child {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
}
.footer-brand p {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem; line-height: 1.75; max-width: 240px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.footer-col h4 {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.38); margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  color: rgba(255,255,255,0.6); text-decoration: none;
  font-size: 0.875rem; transition: var(--transition);
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px; text-align: center;
  color: rgba(255,255,255,0.3); font-size: 0.82rem;
}

/* ---- Scroll animations ---- */
.animate-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .benefits-layout { grid-template-columns: 1fr; gap: 48px; }
  .benefits-visual { height: 280px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .app-info-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 0.75rem; gap: 2px;
  }
  .nav-menu.active { display: flex; }
  .nav-link { display: block; padding: 10px 12px; }
  .nav-toggle { display: flex; }
  .hero { padding: 60px 0 80px; }
  .features { padding: 70px 0; }
  .benefits { padding: 70px 0; }
  .contact { padding: 70px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .privacy-banner__content { flex-direction: column; text-align: center; }
  .privacy-section { padding: 2rem 1.25rem; }
  .privacy-nav { top: 61px; }
  .privacy-nav-buttons { gap: 4px; }
  .privacy-nav-btn { padding: 7px 13px; font-size: 0.82rem; }
  .quick-help-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: repeat(2, 1fr); }
  .support-contact-section .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1.25rem; align-items: flex-start; }
  .stat-divider { width: 40px; height: 1px; margin: 0; }
  .footer-links { grid-template-columns: 1fr; }
  .app-info-grid { grid-template-columns: repeat(2, 1fr); }
  .privacy-pillars, .choices-content, .security-features { grid-template-columns: 1fr; }
}
