/* ==========================================================================
   Sevwas — Marketing Website Design System
   Light + Gold luxury theme (cream surfaces, charcoal text, champagne gold,
   Cormorant Garamond display + Inter body).
   ========================================================================== */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand — champagne gold */
  --gold:        #C8A24A;
  --gold-light:  #E4C978;
  --gold-deep:   #A87E25;
  --gold-soft:   rgba(200, 162, 74, 0.10);
  --gold-glow:   rgba(200, 162, 74, 0.28);
  --gold-line:   rgba(200, 162, 74, 0.30);

  /* Neutrals — luxury cream/ivory palette */
  --cream:       #F8F6F2;
  --cream-2:     #F3F0E9;
  --paper:       #FFFFFF;
  --surface:     #F1EEE8;
  --ink:         #F8F6F2;   /* page background */
  --ink-2:       #FFFFFF;   /* card background */
  --ink-3:       #F1EEE8;   /* elevated surface */
  --line:        rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.16);

  /* Text */
  --text:        #111111;
  --text-mute:   #625F58;
  --text-dim:    #827D73;

  /* Status */
  --green:       #5E7A58;
  --red:         #B34D45;

  /* Type */
  --font-display: 'Cormorant Garamond', 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 8px 28px rgba(17, 17, 17, 0.06);
  --shadow-hover: 0 18px 42px rgba(17, 17, 17, 0.10);
  --shadow-gold:  0 10px 30px rgba(200, 162, 74, 0.22);
}

/* ---------- 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:
    radial-gradient(circle at 88% 8%, rgba(200,162,74,.12), transparent 26rem),
    radial-gradient(circle at 4% 92%, rgba(167,181,154,.10), transparent 22rem),
    linear-gradient(180deg, #FCFBF8 0%, #F8F6F2 55%, #F3F0E9 100%);
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  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: 16px; -webkit-tap-highlight-color: transparent; }
@supports (-webkit-touch-callout: none) { input, textarea, select { font-size: 16px; } }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 28px; }
.section   { padding: 104px 0; }
.section-sm{ padding: 72px 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-deep);
  background: var(--gold-soft);
  border: 1px solid var(--gold-line);
  padding: 7px 16px; border-radius: 999px;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.1; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
p  { color: var(--text-mute); }
p.lead { font-size: 1.15rem; color: var(--text-mute); line-height: 1.75; }

.text-gold       { color: var(--gold-deep); }
.text-gradient-gold {
  background: linear-gradient(135deg, var(--gold-deep) 0%, var(--gold) 45%, var(--gold-light) 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: #111111;
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 40px rgba(200,162,74,.36); }

.btn-outline {
  background: #FFFFFF; color: #111111;
  border: 1px solid var(--line-strong);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold-deep); background: var(--gold-soft); }

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

.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(248, 246, 242, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(17,17,17,.04), 0 10px 30px rgba(17,17,17,.03);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav__brand { display: flex; align-items: center; gap: 11px; }
.nav__brand img { height: 42px; width: auto; 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: var(--text); background: rgba(17,17,17,0.04); }
.nav__links a.active { color: var(--gold-deep); }
.nav__cta { display: flex; align-items: center; gap: 10px; }

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

/* ---------- Cards ---------- */
.card {
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: transform .3s cubic-bezier(.32,.72,0,1), border-color .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold-line); box-shadow: var(--shadow-hover); }
.card__icon {
  width: 54px; height: 54px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--gold-soft), rgba(255,255,255,.7));
  border: 1px solid var(--gold-line);
  color: var(--gold-deep); margin-bottom: 20px;
  font-size: 26px; line-height: 1;
}
.card__icon svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p  { font-size: 14.5px; }

.grid { display: grid; gap: 24px; }
.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: 120px 0 96px; overflow: hidden; isolation: isolate; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; 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(200,162,74,.08), 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(--paper); 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: 26px 18px; box-shadow: var(--shadow-card);
}
.stat__num { font-family: var(--font-display); font-size: 2.3rem; font-weight: 700; color: var(--gold-deep); }
.stat__label { font-size: 13px; color: var(--text-mute); margin-top: 4px; }

