/* ==========================================================================
   FULGORAN SYSTEMS — "Amber Strike" design system
   Palette: warm near-black / electric amber. Edit tokens below to retheme.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  --bg:         #141210;   /* warm near-black */
  --surface-1:  #1E1B18;   /* card / panel */
  --surface-2:  #26221E;   /* raised panel */
  --line:       #322C25;   /* hairline borders */
  --amber:      #FFB020;   /* electric amber — the strike */
  --amber-soft: #FFC95C;
  --amber-deep: #7A4F0B;   /* burnt amber — depth, borders */
  --cream:      #F5EFE6;   /* headlines */
  --muted:      #A89E90;   /* body text */
  --muted-2:    #7E756A;   /* captions */
  --green:      #7FD99A;   /* success states only */

  --font-display: 'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body:    'Instrument Sans', 'Segoe UI', system-ui, sans-serif;

  /* 8pt spacing scale */
  --s1: 8px;  --s2: 16px; --s3: 24px; --s4: 32px;
  --s5: 40px; --s6: 48px; --s8: 64px; --s10: 80px; --s12: 96px; --s16: 128px;

  --radius: 14px;
  --radius-lg: 20px;
  --glow: 0 0 24px rgba(255, 176, 32, .28), 0 0 64px rgba(255, 176, 32, .10);
  --shadow: 0 16px 48px rgba(0, 0, 0, .45);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --nav-h: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--muted);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--amber); text-decoration: none; }
a:hover { color: var(--amber-soft); }
strong { color: var(--cream); font-weight: 600; }
::selection { background: var(--amber); color: #141210; }

/* Warm film grain over everything (very subtle) */
body::after {
  content: ""; position: fixed; inset: 0; z-index: 9999; pointer-events: none;
  opacity: .05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0 0 var(--s3);
}
h1 { font-size: clamp(40px, 7vw, 76px); letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 4.6vw, 48px); }
h3 { font-size: clamp(21px, 2.6vw, 26px); font-weight: 400; }
h4 { font-size: 18px; font-weight: 600; font-family: var(--font-body); }
p  { margin: 0 0 var(--s2); }
.lead { font-size: clamp(18px, 2.2vw, 21px); color: var(--muted); max-width: 60ch; }

/* Accessibility */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 10000;
  background: var(--amber); color: #141210; padding: 12px 20px;
  border-radius: 0 0 var(--radius) 0; font-weight: 600;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--amber); outline-offset: 3px; border-radius: 4px; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px;
  clip: rect(0 0 0 0); overflow: hidden; white-space: nowrap;
}

