/* ==========================================================================
   SEVWAS — Marketing Website Design System
   Black + Gold luxury theme (premium, payment-gateway friendly)
   ========================================================================== */

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

/* ---------- Design Tokens ---------- */
:root {
  /* Brand — extracted from the SEVWAS logo */
  --gold:        #D4AF37;   /* primary metallic gold */
  --gold-light:  #FFD700;   /* light gold accent */
  --gold-deep:   #B8902A;   /* deeper gold for hovers */
  --gold-soft:   rgba(212, 175, 55, 0.12);
  --gold-glow:   rgba(212, 175, 55, 0.35);

  /* Neutrals — luxury black palette */
  --black:       #000000;
  --ink:         #0A0A0B;   /* page background */
  --ink-2:       #111113;   /* card background */
  --ink-3:       #18181B;   /* elevated surface */
  --line:        rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);

  /* Text */
  --text:        #F5F5F4;
  --text-mute:   #A8A29E;
  --text-dim:    #78716C;

  /* Status */
  --green:       #34D399;
  --red:         #F87171;

  /* Type */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container:  1180px;
  --radius-sm:  10px;
  --radius:     16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  /* Shadow */
  --shadow-card:  0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 18px 48px rgba(0, 0, 0, 0.55);
  --shadow-gold:  0 0 40px rgba(212, 175, 55, 0.25);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  background: var(--ink);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* iOS: respect notch / home indicator */
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; -webkit-tap-highlight-color: transparent; }
button { font-family: inherit; cursor: pointer; border: none; background: none; -webkit-tap-highlight-color: transparent; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; font-size: inherit; -webkit-tap-highlight-color: transparent; }

/* iOS: prevent input zoom-on-focus by keeping font-size >= 16px (already 15-16px) */
input, textarea, select { font-size: 16px; }
@supports (-webkit-touch-callout: none) {
  input, textarea, select { font-size: 16px; } /* iOS Safari no-zoom */
}

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }
.section   { padding: 96px 0; }
.section-sm{ padding: 64px 0; }
.text-center { text-align: center; }
.mx-auto { margin-inline: auto; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-soft);
  border: 1px solid rgba(212, 175, 55, 0.25);
  padding: 7px 16px; border-radius: 999px;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.02em; color: #fff; }
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
p  { color: var(--text-mute); }
p.lead { font-size: 1.15rem; color: var(--text-mute); line-height: 1.7; }

.text-gold       { color: var(--gold); }
.text-gradient-gold {
  background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8902A 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 15px 28px; border-radius: 999px;
  transition: transform .25s cubic-bezier(.32,.72,0,1), box-shadow .25s, background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold) 55%, var(--gold-deep));
  color: #1a1408;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(212,175,55,.45); }

.btn-outline {
  background: rgba(255,255,255,0.03); color: #fff;
  border: 1px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }

.btn-ghost { color: var(--text-mute); padding-inline: 14px; }
.btn-ghost:hover { color: var(--gold); }

.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10, 10, 11, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.nav__brand { display: flex; align-items: center; gap: 11px; }
.nav__brand img { height: 52px; width: auto; border-radius: 6px; object-fit: contain; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  color: var(--text-mute); font-size: 14px; font-weight: 500;
  padding: 9px 14px; border-radius: 10px; transition: color .2s, background .2s;
}
.nav__links a:hover { color: #fff; background: rgba(255,255,255,0.04); }
.nav__links a.active { color: var(--gold); }
.nav__cta { display: flex; align-items: center; gap: 10px; }

.nav__toggle { display: none; width: 42px; height: 42px; border-radius: 10px; color: #fff; align-items: center; justify-content: center; }
.nav__toggle:hover { background: rgba(255,255,255,0.06); }
.nav__mobile { display: none; }

/* ---------- Cards ---------- */
.card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .3s cubic-bezier(.32,.72,0,1), border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.3); box-shadow: var(--shadow-hover); }
.card__icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-soft); border: 1px solid rgba(212,175,55,.2);
  color: var(--gold); margin-bottom: 18px; font-size: 24px;
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p  { font-size: 14.5px; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 110px 0 90px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 70% 50% at 50% -5%, var(--gold-soft), transparent 60%),
    radial-gradient(ellipse 40% 40% at 85% 30%, rgba(255,215,0,.06), transparent 60%);
}
.hero__inner { position: relative; max-width: 880px; margin-inline: auto; text-align: center; }
.hero h1 { margin: 22px 0 22px; }
.hero p.lead { max-width: 620px; margin: 0 auto 36px; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Badges / stats ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 500; color: var(--text-mute);
  background: var(--ink-2); border: 1px solid var(--line);
  padding: 7px 14px; border-radius: 999px;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green); }