/* ---------- Section header ---------- */
.section-head { max-width: 720px; margin: 0 auto 60px; 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: 72px; align-items: center; }
.feature-row + .feature-row { margin-top: 104px; }
.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-deep); 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; box-shadow: var(--shadow-hover);
}
.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(--surface); 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: var(--text); font-weight: 600; }
.mock__pill { font-size: 11px; padding: 4px 10px; border-radius: 999px; background: var(--gold-soft); color: var(--gold-deep); border: 1px solid var(--gold-line); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative; padding: 40px 30px; background: var(--ink-2);
  border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card);
}
.step__num {
  counter-increment: step;
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 700; color: var(--gold-deep);
  line-height: 1; margin-bottom: 16px;
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.35rem; 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: 36px 32px; display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow-card);
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.plan:hover { transform: translateY(-4px); border-color: var(--gold-line); box-shadow: var(--shadow-hover); }
.plan--featured {
  border-color: var(--gold);
  background: linear-gradient(180deg, rgba(200,162,74,.06), 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: #111111; 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.5rem; font-weight: 700; color: var(--text); }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin: 16px 0 4px; }
.plan__price .amt { font-family: var(--font-display); font-size: 2.9rem; font-weight: 700; color: var(--text); }
.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-deep); 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; box-shadow: var(--shadow-card); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; font-size: 17px; font-weight: 600; color: var(--text); text-align: left;
  font-family: var(--font-display);
}
.faq__q .icon { color: var(--gold-deep); transition: transform .3s; flex-shrink: 0; }
.faq__item[open] .faq__q .icon { transform: rotate(45deg); }
.faq__a { padding: 0 26px 24px; color: var(--text-mute); font-size: 15px; line-height: 1.7; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-xl); padding: 72px 44px; text-align: center;
  background: linear-gradient(125deg, #111 0%, #25221D 58%, #5B4821 100%); box-shadow: 0 25px 52px rgba(17,17,17,.18); }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 78% 8%, rgba(228,201,120,.40), transparent 25rem); }
.cta-band__inner { position: relative; max-width: 660px; margin-inline: auto; }
.cta-band h2 { color: #F8F6F2; margin-bottom: 16px; }
.cta-band p { margin-bottom: 30px; font-size: 1.08rem; color: rgba(248,246,242,.75); }

/* ---------- About page ---------- */
.about-hero-img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); box-shadow: var(--shadow-hover); }
.figure { margin: 0; }
.figure img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-hover); }
.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: 32px; box-shadow: var(--shadow-card); transition: transform .3s, border-color .3s;
}
.value-card:hover { transform: translateY(-4px); border-color: var(--gold-line); }
.value-card__icon { font-size: 30px; margin-bottom: 14px; color: var(--gold-deep); line-height: 1; }
.value-card h3 { font-size: 1.25rem; 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(200,162,74,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(--cream); border: 3px solid var(--gold); }
.timeline-item__year { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--gold-deep); }
.timeline-item h3 { font-size: 1.2rem; margin: 4px 0 6px; }
.timeline-item p { font-size: 14.5px; }

/* team */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; text-align: center; box-shadow: var(--shadow-card); }
.team-card__avatar { width: 76px; height: 76px; 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: 30px; font-weight: 700; color: #111111; }
.team-card h3 { font-size: 1.15rem; margin-bottom: 4px; }
.team-card .role { color: var(--gold-deep); 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(2.1rem, 4vw, 2.9rem); margin-bottom: 10px; }
.prose .updated { font-size: 13px; color: var(--text-dim); margin-bottom: 36px; }
.prose h2 { font-size: 1.5rem; margin: 44px 0 14px; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--text-mute); font-size: 15.5px; line-height: 1.8; 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-deep); text-decoration: underline; text-underline-offset: 3px; }
.prose .callout {
  background: var(--gold-soft); border: 1px solid var(--gold-line); 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: 24px 28px; margin-bottom: 40px; box-shadow: var(--shadow-card); }