/* ---------- Layout ---------- */
.container { width: min(1180px, 100% - 48px); margin-inline: auto; }
.container--narrow { width: min(880px, 100% - 48px); margin-inline: auto; }
section { padding: var(--s12) 0; position: relative; }
@media (min-width: 900px) { section { padding: var(--s16) 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-size: 13px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--amber);
  margin-bottom: var(--s2);
}
.eyebrow::before {
  content: ""; width: 24px; height: 1px; background: var(--amber-deep);
}
.section-head { max-width: 720px; margin-bottom: var(--s8); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lead { margin-inline: auto; }

.grid-2 { display: grid; gap: var(--s4); }
.grid-3 { display: grid; gap: var(--s3); }
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: 1fr 1fr; gap: var(--s6); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 14px 28px;
  font-family: var(--font-display); font-size: 16px; font-weight: 600;
  border-radius: var(--radius); border: 1px solid transparent;
  cursor: pointer; text-decoration: none; text-align: center;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .25s, color .25s, border-color .25s;
  will-change: transform;
}
.btn--primary {
  background: var(--amber); color: #141210;
  box-shadow: 0 0 0 rgba(255, 176, 32, 0);
}
.btn--primary:hover {
  background: var(--amber-soft); color: #141210;
  box-shadow: var(--glow); transform: translateY(-2px);
}
.btn--ghost {
  background: transparent; color: var(--cream);
  border-color: var(--line);
}
.btn--ghost:hover {
  color: var(--cream); border-color: var(--amber-deep);
  background: rgba(255, 176, 32, .05); transform: translateY(-2px);
}
.btn--lg { min-height: 60px; padding: 18px 36px; font-size: 17px; }
.btn .bolt-ic { width: 16px; height: 16px; flex: none; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s2); align-items: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s, border-color .4s, backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(20, 18, 16, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: min(1180px, 100% - 48px); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
}
.logo { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.logo svg { width: 26px; height: 26px; flex: none; }
.logo__word {
  font-family: var(--font-display); font-weight: 300; font-size: 17px;
  letter-spacing: .30em; color: var(--cream); line-height: 1.1;
}
.logo__sub {
  display: block; font-size: 8.5px; font-weight: 600;
  letter-spacing: .56em; color: var(--amber); margin-top: 2px;
}
.nav__links { display: none; align-items: center; gap: var(--s4); list-style: none; margin: 0; padding: 0; }
.nav__links a {
  color: var(--muted); font-size: 15px; font-weight: 500;
  transition: color .2s; padding: 8px 2px; white-space: nowrap;
}
.nav__links a:hover, .nav__links a[aria-current="page"] { color: var(--cream); }
.nav__links a[aria-current="page"] { box-shadow: inset 0 -2px 0 var(--amber); }
.nav__cta { display: none; }
@media (min-width: 940px) {
  .nav__links, .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
}
.nav__cta.btn { min-height: 44px; padding: 10px 20px; font-size: 15px; white-space: nowrap; }

/* Grid children must be allowed to shrink below content width on phones */
.grid-2 > *, .grid-3 > *, .hero__inner > * { min-width: 0; }

/* Mobile menu */
.nav__burger {
  background: none; border: 1px solid var(--line); border-radius: 10px;
  width: 44px; height: 44px; display: grid; place-items: center; cursor: pointer;
}
.nav__burger span, .nav__burger span::before, .nav__burger span::after {
  content: ""; display: block; width: 18px; height: 2px;
  background: var(--cream); border-radius: 2px; position: relative;
  transition: transform .3s var(--ease), opacity .2s;
}
.nav__burger span::before { position: absolute; top: -6px; }
.nav__burger span::after  { position: absolute; top: 6px; }
.nav__burger[aria-expanded="true"] span { background: transparent; }
.nav__burger[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }
/* Must come after the .nav__burger base rule (same specificity) */
@media (min-width: 940px) { .nav__burger { display: none; } }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 auto; z-index: 999;
  background: rgba(20, 18, 16, .97); backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: var(--s3) 24px var(--s4);
  display: none; flex-direction: column; gap: 4px;
}
.mobile-menu.is-open { display: flex; }
.mobile-menu a {
  color: var(--cream); font-family: var(--font-display); font-size: 19px;
  padding: 14px 4px; border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: var(--s2); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + var(--s8)) 0 var(--s10);
  overflow: hidden;
}
.hero__mesh {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(900px 520px at 78% 8%,  rgba(255, 176, 32, .10), transparent 60%),
    radial-gradient(700px 600px at 12% 90%, rgba(122, 79, 11, .14),  transparent 60%),
    radial-gradient(540px 360px at 50% 50%, rgba(255, 176, 32, .04), transparent 70%);
}
.hero__inner {
  position: relative; display: grid; gap: var(--s8); align-items: center;
}
@media (min-width: 980px) {
  .hero__inner { grid-template-columns: 1.15fr .85fr; }
}
.hero h1 .amp { color: var(--amber); font-weight: 400; }
.hero .lead { margin-bottom: var(--s4); }
.hero__note { font-size: 14px; color: var(--muted-2); margin-top: var(--s2); }
.hero__note a { color: var(--muted); text-decoration: underline; text-underline-offset: 3px; }

/* The big animated bolt behind the hero headline */
.hero__bolt {
  position: absolute; top: -4%; right: -6%; width: min(46vw, 560px); height: auto;
  pointer-events: none; opacity: .9; z-index: -1;
}
.hero__bolt .bolt-stroke {
  fill: none; stroke: var(--amber); stroke-width: 1.6;
  stroke-linejoin: round; stroke-linecap: round;
  stroke-dasharray: 1200; stroke-dashoffset: 1200;
  filter: drop-shadow(0 0 10px rgba(255, 176, 32, .65));
}
.hero__bolt .bolt-fill { fill: rgba(255, 176, 32, .05); }
.is-struck .bolt-stroke { animation: boltDraw 1.4s var(--ease) forwards, boltFlicker 7s 2.2s infinite; }
@keyframes boltDraw   { to { stroke-dashoffset: 0; } }
@keyframes boltFlicker {
  0%, 91%, 95%, 100% { opacity: 1; }
  92%, 94% { opacity: .25; }
  93% { opacity: 1; filter: drop-shadow(0 0 22px rgba(255, 176, 32, .9)); }
}