.stats { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 56px; }
.stat {
  flex: 1; min-width: 160px; text-align: center;
  background: var(--ink-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 18px;
}
.stat__num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.stat__label { font-size: 13px; color: var(--text-mute); margin-top: 4px; }

/* ---------- Section header ---------- */
.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin: 16px 0 14px; }
.section-head p { font-size: 1.08rem; }

/* ---------- Feature row (split) ---------- */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature-row + .feature-row { margin-top: 96px; }
.feature-row.reverse .feature-row__media { order: 2; }
.feature-row__content h2 { margin-bottom: 18px; }
.feature-list { margin-top: 22px; display: grid; gap: 14px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); font-size: 15px; }
.feature-list li svg, .feature-list .check { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.feature-row__media {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 28px; position: relative; overflow: hidden;
}
.feature-row__media::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 80% 0%, var(--gold-soft), transparent 55%);
}

/* mock UI for feature screenshots */
.mock {
  background: var(--ink-3); border: 1px solid var(--line); border-radius: 14px; padding: 18px;
}
.mock__bar { display: flex; gap: 6px; margin-bottom: 16px; }
.mock__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--line-strong); }
.mock__row { display: flex; align-items: center; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--line); font-size: 14px; }
.mock__row:last-child { border-bottom: none; }
.mock__row .k { color: var(--text-mute); }
.mock__row .v { color: #fff; font-weight: 600; }
.mock__pill { font-size: 11px; padding: 4px 10px; border-radius: 999px; background: var(--gold-soft); color: var(--gold); border: 1px solid rgba(212,175,55,.25); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative; padding: 36px 28px; background: var(--ink-2);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
}
.step__num {
  counter-increment: step;
  font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: var(--gold);
  line-height: 1; margin-bottom: 16px;
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.3rem; margin-bottom: 10px; }
.step p { font-size: 14.5px; }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.plan {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; display: flex; flex-direction: column; position: relative;
  transition: transform .3s, border-color .3s;
}
.plan:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.3); }
.plan--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(212,175,55,.07), var(--ink-2) 40%);
  box-shadow: var(--shadow-gold);
}
.plan__tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #1a1408; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
}
.plan__name { font-family: var(--font-display); font-size: 1.4rem; font-weight: 700; color: #fff; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 4px; }
.plan__price .amt { font-family: var(--font-display); font-size: 2.8rem; font-weight: 800; color: #fff; }
.plan__price .per { font-size: 14px; color: var(--text-mute); }
.plan__tax { font-size: 12px; color: var(--text-dim); margin-bottom: 22px; }
.plan__features { display: grid; gap: 12px; margin: 0 0 28px; flex: 1; }
.plan__features li { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: var(--text); }
.plan__features .check { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq__item { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-size: 16px; font-weight: 600; color: #fff; text-align: left;
}
.faq__q .icon { color: var(--gold); transition: transform .3s; flex-shrink: 0; }
.faq__item[open] .faq__q .icon { transform: rotate(45deg); }
.faq__a { padding: 0 24px 22px; color: var(--text-mute); font-size: 15px; line-height: 1.7; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 64px 40px; text-align: center; background: var(--ink-2); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 120%, var(--gold-soft), transparent 70%); }
.cta-band__inner { position: relative; max-width: 640px; margin-inline: auto; }
.cta-band h2 { margin-bottom: 16px; }
.cta-band p { margin-bottom: 30px; font-size: 1.08rem; }

/* ---------- About page ---------- */
.about-hero-img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); }
.figure { margin: 0; }
.figure img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--ink-2); }
.figure figcaption { text-align: center; font-size: 13px; color: var(--text-dim); margin-top: 12px; }
.value-card {
  background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; transition: transform .3s, border-color .3s;
}
.value-card:hover { transform: translateY(-4px); border-color: rgba(212,175,55,.3); }
.value-card__icon { font-size: 28px; margin-bottom: 14px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.value-card p { font-size: 14.5px; }

/* timeline */
.timeline { position: relative; max-width: 760px; margin-inline: auto; padding-left: 28px; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: linear-gradient(180deg, var(--gold), rgba(212,175,55,0.15)); }
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before { content: ""; position: absolute; left: -28px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--ink); border: 3px solid var(--gold); }
.timeline-item__year { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.timeline-item h3 { font-size: 1.15rem; margin: 4px 0 6px; }
.timeline-item p { font-size: 14.5px; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.team-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; text-align: center; }
.team-card__avatar { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 16px; background: linear-gradient(135deg, var(--gold-light), var(--gold-deep)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 28px; font-weight: 800; color: #1a1408; }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.team-card p { font-size: 13.5px; }

@media (max-width: 760px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; margin-inline: auto; }
.prose h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 10px; }
.prose .updated { font-size: 13px; color: var(--text-dim); margin-bottom: 36px; }
.prose h2 { font-size: 1.4rem; margin: 40px 0 14px; }
.prose h3 { font-size: 1.1rem; margin: 26px 0 10px; }
.prose p, .prose li { color: var(--text-mute); font-size: 15.5px; line-height: 1.75; margin-bottom: 12px; }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.prose ul li { margin-bottom: 8px; }
.prose strong { color: var(--text); font-weight: 600; }
.prose a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.prose .callout {
  background: var(--gold-soft); border: 1px solid rgba(212,175,55,.25); border-left: 3px solid var(--gold);
  border-radius: var(--radius-sm); padding: 18px 20px; margin: 24px 0;
}
.prose .callout p { color: var(--text); margin-bottom: 0; }
.prose .toc { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 40px; }
.prose .toc h2 { font-size: 1.05rem; margin: 0 0 12px; color: var(--text); }
.prose .toc ol { list-style: decimal; padding-left: 20px; }
.prose .toc a { text-decoration: none; font-size: 14.5px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; }
.info-tile { display: flex; gap: 16px; padding: 22px; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); }
.info-tile + .info-tile { margin-top: 14px; }
.info-tile__icon { width: 46px; height: 46px; border-radius: 12px; background: var(--gold-soft); border: 1px solid rgba(212,175,55,.2); color: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.info-tile h4 { font-family: var(--font-body); font-size: 14px; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 4px; }
.info-tile p, .info-tile a { color: var(--text); font-size: 15px; }
.info-tile a:hover { color: var(--gold); }

.form { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; }
.form__group { margin-bottom: 18px; }
.form label { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 7px; }
.form input, .form textarea, .form select {
  width: 100%; background: var(--ink-3); border: 1px solid var(--line); border-radius: 11px;
  padding: 13px 15px; color: #fff; font-size: 15px; transition: border-color .2s, box-shadow .2s;
}
.form input::placeholder, .form textarea::placeholder { color: var(--text-dim); }
.form input:focus, .form textarea:focus, .form select:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.form textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--ink-2); border-top: 1px solid var(--line); padding: 64px 0 32px; margin-top: 40px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.footer__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer__brand img { width: 140px; height: auto; border-radius: 10px; }
.footer__about { color: var(--text-mute); font-size: 14.5px; max-width: 320px; }
.footer h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--text); margin-bottom: 16px; }
.footer__col a { display: block; color: var(--text-mute); font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--gold); }

