:root {
  --ink: #11100e;
  --muted: #756f65;
  --paper: #f4efe6;
  --panel: rgba(255, 252, 246, 0.78);
  --line: rgba(17, 16, 14, 0.1);
  --dark: #0d0c0a;
  --dark-2: #17140f;
  --gold: #d6b66b;
  --gold-2: #b8924d;
  --soft-gold: rgba(214, 182, 107, 0.16);
  --shadow: 0 24px 80px rgba(17, 16, 14, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(214, 182, 107, 0.16), transparent 34%),
    linear-gradient(180deg, #fbf7ef 0%, var(--paper) 520px);
  font-family: "Noto Sans SC", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

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

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(251, 247, 239, 0.86);
  border-bottom: 1px solid rgba(17, 16, 14, 0.08);
  backdrop-filter: blur(22px);
}

.brand,
.desktop-nav,
.hero-actions,
.cred-row,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}

.brand b {
  letter-spacing: 0.14em;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--dark);
  border-radius: 8px;
  font-weight: 900;
}

.desktop-nav {
  gap: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.desktop-nav a:hover {
  color: var(--ink);
}

.header-cta,
.primary-button,
.secondary-button,
.mobile-cta,
.sticky-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.header-cta,
.primary-button,
.sticky-cta a {
  color: #12100c;
  background: linear-gradient(135deg, #f1d892, var(--gold) 54%, var(--gold-2));
  box-shadow: 0 14px 34px rgba(184, 146, 77, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.56);
}

.header-cta:hover,
.primary-button:hover,
.sticky-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(184, 146, 77, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.secondary-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(17, 16, 14, 0.1);
}

.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(17, 16, 14, 0.08);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.64);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.mobile-nav {
  position: fixed;
  top: 67px;
  right: 16px;
  left: 16px;
  z-index: 29;
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 14px;
  background: rgba(255, 252, 246, 0.96);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 700;
}

.mobile-cta {
  color: var(--ink) !important;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(44px, 6vw, 72px) 0 clamp(42px, 5vw, 64px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 620px;
  margin-bottom: 18px;
  font-size: clamp(36px, 4.2vw, 56px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.18;
  letter-spacing: 0;
}

.hero-lead,
.proof-copy p,
.service-card p,
.consult-copy p,
.final-cta p,
.section-heading p {
  color: var(--muted);
  font-size: 16px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
  margin: 20px 0 20px;
}

.price-chip {
  display: inline-grid;
  grid-template-columns: auto auto auto;
  gap: 10px;
  align-items: baseline;
  margin-top: 22px;
  padding: 12px 15px;
  background: rgba(255, 252, 246, 0.72);
  border: 1px solid rgba(214, 182, 107, 0.28);
  border-radius: 8px;
  box-shadow: 0 14px 36px rgba(17, 16, 14, 0.07);
}

.price-chip span,
.price-chip em {
  color: var(--muted);
  font-size: 13px;
  font-style: normal;
  font-weight: 800;
}

.price-chip strong {
  color: var(--ink);
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0;
}

.cred-row {
  flex-wrap: wrap;
  gap: 9px;
}

.cred-row span {
  padding: 7px 11px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.product-panel {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 10%, rgba(214, 182, 107, 0.15), transparent 34%),
    var(--dark);
  border: 1px solid rgba(214, 182, 107, 0.2);
  border-radius: 8px;
  box-shadow: 0 32px 92px rgba(17, 16, 14, 0.22);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 46px;
  padding: 0 16px;
  color: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.panel-top span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-2);
}

.panel-top span:nth-child(2) {
  background: #d9c37e;
}

.panel-top span:nth-child(3) {
  margin-right: 8px;
  background: #71c69b;
}

.delivery-list {
  display: grid;
  gap: 1px;
  padding: 18px;
}

.delivery-list div {
  display: grid;
  grid-template-columns: 44px 118px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px 16px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 8px;
}

.delivery-list span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.delivery-list strong {
  color: #fff;
  font-size: 17px;
}

.delivery-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
}

.results-section,
.curriculum-section,
.service-section,
.consult-section,
.final-cta,
.proof-section {
  padding: 72px 0;
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.result-grid article,
.curriculum-list div {
  min-height: 176px;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(17, 16, 14, 0.055);
}

.result-grid span,
.curriculum-list span {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 900;
}

.result-grid h2 {
  margin-bottom: 8px;
  font-size: 23px;
}

.result-grid p,
.curriculum-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.method-section {
  padding: 82px 0;
  color: #fff;
  background:
    radial-gradient(circle at 18% 15%, rgba(214, 182, 107, 0.12), transparent 34%),
    var(--dark);
}

.method-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.method-layout h2 {
  max-width: 500px;
}

.method-steps {
  display: grid;
  gap: 12px;
}

.method-steps div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.method-steps strong {
  color: var(--gold);
}

.method-steps span {
  color: rgba(255, 255, 255, 0.66);
}

.proof-section {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.proof-stats div {
  padding: 22px 18px;
  background: #fffaf1;
  border: 1px solid rgba(214, 182, 107, 0.22);
  border-radius: 8px;
}

.proof-stats strong,
.proof-stats span {
  display: block;
}

.proof-stats strong {
  margin-bottom: 8px;
  font-size: 28px;
}

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

.section-heading {
  max-width: 720px;
  margin: 0 auto 30px;
  text-align: center;
}

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

.curriculum-list div {
  display: grid;
  grid-template-columns: 56px 210px 1fr;
  align-items: center;
  min-height: auto;
  padding: 20px 22px;
}

.curriculum-list span {
  margin-bottom: 0;
}

.curriculum-list strong {
  font-size: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  color: #fff;
  background:
    radial-gradient(circle at 18% 20%, rgba(214, 182, 107, 0.16), transparent 34%),
    var(--dark-2);
  border: 1px solid rgba(214, 182, 107, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-card p {
  color: rgba(255, 255, 255, 0.66);
}

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

.service-points span {
  padding: 14px 12px;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

.consult-section {
  display: grid;
  grid-template-columns: 1fr 250px;
  gap: 30px;
  align-items: center;
  padding-right: clamp(28px, 5vw, 58px);
  padding-left: clamp(28px, 5vw, 58px);
  background: #fffaf1;
  border: 1px solid rgba(214, 182, 107, 0.2);
  border-radius: 8px;
  box-shadow: 0 22px 66px rgba(17, 16, 14, 0.08);
}

.consult-copy strong {
  color: var(--ink);
  font-size: 18px;
}

.consult-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.qr-card {
  display: grid;
  gap: 10px;
  justify-items: center;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(17, 16, 14, 0.09);
  border-radius: 8px;
  box-shadow: 0 16px 38px rgba(17, 16, 14, 0.1);
}

.qr-card img {
  width: 202px;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 8px;
}

.qr-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.final-cta {
  margin-bottom: 54px;
  padding-right: clamp(28px, 6vw, 78px);
  padding-left: clamp(28px, 6vw, 78px);
  color: #fff;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(214, 182, 107, 0.2), transparent 36%),
    linear-gradient(135deg, #171410, #080807);
  border: 1px solid rgba(214, 182, 107, 0.2);
  border-radius: 8px;
  box-shadow: 0 34px 96px rgba(17, 16, 14, 0.2);
}

.final-cta p {
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, 0.66);
}

.final-cta .primary-button {
  min-width: 132px;
  margin-top: 8px;
}

.site-footer {
  display: block;
  padding: 30px clamp(18px, 4vw, 56px) 116px;
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content {
  text-align: center;
}

.footer-content p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.footer-content .footer-note {
  color: rgba(255, 255, 255, 0.34);
}

.footer-icp a {
  color: rgba(255, 255, 255, 0.42);
}

.footer-icp,
.police-record {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.footer-icp {
  flex-wrap: wrap;
}

.police-record img {
  width: 16px;
  height: auto;
  opacity: 0.72;
}

.site-footer a:hover {
  color: rgba(255, 255, 255, 0.72);
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 28;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
  background: rgba(251, 247, 239, 0.94);
  border: 1px solid rgba(17, 16, 14, 0.08);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.sticky-cta div {
  display: grid;
  gap: 1px;
}

.sticky-cta span {
  color: var(--muted);
  font-size: 12px;
}

.sticky-cta a {
  min-width: 84px;
  min-height: 40px;
  padding: 0 14px;
}

.sticky-cta .consult-sticky {
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(17, 16, 14, 0.12);
  box-shadow: none;
}

@media (max-width: 980px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero,
  .method-layout,
  .proof-section,
  .service-card,
  .consult-section {
    grid-template-columns: 1fr;
  }

  .result-grid,
  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .product-panel {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  .section-shell {
    width: min(100% - 28px, 1120px);
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand {
    font-size: 14px;
  }

  .hero {
    gap: 28px;
    padding: 40px 0 42px;
  }

  h1 {
    font-size: clamp(32px, 9vw, 40px);
  }

  h2 {
    font-size: clamp(24px, 7vw, 31px);
  }

  .hero-lead,
  .proof-copy p,
  .service-card p,
  .consult-copy p,
  .final-cta p,
  .section-heading p {
    font-size: 15px;
  }

  .hero-actions,
  .consult-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .price-chip {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
  }

  .price-chip strong {
    font-size: 28px;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .delivery-list div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .result-grid,
  .proof-stats,
  .service-points {
    grid-template-columns: 1fr;
  }

  .results-section,
  .curriculum-section,
  .service-section,
  .consult-section,
  .final-cta,
  .proof-section,
  .method-section {
    padding: 52px 0;
  }

  .curriculum-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .consult-section {
    text-align: center;
  }

  .qr-card {
    width: min(100%, 260px);
    margin: 0 auto;
  }

  .qr-card img {
    width: 210px;
  }

  .sticky-cta {
    display: flex;
  }

  .sticky-cta .consult-sticky {
    display: none;
  }
}
