:root {
  --black: #050505;
  --black-soft: #0B0B0B;
  --black-deep: #020202;
  --graphite: #151515;
  --graphite2: #202020;
  --gold: #D4AF37;
  --gold-dark: #8A6A19;
  --gold-light: #F1D36B;
  --gold-glow: rgba(212, 175, 55, 0.18);
  --gold-border: rgba(212, 175, 55, 0.35);
  --white: #FFFFFF;
  --text: #EAEAEA;
  --gray-light: #CFCFCF;
  --gray: #8D8D8D;
  --gray-dark: #444;
  --font-display: 'Cinzel', serif;
  --font-serif: 'Cormorant Garamond', serif;
  --font-body: 'Inter', sans-serif;
  --radius: 10px;
  --radius-lg: 18px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top center, rgba(212,175,55,0.08), transparent 32%),
    radial-gradient(circle at bottom left, rgba(212,175,55,0.06), transparent 30%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='420' height='420'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='420' height='420' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
  opacity: 0.95;
}

section,
header,
footer {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 100vw;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, .display {
  font-family: var(--font-display);
}

h1 {
  font-size: clamp(2.55rem, 7vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0.015em;
  color: var(--white);
  font-weight: 800;
  overflow-wrap: break-word;
}

h2 {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  color: var(--white);
  font-weight: 700;
  overflow-wrap: break-word;
}

h3 {
  color: var(--white);
  letter-spacing: 0.06em;
  font-size: 1rem;
}

p {
  color: var(--gray-light);
  font-size: 1rem;
}

.section {
  padding: clamp(72px, 8vw, 105px) 0;
  overflow-x: hidden;
}

.section-dark {
  background: rgba(11,11,11,0.92);
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}

.section-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.section-header p {
  margin-top: 18px;
  color: #D8D8D8;
  font-size: 1.06rem;
}

.divider {
  width: 72px;
  height: 1px;
  margin: 26px auto;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  transition: var(--transition);
  min-height: 54px;
  text-align: center;
  line-height: 1.35;
}

.btn-primary {
  color: #080808;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  box-shadow: 0 0 26px rgba(212,175,55,0.28), inset 0 1px 0 rgba(255,255,255,0.28);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 46px rgba(212,175,55,0.48), inset 0 1px 0 rgba(255,255,255,0.35);
}

.btn-outline {
  color: var(--gold);
  background: rgba(212,175,55,0.04);
  border: 1px solid var(--gold-border);
}

.btn-outline:hover {
  background: rgba(212,175,55,0.13);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.mini-note {
  font-size: 0.82rem;
  color: #AFAFAF;
  font-weight: 500;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  z-index: 1000;
  transition: background 0.35s ease, border-color 0.35s ease;
  background: rgba(5,5,5,0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

#header.scrolled {
  background: rgba(5,5,5,0.96);
  border-bottom: 1px solid var(--gold-border);
}

.header-inner {
  height: 78px;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.18em;
  color: var(--white);
  white-space: nowrap;
}

.logo span {
  color: var(--gold);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-family: var(--font-display);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #D8D8D8;
  transition: 0.25s;
  font-weight: 600;
}

nav a:hover {
  color: var(--gold);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-cta .btn {
  padding: 10px 20px;
  min-height: 42px;
  font-size: 0.66rem;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 6px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.mobile-nav {
  display: flex;
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100vw;
  padding: 22px 24px;
  background: rgba(5,5,5,0.98);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--gold-border);
  flex-direction: column;
  gap: 18px;
  z-index: 999;
  transform: translateY(-130%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 128px 0 90px;
  overflow: hidden;
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.25), rgba(0,0,0,0.9)),
    radial-gradient(circle at 50% 32%, rgba(212,175,55,0.13), transparent 34%);
  z-index: 0;
}

#hero::after {
  content: "✝";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-size: clamp(18rem, 38vw, 34rem);
  color: rgba(212,175,55,0.025);
  z-index: 0;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}

.hero-eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 700;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 42px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
  flex-shrink: 0;
}

.hero-eyebrow::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero-title em {
  color: var(--gold);
  font-style: normal;
  display: block;
  text-shadow: 0 0 24px rgba(212,175,55,0.22);
}

.hero-sub {
  max-width: 720px;
  margin: 30px auto 16px;
  color: #F0F0F0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  font-weight: 500;
  line-height: 1.8;
}

.hero-product {
  max-width: 760px;
  margin: 0 auto 32px;
  color: #CFCFCF;
  font-size: 1rem;
}

.hero-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.18rem, 2.5vw, 1.55rem);
  color: var(--gold-light);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.5;
  text-shadow: 0 0 18px rgba(212,175,55,0.12);
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-pill {
  border: 1px solid rgba(212,175,55,0.22);
  background: rgba(255,255,255,0.04);
  color: #CFCFCF;
  font-size: 0.78rem;
  padding: 8px 12px;
  border-radius: 999px;
}

.pain-grid,
.receive-grid,
.benefits-grid,
.challenge-grid,
.timeline {
  display: grid;
  gap: 18px;
}

.pain-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.receive-grid,
.benefits-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.challenge-grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.timeline {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.pain-card {
  background: rgba(21,21,21,0.94);
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  min-height: 190px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pain-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: 0.3s;
}

.pain-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
  box-shadow: 0 24px 60px rgba(0,0,0,0.42), 0 0 30px rgba(212,175,55,0.07);
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-card strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.96rem;
  margin-bottom: 12px;
  letter-spacing: 0.07em;
}

.pain-card p {
  color: #CFCFCF;
  font-size: 0.94rem;
}

.system-box {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.system-main {
  background: linear-gradient(145deg, rgba(21,21,21,0.96), rgba(5,5,5,0.98));
  border: 1px solid var(--gold-border);
  border-radius: 22px;
  padding: clamp(30px, 4vw, 42px);
  position: relative;
  overflow: hidden;
}

.system-main::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -30%;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(212,175,55,0.16), transparent 68%);
  pointer-events: none;
}