/* ---------- Phone demo (the centerpiece) ---------- */
.phone-wrap { display: flex; justify-content: center; position: relative; }
.phone {
  width: min(340px, 100%); border-radius: 36px;
  background: linear-gradient(160deg, #2A2620, #1A1714);
  border: 1px solid var(--line);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(245, 239, 230, .06);
  padding: 14px; position: relative;
}
.phone::before { /* speaker notch */
  content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 72px; height: 6px; border-radius: 3px; background: #0E0C0A;
}
.phone__screen {
  background: #0F0D0B; border-radius: 26px; min-height: 540px;
  padding: 48px 16px 18px; display: flex; flex-direction: column; gap: 10px;
  overflow: hidden; position: relative;
}
.phone__status {
  position: absolute; top: 14px; left: 22px; right: 22px;
  display: flex; justify-content: space-between;
  font-size: 11px; color: var(--muted-2); letter-spacing: .04em;
}

/* Incoming-call overlay */
.callcard {
  position: absolute; inset: 0; border-radius: 26px; z-index: 3;
  background: linear-gradient(180deg, #181512 0%, #0F0D0B 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6px; text-align: center; padding: 24px;
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.callcard.is-dismissed { opacity: 0; transform: translateY(-12px); pointer-events: none; }
.callcard__avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--surface-2); border: 1px solid var(--line);
  display: grid; place-items: center; font-size: 26px; margin-bottom: 10px;
}
.callcard__name { color: var(--cream); font-size: 19px; font-family: var(--font-display); }
.callcard__meta { font-size: 13px; color: var(--muted-2); }
.callcard__state { margin-top: 14px; font-size: 13px; color: var(--amber); letter-spacing: .08em; text-transform: uppercase; }
.callcard.is-ringing .callcard__avatar { animation: ringPulse 1.1s ease-in-out infinite; }
@keyframes ringPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 176, 32, .35); }
  50%       { box-shadow: 0 0 0 16px rgba(255, 176, 32, 0); }
}
.callcard__missed {
  display: none; margin-top: 14px; padding: 8px 16px; border-radius: 100px;
  background: rgba(214, 69, 69, .12); border: 1px solid rgba(214, 69, 69, .35);
  color: #E58C8C; font-size: 13px; font-weight: 600;
}
.callcard.is-missed .callcard__missed { display: inline-block; }
.callcard.is-missed .callcard__state { display: none; }

/* SMS thread */
.thread { display: flex; flex-direction: column; gap: 10px; margin-top: auto; }
.bubble {
  max-width: 86%; padding: 11px 14px; border-radius: 18px;
  font-size: 14px; line-height: 1.45;
  opacity: 0; transform: translateY(10px) scale(.97);
  transition: opacity .45s var(--ease), transform .45s var(--ease);
}
.bubble.is-in { opacity: 1; transform: none; }
.bubble--biz {
  align-self: flex-start; background: var(--surface-2); color: var(--cream);
  border-bottom-left-radius: 6px; border: 1px solid var(--line);
}
.bubble--cust {
  align-self: flex-end; background: var(--amber); color: #141210;
  border-bottom-right-radius: 6px; font-weight: 500;
}
.bubble--booked {
  align-self: flex-start; background: rgba(127, 217, 154, .10);
  border: 1px solid rgba(127, 217, 154, .35); color: var(--green);
  font-weight: 600; display: flex; gap: 8px; align-items: center;
}
.bubble__time { display: block; font-size: 10.5px; color: var(--muted-2); margin-top: 4px; font-weight: 400; }
.bubble--cust .bubble__time { color: rgba(20, 18, 16, .55); }

.typing { align-self: flex-start; display: none; gap: 5px; padding: 12px 16px;
  background: var(--surface-2); border-radius: 18px; border-bottom-left-radius: 6px; }
