* {
  box-sizing: border-box;
}

:root {
  --bg: #08080a;
  --panel: #111116;
  --panel-2: #19191f;
  --text: #fff9ef;
  --muted: #bcb2a4;
  --muted-2: #8f8578;
  --gold: #d7aa4a;
  --gold-light: #ffd884;
  --gold-dark: #8a6424;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --radius: 26px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.page-glow {
  position: fixed;
  width: 480px;
  height: 480px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 170, 74, 0.2), transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  z-index: -1;
}

.page-glow-one {
  top: -140px;
  left: -140px;
}

.page-glow-two {
  bottom: -180px;
  right: -180px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.94rem;
}

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

.nav-button {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
}

.hero {
  padding-top: 98px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 900;
  font-size: 0.78rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

h1 {
  font-size: clamp(3.4rem, 7.8vw, 7.2rem);
}

h2 {
  font-size: clamp(2.35rem, 5vw, 5rem);
}

h3 {
  font-size: 1.35rem;
}

.subheadline,
.subcopy,
.section-heading p,
.copy-block,
.feature-card p,
.audience-item p,
.step p,
.price-card p,
.price-card li,
.faq-list p,
.contact-section p,
.form-note {
  color: var(--muted);
}

.subheadline {
  font-size: 1.18rem;
  max-width: 700px;
  margin: 28px 0 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 21px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #111;
  border: 0;
  box-shadow: 0 16px 40px rgba(215, 170, 74, 0.22);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
}

.full {
  width: 100%;
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.trust-bar span {
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.88rem;
}

.microcopy {
  color: var(--muted-2);
  max-width: 620px;
  font-size: 0.95rem;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(390px, 86vw);
  aspect-ratio: 9 / 16;
  border-radius: 46px;
  padding: 16px;
  background:
    radial-gradient(circle at top left, rgba(255, 216, 132, 0.22), transparent 44%),
    linear-gradient(180deg, #22222b, #0e0e12);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.phone-screen {
  height: 100%;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.9)),
    radial-gradient(circle at 20% 20%, rgba(215,170,74,0.25), transparent 30%),
    #111;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.video-top {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  color: var(--text);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #ff4545;
}

.caption-stack {
  margin-top: auto;
  font-weight: 1000;
  font-size: clamp(2.1rem, 5vw, 3.3rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
  color: var(--gold-light);
}

.caption-stack span {
  display: block;
}

.video-meta {
  margin-top: 24px;
  color: var(--muted);
}

.progress {
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.12);
  border-radius: 999px;
  overflow: hidden;
}

.progress span {
  display: block;
  width: 62%;
  height: 100%;
  background: var(--gold-light);
  border-radius: inherit;
}

.floating-card {
  position: absolute;
  background: rgba(20,20,26,0.78);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  padding: 16px 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.floating-card strong,
.floating-card span {
  display: block;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.88rem;
}

.card-one {
  top: 90px;
  left: 0;
}

.card-two {
  bottom: 90px;
  right: 0;
}

.logos-section {
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  padding: 22px 0;
  text-align: center;
  color: var(--muted);
}

.two-col,
.process-grid,
.calc-grid,
.contact-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: start;
}

.copy-block {
  font-size: 1.08rem;
}

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

.section-heading {
  max-width: 820px;
  margin-bottom: 38px;
}

.section-heading p {
  font-size: 1.05rem;
}

.feature-grid,
.portfolio-grid,
.pricing-grid,
.objection-grid {
  display: grid;
  gap: 18px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-card,
.audience-item,
.step,
.calc-card,
.price-card,
.objection-card,
.lead-form,
details {
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.feature-card {
  padding: 26px;
}

.icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  background: rgba(215,170,74,0.14);
  color: var(--gold-light);
  border: 1px solid rgba(215,170,74,0.28);
  border-radius: 15px;
  font-weight: 900;
  margin-bottom: 22px;
}

.audience-list {
  display: grid;
  gap: 14px;
}

.audience-item {
  padding: 24px;
}

.portfolio-grid {
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-card {
  min-height: 260px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent, rgba(0,0,0,0.66)),
    radial-gradient(circle at 30% 20%, rgba(215,170,74,0.18), transparent 35%),
    #1a1a20;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.portfolio-card span {
  color: var(--gold-light);
  font-weight: 900;
  margin-bottom: 10px;
}

.portfolio-card strong {
  font-size: 1.25rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.steps {
  display: grid;
  gap: 14px;
}

.step {
  padding: 24px;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
}

.step span {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(215,170,74,0.14);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step p {
  margin-bottom: 0;
}

.calculator-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(215,170,74,0.14), transparent 30%),
    #0c0c10;
}

.calc-card {
  padding: 32px;
}

.calc-card label {
  display: block;
  font-weight: 900;
  margin-bottom: 18px;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--gold);
}

.calc-values {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin: 22px 0;
}

.calc-values span {
  flex: 1;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.05);
  color: var(--muted);
}