.system-main h2 {
  margin-bottom: 22px;
}

.system-main p {
  color: #E0E0E0;
  font-size: 1.02rem;
  margin-bottom: 18px;
}

.system-list {
  display: grid;
  gap: 14px;
  align-content: start;
}

.system-item {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 14px;
  padding: 18px 20px;
  min-height: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.system-item h3 {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.system-item p {
  color: #D6D6D6;
  font-size: 0.92rem;
  line-height: 1.55;
}

.parchment-scroll {
  position: relative;
  margin-top: 10px;
  border-radius: 18px;
  overflow: hidden;
  perspective: 900px;
}

.parchment-body {
  position: relative;
  padding: 30px 26px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #d8b66a 0%, #f3dfaa 36%, #c9973d 100%);
  border: 1px solid rgba(212,175,55,0.58);
  box-shadow:
    inset 0 0 26px rgba(70, 42, 8, 0.28),
    0 22px 55px rgba(0,0,0,0.38),
    0 0 34px rgba(212,175,55,0.10);
  color: #15100a;
  transform-origin: top center;
  transform: rotateX(-76deg) scaleY(0.55);
  opacity: 0;
  transition:
    transform 0.95s cubic-bezier(.19,1,.22,1),
    opacity 0.55s ease,
    box-shadow 0.75s ease;
}

.parchment-scroll.visible .parchment-body {
  transform: rotateX(0deg) scaleY(1);
  opacity: 1;
  box-shadow:
    inset 0 0 26px rgba(70, 42, 8, 0.22),
    0 24px 60px rgba(0,0,0,0.46),
    0 0 42px rgba(212,175,55,0.18);
}

.parchment-seal {
  width: 42px;
  height: 42px;
  margin: 0 auto -18px;
  position: relative;
  z-index: 2;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  color: #080808;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow:
    0 0 28px rgba(212,175,55,0.34),
    inset 0 1px 0 rgba(255,255,255,0.35);
  transform: scale(0.78);
  opacity: 0;
  transition: 0.6s ease 0.25s;
}

.parchment-scroll.visible .parchment-seal {
  transform: scale(1);
  opacity: 1;
}

.parchment-label {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  color: #5d3a0b;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 900;
}

.parchment-verse {
  color: #111;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.34rem);
  line-height: 1.45;
  font-weight: 800;
  margin-bottom: 8px;
}

.parchment-ref {
  color: #6b430e;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

.parchment-message {
  color: #1b150d;
  font-size: 0.92rem;
  line-height: 1.65;
  font-weight: 600;
}

.receive-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(21,21,21,0.93);
  border: 1px solid rgba(212,175,55,0.22);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  min-height: 230px;
}

.receive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(212,175,55,0.09), transparent 45%);
  pointer-events: none;
}