.prose .toc h2 { font-size: 1.1rem; 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: 24px; background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); }
.info-tile + .info-tile { margin-top: 14px; }
.info-tile__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--gold-soft); border: 1px solid var(--gold-line); color: var(--gold-deep); 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-deep); }

.form { background: var(--ink-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-card); }
.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: #FFFFFF; border: 1px solid var(--line-strong); border-radius: 11px;
  padding: 13px 15px; color: var(--text); 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(200,162,74,.15);
}
.form textarea { resize: vertical; min-height: 130px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ---------- Footer ---------- */
.footer { background: #1C1C1E; border-top: 1px solid rgba(255,255,255,0.06); padding: 72px 0 36px; margin-top: 40px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer__brand img { width: 150px; height: auto; object-fit: contain; }
.footer__about { color: rgba(248,246,242,.60); 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: #F8F6F2; margin-bottom: 16px; }
.footer__col a { display: block; color: rgba(248,246,242,.60); font-size: 14.5px; padding: 6px 0; transition: color .2s; }
.footer__col a:hover { color: var(--gold-light); }

/* company block — REQUIRED by payment gateways */
.footer__company {
  margin-top: 32px; padding: 24px 26px; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius); font-size: 13.5px; color: rgba(248,246,242,.60); line-height: 1.8;
}
.footer__company strong { color: #F8F6F2; }

.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: rgba(248,246,242,.45); }
.footer__bottom-links { display: flex; gap: 22px; }
.footer__bottom-links a { color: rgba(248,246,242,.45); font-size: 13.5px; }
.footer__bottom-links a:hover { color: var(--gold-light); }

/* ---------- Social Icons ---------- */
.social-links { display: flex; gap: 12px; margin-top: 18px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(248,246,242,.60); transition: color .2s, border-color .2s, background .2s;
}
.social-links a:hover { color: var(--gold-light); border-color: var(--gold-line); background: rgba(200,162,74,.12); }
.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: 40px; }
  .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: 76px 0 auto 0; z-index: 99;
    background: rgba(248,246,242,.98); 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: var(--text); background: rgba(17,17,17,.04); }
  .nav__mobile .btn { margin-top: 12px; }
}
@media (max-width: 760px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 52px 0; }
  .hero { padding: 72px 0 56px; }
  .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 */
  .stats { gap: 10px; }
  .stat { min-width: calc(50% - 5px); flex-basis: calc(50% - 5px); padding: 20px 14px; }
  .stat__num { font-size: 1.75rem; }

  .btn { padding: 14px 24px; }
  .btn-lg { padding: 15px 28px; width: 100%; }
  .hero__cta { flex-direction: column; width: 100%; }
  .hero__cta .btn { width: 100%; }

  .card { padding: 24px; }
  .plan { padding: 28px 24px; }
  .form { padding: 24px; }
  .cta-band { padding: 48px 24px; }
  .section-head { margin-bottom: 40px; }
  .footer__company { font-size: 12.5px; padding: 18px; line-height: 1.7; }
  .footer__bottom-links { flex-wrap: wrap; gap: 14px; }
}

/* Small phones */
@media (max-width: 420px) {
  .container { padding-inline: 20px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.65rem; }
  .hero h1 { font-size: 2.2rem; }
  .nav__inner { height: 66px; }
  .nav__brand img { height: 36px; }
  .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.4rem; }
}

/* Landscape phones */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero { padding: 52px 0 44px; }
}

/* Touch-friendly */
@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 safe areas */
@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)); }
}

/* ---------- Split hero (professional two-column) ---------- */
.hero--split { padding: 88px 0 96px; }
.hero__split-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center;
}
.hero__copy h1 { margin: 22px 0 20px; font-size: clamp(2.6rem, 5vw, 4.6rem); letter-spacing: -.04em; max-width: 620px; }
.hero__copy .lead { max-width: 560px; margin-bottom: 32px; }
.hero__copy .hero__cta { margin-bottom: 40px; }