.calc-values strong {
  display: block;
  font-size: 2.1rem;
  color: var(--gold-light);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  position: relative;
  padding: 30px;
  background: var(--panel-2);
}

.price-card.featured {
  border-color: rgba(215,170,74,0.78);
  box-shadow: 0 24px 70px rgba(215,170,74,0.12);
  transform: translateY(-12px);
}

.popular {
  position: absolute;
  top: 18px;
  right: 18px;
  background: var(--gold);
  color: #111;
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 900;
}

.package {
  color: var(--gold-light) !important;
  font-weight: 900;
}

.price-card h3 {
  font-size: 3rem;
  margin: 10px 0;
}

.price-card h3 span {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0;
}

.price-card ul {
  padding-left: 20px;
  min-height: 170px;
  margin: 24px 0;
}

.objection-grid {
  grid-template-columns: repeat(3, 1fr);
}

.objection-card {
  padding: 26px;
}

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

details {
  padding: 20px 22px;
}

summary {
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.02em;
}

details p {
  margin-bottom: 0;
}

.contact-section {
  background:
    radial-gradient(circle at 80% 10%, rgba(215,170,74,0.18), transparent 30%),
    #0b0b0e;
}

.contact-methods {
  margin-top: 30px;
  padding: 24px;
  background: rgba(255,255,255,0.045);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-methods p {
  margin: 0 0 10px;
}

.contact-methods p:last-child {
  margin-bottom: 0;
}

.lead-form {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.07);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 14px;
  font: inherit;
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: var(--muted-2);
}

.form-note {
  font-size: 0.9rem;
  text-align: center;
  margin: 0;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

@media (max-width: 980px) {
  .section-pad {
    padding: 72px 0;
  }

  .hero-grid,
  .two-col,
  .process-grid,
  .calc-grid,
  .contact-grid,
  .faq-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .feature-grid,
  .portfolio-grid,
  .pricing-grid,
  .objection-grid {
    grid-template-columns: 1fr;
  }

  .price-card.featured {
    transform: none;
  }

  .hero-visual {
    min-height: auto;
  }

  .floating-card {
    display: none;
  }
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    inset: 76px 20px auto;
    padding: 20px;
    background: rgba(17,17,22,0.98);
    border: 1px solid var(--line);
    border-radius: 22px;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-links.open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 5rem);
  }

  .cta-row {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .calc-values,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}


.about-section {
  background:
    linear-gradient(135deg, rgba(215,170,74,0.08), transparent 45%),
    #0a0a0d;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 68px;
  align-items: center;
}

.about-lead {
  color: var(--gold-light);
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  line-height: 1.18;
  letter-spacing: -0.04em;
  font-weight: 850;
  margin-top: 26px;
}

.about-panel {
  padding: 34px;
  border-radius: var(--radius);
  border: 1px solid rgba(215,170,74,0.28);
  background:
    radial-gradient(circle at top left, rgba(215,170,74,0.15), transparent 34%),
    rgba(255,255,255,0.045);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
}

.about-panel p {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-panel p:first-child {
  margin-top: 0;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-values span {
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(215,170,74,0.12);
  border: 1px solid rgba(215,170,74,0.25);
  color: var(--gold-light);
  font-size: 0.86rem;
  font-weight: 900;
}