.receive-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-border);
  box-shadow: 0 20px 55px rgba(0,0,0,0.42);
}

.receive-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: rgba(212,175,55,0.18);
  font-weight: 900;
  margin-bottom: 10px;
}

.receive-card h3 {
  margin-bottom: 10px;
}

.receive-card p {
  color: #D5D5D5;
}

#benefits {
  background:
    radial-gradient(circle at 50% 10%, rgba(212,175,55,0.08), transparent 30%),
    var(--black-soft);
}

.benefit-card {
  position: relative;
  min-height: 235px;
  border-radius: 22px;
  padding: 32px 26px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(20,20,20,0.88), rgba(5,5,5,0.95)),
    radial-gradient(circle at center, rgba(212,175,55,0.05), transparent 60%);
  border: 1px solid rgba(212,175,55,0.18);
  cursor: pointer;
  transition: var(--transition);
}

.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.02), rgba(212,175,55,0.04), rgba(255,255,255,0.01)),
    radial-gradient(circle at 50% 45%, rgba(255,255,255,0.08), transparent 52%);
  filter: blur(12px);
  opacity: 0.88;
  transition: 0.45s;
  pointer-events: none;
}

.benefit-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5,5,5,0.38);
  backdrop-filter: blur(2.6px);
  transition: 0.45s;
  pointer-events: none;
}

.benefit-content {
  position: relative;
  z-index: 2;
  opacity: 0.38;
  filter: blur(1.6px);
  transform: translateY(8px);
  transition: 0.45s;
}

.benefit-card:hover,
.benefit-card:focus-within,
.benefit-card.active {
  transform: translateY(-6px);
  border-color: rgba(212,175,55,0.58);
  box-shadow:
    0 24px 70px rgba(0,0,0,0.6),
    0 0 45px rgba(212,175,55,0.15);
}

.benefit-card:hover::after,
.benefit-card:focus-within::after,
.benefit-card.active::after {
  opacity: 0.06;
  backdrop-filter: blur(0);
}

.benefit-card:hover::before,
.benefit-card:focus-within::before,
.benefit-card.active::before {
  opacity: 0.18;
  filter: blur(0);
}