.typing.is-on { display: inline-flex; }
.typing i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--muted-2);
  animation: typingDot 1.2s infinite;
}
.typing i:nth-child(2) { animation-delay: .18s; }
.typing i:nth-child(3) { animation-delay: .36s; }
@keyframes typingDot { 0%, 60%, 100% { transform: none; opacity: .4; } 30% { transform: translateY(-5px); opacity: 1; } }

.demo-caption {
  text-align: center; margin-top: var(--s3); font-size: 14px; color: var(--muted-2);
  min-height: 24px; transition: opacity .4s;
}
.demo-caption strong { color: var(--amber); font-weight: 600; }
.demo-replay {
  display: inline-flex; align-items: center; gap: 8px; margin-top: var(--s1);
  background: none; border: 1px solid var(--line); color: var(--muted);
  border-radius: 100px; padding: 9px 18px; min-height: 44px; font-size: 13.5px;
  cursor: pointer; font-family: var(--font-body); transition: border-color .2s, color .2s;
}
.demo-replay:hover { border-color: var(--amber-deep); color: var(--cream); }

/* ---------- Stats strip ---------- */
.stats { border-block: 1px solid var(--line); background: var(--surface-1); padding: var(--s8) 0; }
.stats__grid { display: grid; gap: var(--s5); text-align: center; }
@media (min-width: 760px) { .stats__grid { grid-template-columns: repeat(3, 1fr); } }
.stat__num {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(44px, 6vw, 64px); color: var(--amber); line-height: 1;
}
.stat__label { font-size: 14.5px; color: var(--muted); margin-top: 10px; max-width: 26ch; margin-inline: auto; }
.stats__src { text-align: center; font-size: 12px; color: var(--muted-2); margin-top: var(--s4); }

/* ---------- Cards ---------- */
.card {
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--s4);
  transition: transform .45s var(--ease), border-color .35s, box-shadow .45s var(--ease);
}
.card:hover { transform: translateY(-4px); border-color: var(--amber-deep); box-shadow: var(--shadow); }
.card__icon {
  width: 48px; height: 48px; border-radius: 12px; margin-bottom: var(--s3);
  background: rgba(255, 176, 32, .08); border: 1px solid rgba(255, 176, 32, .18);
  display: grid; place-items: center; color: var(--amber);
}
.card__icon svg { width: 22px; height: 22px; }
.card h3 { margin-bottom: var(--s1); }
.card p { font-size: 15.5px; margin: 0; }

/* Offer cards (the two big ones) */
.offer {
  position: relative; overflow: hidden;
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--s6) var(--s4);
  display: flex; flex-direction: column; gap: var(--s2);
  transition: transform .45s var(--ease), border-color .35s, box-shadow .45s var(--ease);
}
.offer:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--amber-deep); }
.offer--hero { border-color: rgba(255, 176, 32, .35); }
.offer--hero::before {
  content: ""; position: absolute; inset: -1px;
  background: radial-gradient(420px 200px at 85% -10%, rgba(255, 176, 32, .12), transparent 65%);
  pointer-events: none;
}
.offer__tag {
  align-self: flex-start; font-size: 11.5px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 100px;
  background: rgba(255, 176, 32, .10); color: var(--amber);
  border: 1px solid rgba(255, 176, 32, .25);
}
.offer__tag--alt { background: var(--surface-2); color: var(--muted); border-color: var(--line); }
.offer ul { margin: 0 0 var(--s2); padding: 0; list-style: none; }
.offer li {
  padding: 9px 0 9px 30px; position: relative;
  font-size: 15.5px; border-bottom: 1px solid rgba(50, 44, 37, .6);
}
.offer li:last-child { border-bottom: 0; }
.offer li::before {
  content: ""; position: absolute; left: 2px; top: 16px;
  width: 14px; height: 11px;
  background: var(--amber);
  clip-path: polygon(57% 0, 0 60%, 38% 60%, 30% 100%, 100% 36%, 55% 36%);
}
.offer .btn { margin-top: auto; align-self: flex-start; }

