:root {
  --bg: #0a0a09;
  --surface: #111110;
  --surface-2: #191917;
  --surface-3: #22221f;
  --gold: #e0a820;
  --gold-strong: #f0bd36;
  --gold-soft: rgba(224, 168, 32, 0.10);
  --gold-border: rgba(224, 168, 32, 0.34);
  --text: #f4f3ed;
  --muted: #c1c0b8;
  --subtle: #93928a;
  --green: #25d366;
  --danger: #ff9c7a;
  --line: rgba(255, 255, 255, 0.09);
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 20px 54px rgba(0, 0, 0, 0.28);
  --max: 1120px;
  --reading: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-width: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--gold-strong);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  inset: 10px auto auto 10px;
  z-index: 999;
  padding: 10px 14px;
  border-radius: 6px;
  background: var(--text);
  color: var(--bg);
  font-weight: 800;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

.reading {
  max-width: var(--reading);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 10, 9, 0.94);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.topbar-row {
  min-height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: var(--gold);
  color: #080807;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-copy {
  min-width: 0;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
}

.brand-copy span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.main-nav a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a:hover {
  color: var(--text);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 20px;
  background: var(--gold);
  color: #080807;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.header-cta {
  min-height: 42px;
  padding: 9px 16px;
  background: var(--gold);
  font-size: 13px;
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(224, 168, 32, 0.20);
}

.btn:hover,
.header-cta:hover {
  background: var(--gold-strong);
}

.btn-secondary {
  border-color: var(--gold-border);
  background: transparent;
  color: var(--gold-strong);
}

.btn-secondary:hover {
  background: var(--gold-soft);
}

.btn-phone {
  border-color: var(--line);
  background: var(--surface-2);
  color: var(--text);
}

.hero {
  position: relative;
  isolation: isolate;
  padding: clamp(64px, 9vw, 112px) 0 72px;
  background:
    radial-gradient(circle at 88% 18%, rgba(224, 168, 32, 0.12), transparent min(420px, 46vw)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 22px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  flex: 0 0 24px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 6.8vw, 72px);
  font-weight: 700;
  line-height: 0.99;
  letter-spacing: -0.035em;
  overflow-wrap: anywhere;
}

h1 em {
  color: var(--gold-strong);
  font-style: italic;
  font-weight: 600;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.015em;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(17px, 2.1vw, 20px);
  line-height: 1.65;
}

.hero-lead strong {
  color: var(--text);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.qualifier {
  margin: 16px 0 0;
  color: var(--subtle);
  font-size: 13px;
}

.signal-panel {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(25, 25, 23, 0.98), rgba(17, 17, 16, 0.95));
  box-shadow: var(--shadow);
}

.signal-title {
  margin-bottom: 8px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.signal-panel h2 {
  margin-bottom: 18px;
  font-size: 24px;
  line-height: 1.2;
}

.signal-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.signal-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.signal-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px var(--gold-soft);
}

.method-strip {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.method-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method-strip-item {
  min-width: 0;
  padding: 24px;
  text-align: center;
}

.method-strip-item + .method-strip-item {
  border-left: 1px solid var(--line);
}

.method-strip-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--gold-strong);
  font-size: 15px;
}

.method-strip-item span {
  color: var(--muted);
  font-size: 13px;
}

section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.surface-section {
  border-block: 1px solid var(--line);
  background: var(--surface);
}

.section-head {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-label {
  margin-bottom: 10px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.032em;
}

.section-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.card h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.3;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.card-kicker {
  display: block;
  margin-bottom: 12px;
  color: var(--gold-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card {
  min-width: 0;
  min-height: 196px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-border);
  background: var(--surface-3);
}

.service-card h3 {
  margin-bottom: 8px;
  font-size: 19px;
  line-height: 1.25;
}

.service-card p {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 14px;
}

.service-card span {
  margin-top: auto;
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 800;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: steps;
}

.step-card {
  min-width: 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
  counter-increment: steps;
}

.step-card::before {
  content: counter(steps, decimal-leading-zero);
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  place-items: center;
  border: 1px solid var(--gold-border);
  border-radius: 8px;
  background: var(--gold-soft);
  color: var(--gold-strong);
  font-size: 14px;
  font-weight: 900;
}

.step-card h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.warning-box {
  padding: 28px;
  border: 1px solid rgba(255, 156, 122, 0.35);
  border-radius: var(--radius);
  background: rgba(255, 156, 122, 0.06);
}

.warning-box h3 {
  margin-bottom: 10px;
  color: #ffc1ad;
  font-size: 21px;
}

.warning-box p {
  margin-bottom: 0;
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  min-width: 0;
  overflow: clip;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.proof-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.proof-copy {
  padding: 18px 20px 20px;
}

.proof-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

.proof-copy span {
  color: var(--muted);
  font-size: 13px;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 860px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-2);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--gold-strong);
  font-size: 22px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.price-box {
  max-width: 620px;
  padding: 30px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface-2), var(--surface));
  box-shadow: var(--shadow);
}

.price {
  display: block;
  margin: 8px 0 12px;
  color: var(--gold-strong);
  font-size: clamp(42px, 7vw, 62px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.05em;
}

.price-box p {
  color: var(--muted);
}

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.related-links a {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
}

.related-links a:hover {
  border-color: var(--gold-border);
  color: var(--gold-strong);
}

.final-cta {
  position: relative;
  padding: clamp(64px, 9vw, 100px) 0;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 30%, rgba(224, 168, 32, 0.11), transparent min(460px, 68vw)),
    var(--surface);
  text-align: center;
}

.final-cta .section-head {
  margin-inline: auto;
}

.final-cta .cta-row {
  justify-content: center;
}

.contact-line {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
}

.contact-line a {
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 38px 0;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 32px;
}

.site-footer h2 {
  margin-bottom: 8px;
  font-size: 16px;
}

.site-footer p,
.site-footer a {
  color: var(--subtle);
  font-size: 13px;
}

.site-footer a {
  display: block;
  margin-bottom: 7px;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--text);
}

.footer-legal {
  margin: 28px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 12px;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: #07150c;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.32);
  font-size: 22px;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .header-cta {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .signal-panel {
    max-width: 680px;
  }

  .card-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .topbar-row {
    min-height: 62px;
    gap: 12px;
  }

  .brand-copy {
    font-size: 13px;
  }

  .brand-copy span {
    display: none;
  }

  .header-cta {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .hero {
    padding: 54px 0 48px;
  }

  h1 {
    font-size: clamp(34px, 11.2vw, 48px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .cta-row,
  .cta-row .btn {
    width: 100%;
  }

  .signal-panel {
    padding: 22px;
  }

  .method-strip-grid {
    grid-template-columns: 1fr;
  }

  .method-strip-item {
    padding: 17px 18px;
    text-align: left;
  }

  .method-strip-item + .method-strip-item {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  section {
    padding: 58px 0;
  }

  .card-grid,
  .service-grid,
  .step-grid,
  .proof-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 0;
  }

  .proof-card img {
    aspect-ratio: 16 / 10;
  }

  .wa-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 360px) {
  .wrap {
    width: min(100% - 24px, var(--max));
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .header-cta {
    padding-inline: 10px;
  }

  .header-cta .optional-label {
    display: none;
  }

  h1 {
    font-size: 33px;
  }

  .card,
  .step-card,
  .signal-panel,
  .warning-box,
  .price-box {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