.benefit-card:hover .benefit-content,
.benefit-card:focus-within .benefit-content,
.benefit-card.active .benefit-content {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.benefit-card h3 {
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 14px;
  text-shadow: 0 0 18px rgba(212,175,55,0.22);
}

.benefit-card p {
  color: #F3F3F3;
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.75;
}

.benefit-hint {
  margin-top: 14px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.challenge-box {
  background: linear-gradient(145deg, rgba(21,21,21,0.96), rgba(5,5,5,0.98));
  border: 1px solid var(--gold-border);
  border-radius: 24px;
  padding: clamp(30px, 4vw, 44px);
}

.challenge {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 16px;
  padding: 20px 16px;
  text-align: center;
  min-height: 135px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.challenge:hover {
  border-color: rgba(212,175,55,0.45);
  background: rgba(212,175,55,0.05);
}

.challenge span {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 8px;
}

.challenge p {
  font-size: 0.86rem;
  color: #D9D9D9;
  font-weight: 500;
}

.plans {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(300px, 1.1fr);
  gap: 24px;
  align-items: stretch;
}

.plan-card {
  background: rgba(21,21,21,0.95);
  border: 1px solid rgba(212,175,55,0.23);
  border-radius: 24px;
  padding: clamp(30px, 4vw, 38px);
  position: relative;
  overflow: hidden;
}

.plan-card.featured {
  border-color: rgba(212,175,55,0.56);
  box-shadow: 0 0 55px rgba(212,175,55,0.08);
}

.plan-label {
  display: inline-block;
  color: #080808;
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.plan-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.plan-price {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 2.35rem;
  font-weight: 900;
  margin: 20px 0 16px;
}

.plan-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
}

.plan-card li {
  color: #E2E2E2;
  font-size: 0.94rem;
  font-weight: 500;
  padding-left: 25px;
  position: relative;
}

.plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 900;
}

.step {
  background: rgba(21,21,21,0.94);
  border: 1px solid rgba(212,175,55,0.24);
  border-radius: 22px;
  padding: 32px;
  transition: var(--transition);
  min-height: 250px;
}

.step:hover {
  transform: translateY(-5px);
  border-color: var(--gold-border);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.3rem;
  color: rgba(212,175,55,0.18);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
}

.step h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.step p {
  color: #D7D7D7;
}

.realism {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 24px;
  padding: clamp(32px, 5vw, 46px);
  background: rgba(21,21,21,0.86);
}

.realism p {
  color: #ECECEC;
  font-size: 1.08rem;
  font-weight: 500;
}

.realism strong {
  color: var(--gold-light);
}

#form-section {
  background:
    radial-gradient(circle at center, rgba(212,175,55,0.08), transparent 35%),
    var(--black);
}

.form-wrapper {
  max-width: 640px;
  width: 100%;
  margin: 0 auto;
  background: rgba(21,21,21,0.96);
  border: 1px solid rgba(212,175,55,0.42);
  border-radius: 26px;
  padding: clamp(30px, 5vw, 50px);
  box-shadow: 0 30px 90px rgba(0,0,0,0.58);
  position: relative;
  overflow: visible;
}

.form-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.form-header {
  text-align: center;
  margin-bottom: 34px;
}

.form-header p {
  color: #E0E0E0;
  font-weight: 500;
  margin-top: 12px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  font-weight: 800;
}

input {
  width: 100%;
  min-height: 54px;
  background: rgba(5,5,5,0.85);
  border: 1px solid rgba(212,175,55,0.32);
  border-radius: 12px;
  color: var(--white);
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;
  transition: 0.25s;
  font-family: var(--font-body);
}

input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.11);
}

input::placeholder {
  color: #777;
}

.native-select-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  height: 0;
  min-height: 0;
  padding: 0;
  border: 0;
}

.custom-select {
  position: relative;
  width: 100%;
  z-index: 20;
}

.custom-select-trigger {
  width: 100%;
  min-height: 54px;
  background: rgba(5,5,5,0.85);
  border: 1px solid rgba(212,175,55,0.32);
  border-radius: 12px;
  color: var(--white);
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;
  transition: 0.25s;
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
}

.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(212,175,55,0.11);
}