/* ---------- ROI calculator ---------- */
.roi {
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--s5) var(--s4);
}
@media (min-width: 860px) { .roi { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--s8); padding: var(--s6); } }
.roi__controls label {
  display: block; font-size: 14.5px; font-weight: 600; color: var(--cream); margin-bottom: 8px;
}
.roi__value { color: var(--amber); font-family: var(--font-display); }
.roi__field { margin-bottom: var(--s4); }
input[type="range"] {
  width: 100%; height: 44px; margin: 0; background: transparent;
  -webkit-appearance: none; appearance: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--amber) var(--fill, 50%), var(--line) var(--fill, 50%));
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 22px; height: 22px; border-radius: 50%;
  background: var(--amber); margin-top: -9px;
  box-shadow: 0 0 12px rgba(255, 176, 32, .5); border: 3px solid #141210;
}
input[type="range"]::-moz-range-track { height: 4px; border-radius: 2px; background: var(--line); }
input[type="range"]::-moz-range-progress { height: 4px; border-radius: 2px; background: var(--amber); }
input[type="range"]::-moz-range-thumb {
  width: 16px; height: 16px; border-radius: 50%; background: var(--amber);
  border: 3px solid #141210; box-shadow: 0 0 12px rgba(255, 176, 32, .5);
}
.roi__result {
  display: flex; flex-direction: column; justify-content: center; text-align: center;
  background: #181512; border: 1px solid var(--amber-deep); border-radius: var(--radius);
  padding: var(--s4); margin-top: var(--s3);
}
@media (min-width: 860px) { .roi__result { margin-top: 0; } }
.roi__big {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(40px, 5vw, 58px); color: var(--amber); line-height: 1.05;
}
.roi__big-label { font-size: 14px; color: var(--muted); margin-top: 8px; }
.roi__yr { margin-top: var(--s3); padding-top: var(--s3); border-top: 1px solid var(--line); font-size: 15px; }
.roi__yr strong { color: var(--cream); font-size: 20px; font-family: var(--font-display); font-weight: 400; }
.roi__fine { font-size: 12px; color: var(--muted-2); margin-top: var(--s2); }

/* ---------- Process ---------- */
.process { counter-reset: step; display: grid; gap: var(--s3); }
@media (min-width: 860px) { .process { grid-template-columns: repeat(4, 1fr); } }
.step {
  counter-increment: step; position: relative;
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--s4) var(--s3) var(--s3);
}
.step::before {
  content: "0" counter(step);
  font-family: var(--font-display); font-weight: 300; font-size: 38px;
  color: var(--amber); display: block; margin-bottom: var(--s2); line-height: 1;
}
.step h3 { font-size: 18px; font-weight: 600; font-family: var(--font-body); margin-bottom: 6px; }
.step p { font-size: 14.5px; margin: 0; }

/* ---------- Pricing ---------- */
.tiers { display: grid; gap: var(--s3); align-items: stretch; }
@media (min-width: 920px) { .tiers { grid-template-columns: repeat(3, 1fr); } }
.tier {
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: var(--s5) var(--s4);
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.tier:hover { transform: translateY(-4px); }
.tier--featured {
  border-color: var(--amber); background: linear-gradient(180deg, #221D15, var(--surface-1) 55%);
  box-shadow: var(--glow); position: relative;
}
@media (min-width: 920px) { .tier--featured { transform: scale(1.03); } .tier--featured:hover { transform: scale(1.03) translateY(-4px); } }
.tier__badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--amber); color: #141210; font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; padding: 6px 16px; border-radius: 100px;
  white-space: nowrap;
}
.tier__name { font-family: var(--font-display); font-size: 21px; color: var(--cream); font-weight: 400; }
.tier__price {
  font-family: var(--font-display); font-weight: 300;
  font-size: 52px; color: var(--cream); margin: var(--s2) 0 2px; line-height: 1;
}
.tier__price small { font-size: 16px; color: var(--muted-2); font-weight: 400; }
.tier__for { font-size: 14px; color: var(--muted-2); margin-bottom: var(--s3); }
.tier ul { list-style: none; margin: 0 0 var(--s4); padding: var(--s3) 0 0; border-top: 1px solid var(--line); flex: 1; }
.tier li { padding: 8px 0 8px 28px; position: relative; font-size: 15px; }
.tier li::before {
  content: ""; position: absolute; left: 0; top: 15px; width: 13px; height: 10px;
  background: var(--amber);
  clip-path: polygon(57% 0, 0 60%, 38% 60%, 30% 100%, 100% 36%, 55% 36%);
}
.tier li.tier__minus { color: var(--muted-2); }
.tier li.tier__minus::before { clip-path: none; height: 2px; top: 19px; width: 12px; background: var(--muted-2); border-radius: 1px; }
.pricing-note {
  text-align: center; font-size: 14.5px; color: var(--muted-2);
  max-width: 64ch; margin: var(--s6) auto 0;
}