/* company block — REQUIRED by payment gateways */
.footer__company {
  margin-top: 32px; padding: 22px 24px; background: var(--ink-3); border: 1px solid var(--line);
  border-radius: var(--radius); font-size: 13.5px; color: var(--text-mute); line-height: 1.8;
}
.footer__company strong { color: var(--text); }

.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 26px; flex-wrap: wrap; }
.footer__bottom p { font-size: 13.5px; color: var(--text-dim); }
.footer__bottom-links { display: flex; gap: 22px; }
.footer__bottom-links a { color: var(--text-dim); font-size: 13.5px; }
.footer__bottom-links a:hover { color: var(--gold); }

/* ---------- Social Icons ---------- */
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 10px;
  background: var(--ink-3); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mute); transition: color .2s, border-color .2s, background .2s;
}
.social-links a:hover { color: var(--gold); border-color: rgba(212,175,55,.3); background: var(--gold-soft); }
.social-links svg { width: 18px; height: 18px; }

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; } .mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; } .mt-12 { margin-top: 48px; }
.mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }
.hide { display: none !important; }
.flex { display: flex; } .items-center { align-items: center; } .justify-center { justify-content: center; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.text-sm { font-size: 13.5px; } .text-xs { font-size: 12px; }
.full-bleed { width: 100vw; margin-left: calc(50% - 50vw); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.32,.72,0,1), transform .7s cubic-bezier(.32,.72,0,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .feature-row { grid-template-columns: 1fr; gap: 36px; }
  .feature-row.reverse .feature-row__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta .btn-outline { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta .btn-gold { display: inline-flex; }
  .nav__mobile {
    display: none; position: fixed; inset: 70px 0 auto 0; z-index: 99;
    background: rgba(10,10,11,.97); backdrop-filter: blur(24px); border-bottom: 1px solid var(--line);
    padding: 18px 24px 28px; flex-direction: column; gap: 4px;
  }
  .nav__mobile.open { display: flex; }
  .nav__mobile a { color: var(--text-mute); font-size: 16px; padding: 13px 14px; border-radius: 11px; }
  .nav__mobile a:hover { color: #fff; background: rgba(255,255,255,.05); }
  .nav__mobile .btn { margin-top: 12px; }
}
@media (max-width: 760px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 48px 0; }
  .hero { padding: 64px 0 52px; }
  .hero h1 { margin: 18px 0 18px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  /* Stats: 2 per row on phones instead of 4-in-a-row */
  .stats { gap: 10px; }
  .stat { min-width: calc(50% - 5px); flex-basis: calc(50% - 5px); padding: 18px 12px; }
  .stat__num { font-size: 1.7rem; }

  /* Bigger tap targets on touch devices */
  .btn { padding: 14px 24px; }
  .btn-lg { padding: 15px 28px; width: 100%; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }

  /* Cards: tighter padding on phones */
  .card { padding: 22px; }
  .plan { padding: 26px 22px; }
  .form { padding: 22px; }

  /* CTA band full-bleed feel on mobile */
  .cta-band { padding: 44px 24px; }

  /* Section heads tighter */
  .section-head { margin-bottom: 36px; }

  /* Footer company block readable */
  .footer__company { font-size: 12.5px; padding: 18px; line-height: 1.7; }

  /* Footer bottom links wrap nicely */
  .footer__bottom-links { flex-wrap: wrap; gap: 14px; }
}

/* Small phones (iPhone SE, older Androids) */
@media (max-width: 420px) {
  .container { padding-inline: 18px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .hero h1 { font-size: 2.1rem; }
  .nav__inner { height: 62px; }
  .nav__brand img { height: 44px; width: auto; }
  .nav__cta .btn-gold { padding: 9px 14px; font-size: 12px; }
  .nav__toggle { width: 38px; height: 38px; }
  .eyebrow { font-size: 11px; padding: 6px 13px; }
  .stat { min-width: 100%; flex-basis: 100%; }
  .stat__num { font-size: 1.6rem; }
  .plan__price .amt { font-size: 2.3rem; }
}

/* Landscape phones: use the height better */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { padding: 48px 0 40px; }
}

/* Touch-friendly: ensure interactive elements have room */
@media (hover: none) and (pointer: coarse) {
  .nav__links a { padding: 12px 14px; }
  .footer__col a { padding: 9px 0; }
  .faq__q { padding: 22px 20px; }
  .social-links a { width: 42px; height: 42px; }
}

/* iOS: respect the notch / home bar */
@supports (padding: max(0px)) {
  .nav { padding-left: max(0px, env(safe-area-inset-left)); padding-right: max(0px, env(safe-area-inset-right)); }
  .nav__mobile { padding-left: max(24px, env(safe-area-inset-left)); padding-right: max(24px, env(safe-area-inset-right)); padding-bottom: max(28px, env(safe-area-inset-bottom)); }
  .footer__bottom { padding-bottom: max(0px, env(safe-area-inset-bottom)); }
}