.custom-select-arrow {
  color: var(--gold);
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.custom-select.open .custom-select-arrow {
  transform: rotate(180deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: rgba(8,8,8,0.98);
  border: 1px solid rgba(212,175,55,0.36);
  border-radius: 14px;
  overflow: hidden;
  box-shadow:
    0 24px 70px rgba(0,0,0,0.58),
    0 0 30px rgba(212,175,55,0.10);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  max-height: 260px;
  overflow-y: auto;
  z-index: 999;
}

.custom-select.open .custom-select-options {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.custom-select-options button {
  width: 100%;
  background: transparent;
  border: 0;
  color: #E8E8E8;
  padding: 14px 16px;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.96rem;
  cursor: pointer;
  transition: 0.22s ease;
}

.custom-select-options button:hover,
.custom-select-options button.selected {
  color: #080808;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
}

.custom-select-options::-webkit-scrollbar {
  width: 8px;
}

.custom-select-options::-webkit-scrollbar-track {
  background: #0B0B0B;
}

.custom-select-options::-webkit-scrollbar-thumb {
  background: rgba(212,175,55,0.45);
  border-radius: 999px;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 18px 0 24px;
}

.checkbox-row input:not(.consent-checkbox) {
  width: 18px;
  min-width: 18px;
  min-height: 18px;
  height: 18px;
  margin-top: 4px;
  accent-color: var(--gold);
}

.checkbox-row label {
  color: #CFCFCF;
  font-size: 0.86rem;
  line-height: 1.55;
}

.consent-row {
  margin: 20px 0 24px;
}

.consent-checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

.custom-check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  margin-top: 2px;
  border-radius: 50%;
  border: 1.5px solid rgba(212, 175, 55, 0.45);
  background:
    radial-gradient(circle at center, rgba(212,175,55,0.08), rgba(5,5,5,0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.25s ease;
  position: relative;
  overflow: hidden;
}

.custom-check::before {
  content: "";
  position: absolute;
  inset: -10px;
  background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 58%);
  opacity: 0;
  transform: scale(0.4);
  transition: 0.35s ease;
}

.check-icon {
  width: 17px;
  height: 17px;
  position: relative;
  z-index: 2;
}

.check-icon path {
  fill: none;
  stroke: #050505;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset 0.35s ease 0.08s;
}

.consent-text {
  color: #D8D8D8;
  font-size: 0.88rem;
  line-height: 1.6;
  font-weight: 500;
}

.consent-text strong {
  color: var(--gold-light);
  letter-spacing: 0.04em;
}

.consent-label:hover .custom-check {
  border-color: var(--gold);
  box-shadow: 0 0 18px rgba(212,175,55,0.18);
}

.consent-checkbox:checked + .consent-label .custom-check {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
  border-color: var(--gold-light);
  box-shadow:
    0 0 22px rgba(212,175,55,0.42),
    inset 0 1px 0 rgba(255,255,255,0.35);
  transform: scale(1.06);
}

.consent-checkbox:checked + .consent-label .custom-check::before {
  opacity: 1;
  transform: scale(1);
}

.consent-checkbox:checked + .consent-label .check-icon path {
  stroke-dashoffset: 0;
}

.consent-checkbox:checked + .consent-label .consent-text {
  color: #FFFFFF;
}

.consent-checkbox:focus-visible + .consent-label .custom-check {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.form-submit {
  width: 100%;
  max-width: 100%;
}

.form-micro {
  text-align: center;
  margin-top: 16px;
  font-size: 0.82rem;
  color: #AFAFAF;
}

.field-error {
  display: none;
  margin-top: 6px;
  color: #ff7777;
  font-size: 0.78rem;
}

.field-error.visible {
  display: block;
}

.form-success {
  display: none;
  text-align: center;
  padding-top: 14px;
}

.form-success.visible {
  display: block;
}

.success-icon {
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50%;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(212,175,55,0.14);
}

.faq-question {
  width: 100%;
  padding: 24px 0;
  color: var(--white);
  background: transparent;
  border: none;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  width: 24px;
  min-width: 24px;
  height: 24px;
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: 0.3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding-bottom 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 320px;
  padding-bottom: 24px;
}

.faq-answer p {
  color: #D9D9D9;
  max-width: 720px;
}

.final-cta {
  text-align: center;
  padding: clamp(76px, 9vw, 100px) 0;
  background:
    radial-gradient(circle at center, rgba(212,175,55,0.11), transparent 36%),
    var(--black-deep);
}

.final-cta h2 {
  max-width: 760px;
  margin: 0 auto 22px;
}

.final-cta p {
  max-width: 620px;
  margin: 0 auto 34px;
  color: #E4E4E4;
  font-weight: 500;
}

footer {
  background: var(--black);
  border-top: 1px solid rgba(212,175,55,0.22);
  padding: 54px 0 32px;
  text-align: center;
}

.footer-logo {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: 0.18em;
  font-weight: 900;
  margin-bottom: 14px;
}

.footer-logo span {
  color: var(--gold);
}

.footer-tagline {
  color: #BFBFBF;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  margin-bottom: 26px;
}

.footer-social {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.footer-social a {
  border: 1px solid rgba(212,175,55,0.2);
  color: #BFBFBF;
  padding: 9px 14px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transition: 0.25s;
}

.footer-social a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.footer-copy {
  color: #666;
  font-size: 0.78rem;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

@media (min-width: 1180px) {
  .challenge-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (min-width: 900px) and (max-width: 1179px) {
  .challenge-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .challenge {
    padding: 18px 12px;
  }
}

@media (max-width: 980px) {
  .system-box,
  .plans {
    grid-template-columns: 1fr;
  }

  nav {
    gap: 18px;
  }

  nav a {
    font-size: 0.65rem;
  }

  .header-cta .btn {
    display: none;
  }
}

@media (max-width: 760px) {
  .container {
    padding-left: 18px;
    padding-right: 18px;
    max-width: 100%;
  }

  .header-inner {
    height: 68px;
    min-height: 68px;
  }

  .logo {
    font-size: 0.82rem;
    letter-spacing: 0.12em;
  }

  nav,
  .header-cta .btn {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    top: 68px;
  }

  #hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 76px;
  }

  #hero::after {
    font-size: 18rem;
  }

  .hero-eyebrow {
    letter-spacing: 0.16em;
    font-size: 0.58rem;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    width: 18px;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.3rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  p {
    font-size: 0.98rem;
  }

  .hero-sub {
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-product {
    font-size: 0.95rem;
  }

  .hero-quote {
    font-size: 1.12rem;
  }

  .btn {
    width: 100%;
    max-width: 360px;
    padding: 15px 18px;
    font-size: 0.72rem;
  }

  .hero-btns {
    width: 100%;
    align-items: center;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-pill {
    font-size: 0.72rem;
    padding: 7px 10px;
  }

  .section-header {
    margin-bottom: 42px;
  }

  .section-header p {
    font-size: 0.98rem;
  }

  .pain-grid,
  .receive-grid,
  .benefits-grid,
  .challenge-grid,
  .timeline {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pain-card,
  .receive-card,
  .benefit-card,
  .step {
    min-height: auto;
  }

  .pain-card,
  .receive-card,
  .step {
    padding: 24px 20px;
  }

  .system-list {
    gap: 12px;
  }

  .system-item {
    padding: 18px;
  }

  .parchment-scroll {
    margin-top: 4px;
  }

  .parchment-body {
    padding: 26px 20px;
    border-radius: 16px;
  }

  .parchment-message {
    font-size: 0.9rem;
  }

  .custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  margin-top: 0;
  max-height: 240px;
  z-index: 999;
}

  .challenge {
    min-height: auto;
    padding: 18px 14px;
  }

  .benefit-card {
    min-height: 210px;
    padding: 28px 22px;
  }

  .benefit-content {
    opacity: 0.42;
    filter: blur(1.2px);
    transform: none;
  }

  .benefit-card.active .benefit-content {
    opacity: 1;
    filter: blur(0);
    transform: none;
  }

  .benefit-card.active {
    transform: none;
    border-color: rgba(212,175,55,0.58);
    box-shadow: 0 0 34px rgba(212,175,55,0.14);
  }

  .pain-card:hover,
  .receive-card:hover,
  .benefit-card:hover,
  .step:hover,
  .btn-primary:hover,
  .btn-outline:hover {
    transform: none;
  }

  .reveal {
    transform: translateY(18px);
  }

  .reveal.visible {
    transform: none;
  }

  .plan-card .btn,
  .form-submit {
    max-width: 100%;
  }

  .checkbox-row {
    align-items: flex-start;
  }

  .faq-question {
    font-size: 0.83rem;
    line-height: 1.45;
  }
}

@media (max-width: 420px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .logo {
    font-size: 0.76rem;
    letter-spacing: 0.09em;
  }

  .hero-eyebrow {
    font-size: 0.52rem;
    letter-spacing: 0.12em;
  }

  .hero-eyebrow::before,
  .hero-eyebrow::after {
    display: none;
  }

  h1 {
    font-size: clamp(2rem, 13vw, 3rem);
  }

  h2 {
    font-size: clamp(1.5rem, 9vw, 2.15rem);
  }

  .system-main,
  .challenge-box,
  .plan-card,
  .form-wrapper,
  .realism {
    border-radius: 20px;
  }

  .receive-number,
  .step-number {
    font-size: 2.5rem;
  }
}

/* SEÇÃO VERDADE — VÍDEO SEM DEPOIMENTOS FALSOS */

.truth-section {
  background:
    radial-gradient(circle at 50% 20%, rgba(212,175,55,0.08), transparent 34%),
    linear-gradient(180deg, rgba(5,5,5,1), rgba(11,11,11,0.96));
  position: relative;
  overflow: hidden;
}

.truth-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(212,175,55,0.04), transparent),
    radial-gradient(circle at bottom right, rgba(212,175,55,0.07), transparent 36%);
  pointer-events: none;
}

.truth-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 34px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.truth-content {
  background: linear-gradient(145deg, rgba(21,21,21,0.92), rgba(5,5,5,0.96));
  border: 1px solid rgba(212,175,55,0.25);
  border-radius: 24px;
  padding: clamp(30px, 4vw, 44px);
  box-shadow:
    0 26px 80px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.03);
  position: relative;
  overflow: hidden;
}

.truth-content::before {
  content: "";
  position: absolute;
  top: -35%;
  left: -25%;
  width: 330px;
  height: 330px;
  background: radial-gradient(circle, rgba(212,175,55,0.13), transparent 68%);
  pointer-events: none;
}

.truth-content h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.truth-intro {
  position: relative;
  z-index: 2;
  color: #E2E2E2;
  font-size: 1rem;
  line-height: 1.78;
  margin-bottom: 16px;
  font-weight: 500;
}

.truth-points {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.truth-point {
  border: 1px solid rgba(212,175,55,0.2);
  background: rgba(255,255,255,0.035);
  border-radius: 16px;
  padding: 18px 14px;
  transition: var(--transition);
}

.truth-point:hover {
  border-color: rgba(212,175,55,0.5);
  background: rgba(212,175,55,0.06);
  transform: translateY(-3px);
}

.truth-point span {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 900;
  margin-bottom: 8px;
  font-size: 0.85rem;
}

.truth-point p {
  color: #E6E6E6;
  font-size: 0.84rem;
  line-height: 1.55;
  font-weight: 600;
}

.truth-video-card {
  position: relative;
  border-radius: 26px;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(212,175,55,0.26), rgba(21,21,21,0.95), rgba(212,175,55,0.12));
  border: 1px solid rgba(212,175,55,0.38);
  box-shadow:
    0 30px 90px rgba(0,0,0,0.62),
    0 0 45px rgba(212,175,55,0.12);
  overflow: hidden;
}

.truth-video-card::before {
  content: "";
  position: absolute;
  inset: -80px;
  background:
    radial-gradient(circle at top, rgba(241,211,107,0.14), transparent 34%),
    radial-gradient(circle at bottom right, rgba(212,175,55,0.12), transparent 38%);
  pointer-events: none;
}

.truth-video-frame {
  position: relative;
  z-index: 2;
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255,255,255,0.08);
}

.truth-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.truth-video-caption {
  position: relative;
  z-index: 2;
  padding: 18px 8px 4px;
}

.truth-video-caption span {
  display: block;
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 6px;
}

.truth-video-caption p {
  color: #DADADA;
  font-size: 0.9rem;
  line-height: 1.55;
}

.truth-cta {
  position: relative;
  z-index: 2;
  margin: 36px auto 0;
  max-width: 760px;
  text-align: center;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid rgba(212,175,55,0.22);
  background: rgba(255,255,255,0.035);
}

.truth-cta p {
  color: #F0F0F0;
  font-weight: 500;
  margin-bottom: 20px;
}

@media (max-width: 980px) {
  .truth-box {
    grid-template-columns: 1fr;
  }

  .truth-video-card {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .truth-points {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 760px) {
  .truth-content {
    padding: 30px 22px;
    border-radius: 22px;
  }

  #form-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.form-wrapper {
  padding: 28px 20px;
}

.form-header {
  margin-bottom: 24px;
}

.form-header p {
  font-size: 0.92rem;
  line-height: 1.55;
  margin-top: 10px;
}

.form-group {
  margin-bottom: 16px;
}

.consent-row {
  margin: 16px 0 20px;
}

.form-micro {
  margin-top: 12px;
}

  .truth-points {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .truth-point {
    padding: 16px 14px;
  }

  .truth-point:hover {
    transform: none;
  }

  .truth-video-card {
    padding: 10px;
    border-radius: 22px;
  }

  .truth-video-frame {
    border-radius: 16px;
  }

  .truth-video-caption {
    padding: 16px 4px 4px;
  }

  .truth-cta {
    padding: 24px 18px;
  }

  .truth-cta .btn {
    width: 100%;
    max-width: 360px;
  }
}

@media (max-width: 420px) {
  .truth-content {
    padding: 28px 18px;
  }

  .truth-video-card {
    padding: 8px;
  }

  .truth-video-caption p {
    font-size: 0.86rem;
  }
}