/* ---------- FAQ ---------- */
.faq { max-width: 780px; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: var(--s3);
  padding: var(--s3) 4px; text-align: left;
  font-family: var(--font-display); font-size: clamp(16px, 2.4vw, 19px);
  color: var(--cream); font-weight: 400; min-height: 44px;
}
.faq__q:hover { color: var(--amber-soft); }
.faq__chev { flex: none; width: 20px; height: 20px; color: var(--amber); transition: transform .35s var(--ease); }
.faq__q[aria-expanded="true"] .faq__chev { transform: rotate(45deg); }
.faq__a { overflow: hidden; max-height: 0; transition: max-height .45s var(--ease); }
.faq__a-inner { padding: 0 4px var(--s3); font-size: 15.5px; max-width: 64ch; }

/* ---------- Final CTA ---------- */
.cta-final {
  text-align: center; position: relative; overflow: hidden;
  border-top: 1px solid var(--line);
}
.cta-final::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(720px 380px at 50% 110%, rgba(255, 176, 32, .12), transparent 65%);
}
.cta-final h2 { font-size: clamp(34px, 5.4vw, 58px); }
.cta-final .btn-row { justify-content: center; margin-top: var(--s4); }
.cta-final .lead { margin-inline: auto; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line); background: #100E0C;
  padding: var(--s10) 0 var(--s4); font-size: 14.5px;
}
.footer__grid { display: grid; gap: var(--s6); margin-bottom: var(--s8); }
@media (min-width: 860px) { .footer__grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer h4 {
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-2); margin-bottom: var(--s2); font-family: var(--font-display); font-weight: 600;
}
.footer ul { list-style: none; margin: 0; padding: 0; }
.footer li { margin-bottom: 10px; }
.footer a { color: var(--muted); }
.footer a:hover { color: var(--amber); }
.footer__tag { color: var(--muted-2); max-width: 30ch; margin-top: var(--s2); }
.footer__nap { font-style: normal; line-height: 1.9; color: var(--muted); }
.footer__nap a { color: var(--cream); }
.footer__legal {
  border-top: 1px solid var(--line); padding-top: var(--s3);
  display: flex; flex-wrap: wrap; gap: var(--s2); justify-content: space-between;
  font-size: 13px; color: var(--muted-2);
}
.footer__legal a { color: var(--muted-2); }
.footer__legal a:hover { color: var(--muted); }