/* Trust row — inline, elegant, no boxes */
.hero__trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero__trust-item { display: flex; flex-direction: column; gap: 2px; }
.hero__trust-num { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--gold-deep); line-height: 1; }
.hero__trust-label { font-size: 11.5px; color: var(--text-dim); letter-spacing: .02em; }
.hero__trust-divider { width: 1px; height: 30px; background: var(--line-strong); }

/* Media column */
.hero__media { position: relative; }
.hero__media img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center;
  border-radius: var(--radius-xl); border: 1px solid var(--line);
  box-shadow: 0 30px 70px rgba(17,17,17,.14);
}
.hero__media::before {
  content: ""; position: absolute; inset: -28px -28px auto auto; width: 180px; height: 180px;
  border-radius: 50%; background: radial-gradient(circle, rgba(200,162,74,.22), transparent 70%); z-index: -1; pointer-events: none;
}
.hero__badge {
  position: absolute; display: flex; align-items: center; gap: 11px;
  padding: 13px 16px; border-radius: 15px;
  background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.8);
  box-shadow: 0 16px 36px rgba(17,17,17,.16); backdrop-filter: blur(16px);
}
.hero__badge--top { top: 26px; left: -26px; }
.hero__badge--bottom { right: -22px; bottom: 36px; }
.hero__badge-icon {
  width: 36px; height: 36px; border-radius: 11px; flex: 0 0 auto;
  display: flex; align-items: center; justify-content: center;
  background: #111; color: #E4C978; font-weight: 800; font-size: 16px;
}
.hero__badge strong, .hero__badge small { display: block; line-height: 1.25; }
.hero__badge strong { font-size: 13.5px; color: #111; }
.hero__badge small { margin-top: 2px; color: #6B665E; font-size: 11px; }

/* ---------- Feature media story blocks (used in feature-row sections) ---------- */
.media-story { min-height: 460px; padding: 0; border: 0; background: #111; isolation: isolate; box-shadow: var(--shadow-hover); }
.media-story::after { z-index: 1; background: linear-gradient(180deg, rgba(17,17,17,.04), rgba(17,17,17,.33)); }
.media-story img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.media-story--owner img { object-position: 52% 42%; }
.media-story--network img { object-position: 55% 54%; }
.story-note {
  position: absolute; z-index: 2; display: flex; align-items: center; gap: 10px;
  min-width: 200px; padding: 13px 15px; border-radius: 15px;
  color: #111; background: rgba(255,255,255,.92); border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 15px 32px rgba(0,0,0,.16); backdrop-filter: blur(16px);
}
.story-note--top { top: 24px; left: 24px; }
.story-note--bottom { right: 24px; bottom: 24px; }
.story-note__icon {
  width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 auto; border-radius: 11px; background: #111; color: #E4C978; font-weight: 800;
}
.story-note strong, .story-note small { display: block; line-height: 1.25; }
.story-note strong { font-size: 13px; }
.story-note small { margin-top: 3px; color: #6B665E; font-size: 11px; }
@media (max-width: 540px) {
  .story-note { min-width: auto; padding: 10px 11px; }
  .story-note small { display: none; }
  .story-note--top { top: 14px; left: 14px; }
  .story-note--bottom { right: 14px; bottom: 14px; }
}

@media (max-width: 980px) {
  .hero--split { padding: 56px 0 64px; }
  .hero__split-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__copy { text-align: center; }
  .hero__copy .hero__cta, .hero__copy .hero__trust { justify-content: center; }
  .hero__copy h1, .hero__copy .lead { margin-inline: auto; }
  .hero__media { max-width: 460px; margin-inline: auto; order: -1; }
  .hero__media img { aspect-ratio: 4 / 3; }
}
@media (max-width: 540px) {
  .hero__copy h1 { font-size: clamp(2.2rem, 9vw, 2.8rem); }
  .hero__trust { gap: 14px; }
  .hero__trust-divider { display: none; }
  .hero__badge--top { left: 0; top: 14px; }
  .hero__badge--bottom { right: 0; bottom: 18px; }
  .hero__badge { padding: 10px 12px; }
  .hero__badge small { display: none; }
}