/* ---------- Sticky mobile CTA bar ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 900;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(20, 18, 16, .92); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform .45s var(--ease);
}
.sticky-cta.is-visible { transform: none; }
.sticky-cta .btn { width: 100%; min-height: 50px; }
@media (min-width: 940px) { .sticky-cta { display: none; } }
body.has-sticky-cta { padding-bottom: 84px; }
@media (min-width: 940px) { body.has-sticky-cta { padding-bottom: 0; } }

/* ---------- Forms ---------- */
.form { display: grid; gap: var(--s3); }
@media (min-width: 700px) { .form { grid-template-columns: 1fr 1fr; } .form .form__full { grid-column: 1 / -1; } }
.form label { display: block; font-size: 14px; font-weight: 600; color: var(--cream); margin-bottom: 8px; }
.form input, .form select, .form textarea {
  width: 100%; background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--radius); color: var(--cream);
  padding: 14px 16px; font: inherit; font-size: 16px; min-height: 52px;
  transition: border-color .2s, box-shadow .2s;
}
.form select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23A89E90' stroke-width='2' fill='none'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form textarea { min-height: 130px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none; border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(255, 176, 32, .15);
}
.form ::placeholder { color: var(--muted-2); }
.form__error { color: #E58C8C; font-size: 13px; margin-top: 6px; display: none; }
.form .is-invalid input, .form .is-invalid select { border-color: rgba(214, 69, 69, .6); }
.form .is-invalid .form__error { display: block; }
.form-success {
  display: none; text-align: center; padding: var(--s8) var(--s4);
  background: var(--surface-1); border: 1px solid rgba(127, 217, 154, .35);
  border-radius: var(--radius-lg);
}
.form-success.is-shown { display: block; }
.form-success__bolt { width: 44px; height: 44px; margin: 0 auto var(--s3); color: var(--green); }

/* ---------- Subpage hero ---------- */
.page-hero { padding: calc(var(--nav-h) + var(--s10)) 0 var(--s8); position: relative; overflow: hidden; }
.page-hero h1 { font-size: clamp(34px, 5.6vw, 60px); max-width: 18ch; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 var(--s3); padding: 0; font-size: 13.5px; color: var(--muted-2); }
.breadcrumb a { color: var(--muted-2); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: var(--line); }

/* ---------- Web-design page extras ---------- */
.compare {
  display: grid; gap: var(--s3); align-items: stretch;
}
@media (min-width: 760px) { .compare { grid-template-columns: 1fr 1fr; } }
.compare__panel {
  border-radius: var(--radius-lg); border: 1px solid var(--line);
  padding: var(--s4); background: var(--surface-1);
}
.compare__panel--after { border-color: rgba(255, 176, 32, .35); background: linear-gradient(180deg, #221D15, var(--surface-1) 60%); }
.compare__label { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; font-weight: 700; margin-bottom: var(--s2); }
.compare__panel--before .compare__label { color: var(--muted-2); }
.compare__panel--after .compare__label { color: var(--amber); }
.compare ul { list-style: none; margin: 0; padding: 0; font-size: 15px; }
.compare li { padding: 9px 0 9px 26px; position: relative; border-bottom: 1px solid rgba(50, 44, 37, .6); }
.compare li:last-child { border: 0; }
.compare__panel--before li::before { content: "×"; position: absolute; left: 2px; color: var(--muted-2); }
.compare__panel--after li::before {
  content: ""; position: absolute; left: 0; top: 16px; width: 13px; height: 10px;
  background: var(--amber); clip-path: polygon(57% 0, 0 60%, 38% 60%, 30% 100%, 100% 36%, 55% 36%);
}

/* ---------- Niche chips ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 14px; padding: 10px 18px; border-radius: 100px;
  background: var(--surface-1); border: 1px solid var(--line); color: var(--muted);
  transition: border-color .2s, color .2s, transform .3s var(--ease);
}
a.chip:hover { border-color: var(--amber-deep); color: var(--cream); transform: translateY(-2px); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Prose (legal pages / blog scaffold) ---------- */
.prose { max-width: 70ch; }
.prose h2 { font-size: 26px; margin-top: var(--s6); }
.prose h3 { font-size: 19px; margin-top: var(--s4); }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 8px; }

/* Highlighted verbatim clause (A2P-required SMS data sharing language) */
.legal-quote {
  border-left: 4px solid var(--amber);
  background: rgba(255, 176, 32, .06);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: var(--s3);
  margin: var(--s2) 0;
  color: var(--cream);
  font-weight: 500;
}
.legal-card {
  background: var(--surface-1); border: 1px solid var(--line);
  border-radius: var(--radius); padding: var(--s3); margin: var(--s2) 0;
}
.legal-card h3 { margin-top: 0; }

/* ---------- GoHighLevel chat widget (compliance embed, visually muted) ----------
   The GHL snippet (before </body> on every page except /contact/) stays
   loaded so the install is detectable; these rules keep the launcher quiet
   without breaking it:
   - Desktop: dimmed until hovered or focused.
   - Under 940px: visually hidden so it can't sit on top of the sticky call
     bar (the script still loads). Delete the media block to show it on
     phones too.
   Appearance/position/size are configured in the GHL dashboard
   (Sites → Chat Widget), not here.
   Note: opacity only on desktop. Never apply transform/filter to
   chat-widget — it re-anchors the widget's fixed-position bubble and can
   push it off screen. */
chat-widget { opacity: .4; transition: opacity .3s ease; }
chat-widget:hover, chat-widget:focus-within { opacity: 1; }
@media (max-width: 939px) { chat-widget { display: none; } }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__bolt .bolt-stroke { stroke-dashoffset: 0; animation: none; }
}
