:root {
  --black: #0d0d0d;
  --black-soft: #171717;
  --ink: #181818;
  --muted: #676767;
  --line: #dedbd4;
  --paper: #f4f2ed;
  --paper-2: #ebe8e1;
  --white: #ffffff;
  --gold: #d6ad62;
  --gold-light: #f0d79f;
  --gold-deep: #a9782f;
  --gold-ink: #70430c;
  --green: #2b9b70;
  --shell: min(1180px, calc(100% - 48px));
  --radius: 22px;
  --shadow: 0 26px 70px rgba(0, 0, 0, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
.has-custom-cursor, .has-custom-cursor a, .has-custom-cursor button, .has-custom-cursor input, .has-custom-cursor select, .has-custom-cursor textarea, .has-custom-cursor summary, .has-custom-cursor video { cursor: none !important; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 112px 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 1000; transform: translateY(-150%); background: var(--white); color: var(--black); padding: 10px 16px; }
.skip-link:focus { transform: none; }
.sr-only { position: absolute !important; width: 1px !important; height: 1px !important; padding: 0 !important; margin: -1px !important; overflow: hidden !important; clip: rect(0,0,0,0) !important; white-space: nowrap !important; border: 0 !important; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: 78px;
  color: var(--white);
  background: rgba(10, 10, 10, .94);
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  backdrop-filter: blur(16px);
}
.header-inner { width: var(--shell); height: 100%; margin-inline: auto; display: grid; grid-template-columns: 240px 1fr auto; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; width: max-content; }
.brand img { width: 58px; height: 58px; object-fit: contain; filter: grayscale(1) brightness(5); }
.brand-wordmark { display: grid; line-height: 1.12; }
.brand-wordmark strong { color: var(--white); font-size: 13px; letter-spacing: .09em; }
.brand-wordmark small { margin-top: 4px; color: var(--gold); font-size: 7px; font-weight: 800; letter-spacing: .13em; }
.desktop-nav { justify-self: center; display: flex; align-items: center; gap: 38px; }
.desktop-nav a { color: rgba(255, 255, 255, .84); font-weight: 600; font-size: 14px; transition: color .2s ease; }
.desktop-nav a:hover { color: var(--gold); }
.header-cta { min-width: 256px; padding: 13px 22px; border: 1px solid rgba(255, 255, 255, .8); border-radius: 999px; text-align: center; color: var(--white); font-size: 14px; font-weight: 800; letter-spacing: .01em; transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease; }
.header-cta:hover { background: var(--white); color: var(--black); border-color: var(--white); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px 0; background: var(--white); }
.mobile-menu { position: fixed; top: 78px; left: 0; right: 0; min-height: calc(100vh - 78px); padding: 36px 24px; color: var(--white); background: var(--black); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: block; padding: 17px 2px; border-bottom: 1px solid rgba(255,255,255,.15); font-weight: 700; }
.mobile-menu .button { margin-top: 24px; border-bottom: 0; text-align: center; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 50% -10%, rgba(214, 173, 98, .18), transparent 38%),
    radial-gradient(circle at 8% 44%, rgba(214, 173, 98, .08), transparent 26%),
    linear-gradient(180deg, #111 0%, #090909 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, #000, transparent 78%); }
.hero-glow { position: absolute; width: 520px; height: 520px; left: 50%; top: 260px; transform: translateX(-50%); border: 1px solid rgba(214,173,98,.18); border-radius: 50%; box-shadow: 0 0 120px rgba(214,173,98,.08); }
.hero-shell { position: relative; z-index: 1; padding: 40px 0 110px; }
.hero-kicker { margin: 0 0 12px; text-align: center; color: var(--gold-light); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.hero h1 { max-width: 1020px; margin: 0 auto; text-align: center; font-size: clamp(38px, 3.7vw, 54px); line-height: 1.04; letter-spacing: -.045em; font-weight: 800; }
.hero h1 span { color: var(--gold); }
.hero-lead { max-width: 920px; margin: 15px auto 25px; color: rgba(255,255,255,.88); text-align: center; font-size: clamp(16px, 1.35vw, 19px); line-height: 1.45; font-weight: 600; }
.hero-offer { max-width: 1120px; margin-inline: auto; display: grid; grid-template-columns: minmax(0, 620px) minmax(0, 472px); gap: 28px; align-items: start; }
.hero-media-stack { height: auto; display: grid; gap: 14px; }
.hero-certificate-preview { position: relative; overflow: hidden; padding: 10px 10px 0; display: block; color: #fff; background: linear-gradient(145deg, #1b1711, #0d0d0d); border: 1px solid rgba(214,173,98,.58); border-radius: 22px; box-shadow: 0 30px 80px rgba(0,0,0,.36), 0 0 34px rgba(214,173,98,.1); text-decoration: none; transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease; }
.hero-certificate-preview:hover, .hero-certificate-preview:focus-visible { transform: translateY(-3px); border-color: var(--gold-light); box-shadow: 0 34px 88px rgba(0,0,0,.4), 0 0 42px rgba(214,173,98,.28); }
.hero-certificate-preview:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 4px; }
.hero-certificate-preview img { width: 100%; height: auto; display: block; aspect-ratio: 960 / 588; object-fit: cover; object-position: center; background: #f7f2eb; border: 1px solid rgba(255,255,255,.26); border-radius: 13px; box-shadow: 0 15px 38px rgba(0,0,0,.24); }
.hero-certificate-caption { min-height: 62px; padding: 11px 8px 12px; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.hero-certificate-caption b { color: var(--gold-light); font-size: 14px; line-height: 1.3; }
.hero-certificate-caption small { color: rgba(255,255,255,.68); font-size: 10px; font-weight: 750; line-height: 1.4; text-align: right; }
.offer-card { position: relative; z-index: 1; overflow: visible; align-self: start; padding: 0 0 19px; display: flex; flex-direction: column; color: var(--ink); background: linear-gradient(155deg, #fff 0%, #f8f4ec 100%); border: 2px solid var(--gold); border-radius: 28px; box-shadow: 0 32px 86px rgba(0,0,0,.28), 0 0 40px rgba(214,173,98,.11); }
.offer-card::before { content: ""; position: absolute; inset: -13px; z-index: -1; border: 2px solid rgba(214,173,98,.58); border-radius: 39px; box-shadow: 0 0 28px rgba(214,173,98,.16); transition: border-color .25s ease, box-shadow .25s ease; }
.offer-card:hover::before { border-color: var(--gold-light); box-shadow: 0 0 46px rgba(214,173,98,.42); }
.offer-card-topline { min-height: 48px; padding: 11px 22px; display: flex; align-items: center; justify-content: space-between; gap: 12px; color: rgba(255,255,255,.74); background: linear-gradient(110deg, #17130e, #0f0f0f); border-radius: 25px 25px 0 0; border-bottom: 1px solid rgba(214,173,98,.45); }
.offer-card-topline > span { font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.offer-card-topline > b { flex: none; padding: 6px 9px; color: #2f210d; background: linear-gradient(135deg, #f4dda9, var(--gold)); border-radius: 999px; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.offer-card-head { padding: 22px 24px 18px; display: grid; gap: 10px; border-bottom: 1px solid rgba(169,120,47,.22); }
.offer-card-head h2 { margin: 0; font-size: 26px; line-height: 1.08; letter-spacing: -.04em; }
.offer-card-head h2 span { display: block; color: var(--gold-deep); }
.offer-card-head p { margin: 0; color: #635c53; font-size: 12.5px; font-weight: 600; line-height: 1.5; }
.offer-value-stack { margin: 17px 19px 13px; display: grid; gap: 9px; }
.offer-value-stack article { min-height: 92px; padding: 12px 13px; display: grid; grid-template-columns: 50px minmax(0,1fr); gap: 13px; align-items: center; background: rgba(255,255,255,.82); border: 1px solid rgba(169,120,47,.24); border-radius: 16px; box-shadow: 0 10px 24px rgba(58,43,20,.055); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.offer-value-stack article:hover { transform: translateY(-2px); border-color: rgba(169,120,47,.62); box-shadow: 0 15px 31px rgba(58,43,20,.1), 0 0 20px rgba(214,173,98,.1); }
.offer-value-icon { width: 50px; height: 50px; display: grid; place-items: center; color: #39280f; background: linear-gradient(145deg, #f6e5bf, var(--gold)); border: 1px solid rgba(169,120,47,.4); border-radius: 15px; box-shadow: inset 0 1px 0 rgba(255,255,255,.75); }
.offer-value-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.55; stroke-linecap: round; stroke-linejoin: round; }
.offer-value-stack article > div { min-width: 0; }
.offer-value-stack small { display: block; margin-bottom: 2px; color: var(--gold-deep); font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.offer-value-stack strong { display: block; font-size: 15px; line-height: 1.26; letter-spacing: -.015em; }
.offer-value-stack p { margin: 3px 0 0; color: #6c655c; font-size: 10px; font-weight: 600; line-height: 1.42; }
.offer-extra-panel { margin: 0 19px 13px; padding: 17px; color: #fff; background: linear-gradient(145deg, #181511, #0e0e0e); border: 1px solid rgba(214,173,98,.48); border-radius: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,.05); }
.offer-extra-panel > span { display: block; margin-bottom: 10px; color: var(--gold-light); font-size: 8px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.offer-extra-panel ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.offer-extra-panel li { position: relative; padding-left: 23px; color: rgba(255,255,255,.82); font-size: 10.5px; font-weight: 700; line-height: 1.35; }
.offer-extra-panel li::before { content: "✓"; position: absolute; left: 0; top: -.12em; color: var(--gold-light); font-size: 15px; font-weight: 900; }
.offer-ipad-bonus { margin-top: 13px; padding: 11px 12px; display: flex; align-items: center; gap: 11px; color: #2c1e0b; background: linear-gradient(120deg, #f5e4bc, var(--gold) 62%, #f1d8a1); border: 1px solid rgba(255,255,255,.45); border-radius: 13px; }
.offer-ipad-bonus .apple-mark { width: 23px; height: 23px; }
.offer-ipad-bonus div { display: grid; line-height: 1.2; }
.offer-ipad-bonus small { font-size: 7px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.offer-ipad-bonus strong { font-size: 13px; }
.offer-outcome { margin: 0 19px 14px; padding: 14px 15px; display: grid; gap: 4px; background: rgba(214,173,98,.13); border-left: 3px solid var(--gold-deep); border-radius: 0 13px 13px 0; }
.offer-outcome span { color: var(--gold-deep); font-size: 8px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.offer-outcome strong { font-size: 12px; line-height: 1.42; }
.offer-actions { margin: 0 19px; display: grid; gap: 9px; }
.offer-actions .button { min-height: 57px; font-size: 13px; box-shadow: 0 16px 34px rgba(169,120,47,.28), 0 0 0 5px rgba(214,173,98,.07); }
.offer-whatsapp-button { min-height: 54px; padding: 11px 16px; display: flex; align-items: center; justify-content: center; gap: 10px; color: #fff; background: linear-gradient(145deg, #2adf78, #159c50); border: 1px solid rgba(255,255,255,.7); border-radius: 999px; box-shadow: 0 13px 28px rgba(10,112,54,.22); font-size: 11.5px; font-weight: 850; transition: transform .22s ease, box-shadow .22s ease; }
.offer-whatsapp-button:hover, .offer-whatsapp-button:focus-visible { transform: translateY(-2px); box-shadow: 0 17px 36px rgba(10,112,54,.34), 0 0 0 5px rgba(42,223,120,.1); }
.offer-whatsapp-button:focus-visible { outline: 3px solid #117d42; outline-offset: 3px; }
.offer-whatsapp-button svg { width: 22px; height: 22px; flex: none; fill: currentColor; }
.offer-whatsapp-button b { font-size: 16px; transition: transform .22s ease; }
.offer-whatsapp-button:hover b, .offer-whatsapp-button:focus-visible b { transform: translateX(3px); }
.offer-reassurance { margin: 12px 22px 0; display: block; color: #746c62; font-size: 8px; font-weight: 750; line-height: 1.4; text-align: center; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li { position: relative; padding: 5px 0 5px 27px; font-size: 12.5px; line-height: 1.4; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 5px; color: var(--green); font-size: 18px; font-weight: 900; }
.investment { margin: 12px 0 13px; padding: 10px 12px; display: flex; justify-content: space-between; gap: 14px; align-items: center; background: #e5e7e2; border-radius: 9px; }
.offer-card .investment { margin-top: auto; }
.investment span { color: var(--muted); font-size: 11px; font-weight: 700; }
.investment strong { font-size: 13px; text-align: right; }
.button { position: relative; overflow: hidden; min-height: 50px; padding: 13px 21px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 0; border-radius: 999px; cursor: pointer; font-size: 13px; font-weight: 800; line-height: 1.25; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button::after { content: ""; position: absolute; top: -50%; left: -65%; width: 38%; height: 200%; transform: skewX(-22deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent); transition: left .65s ease; }
.button:hover::after, .button:focus-visible::after { left: 130%; }
.button:hover { transform: translateY(-2px); }
.button-gold { color: #17120a; background: linear-gradient(135deg, #efd59e, var(--gold)); box-shadow: 0 12px 28px rgba(169,120,47,.22); }
.button-gold:hover { box-shadow: 0 16px 34px rgba(169,120,47,.32); }
.button-dark { color: var(--white); background: var(--black); }
.button-full { width: 100%; }
.button-emotional { min-height: 60px; padding: 15px 28px; font-size: 15px; box-shadow: 0 16px 38px rgba(169,120,47,.3), 0 0 0 7px rgba(214,173,98,.08); animation: cta-breathe 3.8s ease-in-out infinite; }
.button-emotional-dark { box-shadow: 0 17px 38px rgba(0,0,0,.24), 0 0 0 7px rgba(214,173,98,.09); }
.button-emotional:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.button-arrow { width: 29px; height: 29px; flex: none; display: grid; place-items: center; background: rgba(255,255,255,.38); border-radius: 50%; transition: transform .25s ease; }
.button-emotional-dark .button-arrow { color: #17120a; background: var(--gold-light); }
.button-emotional:hover .button-arrow, .button-emotional:focus-visible .button-arrow { transform: translateX(4px); }
@keyframes cta-breathe { 50% { box-shadow: 0 20px 48px rgba(169,120,47,.43), 0 0 0 11px rgba(214,173,98,.07); } }
.video-proof { min-height: 220px; padding: 17px 20px; display: grid; grid-template-columns: .95fr 1.05fr; gap: 16px 22px; align-items: center; color: var(--white); background: #151515; border: 1px solid rgba(214,173,98,.38); border-radius: 22px; }
.hero-certificate-stack .video-proof { min-height: 300px; padding: 28px 30px; gap: 22px 28px; background: radial-gradient(circle at 22% 18%, rgba(214,173,98,.12), transparent 35%), #151515; box-shadow: 0 30px 80px rgba(0,0,0,.34); }
.hero-certificate-stack .video-rating strong { font-size: 27px; }
.hero-certificate-stack .video-rating .stars { font-size: 30px; }
.hero-certificate-stack .video-benefits li { font-size: 14px; }
.hero-certificate-stack .trust-seals { justify-content: center; }
.video-rating { display: grid; justify-items: center; border-right: 1px solid rgba(255,255,255,.14); text-align: center; text-decoration: none; }
.google-rating-mini img { width: 104px; height: auto; margin-bottom: 7px; }
.external-brand img:not([src]) { display: none; }
.external-brand.has-external-media > .external-brand-fallback { display: none; }
.external-brand-fallback { display: inline-flex; align-items: center; justify-content: center; font-style: normal; font-weight: 900; line-height: 1; }
.external-brand-google { color: #f2f2f2; font-size: 23px; letter-spacing: -.04em; }
.google-rating-mini > .external-brand-google { margin-bottom: 8px; }
.video-rating .stars { font-size: 27px; }
.video-rating strong { margin-top: 3px; font-size: 23px; line-height: 1.2; }
.video-rating small { color: rgba(255,255,255,.62); font-size: 11px; }
.video-rating .stars, .rating-badge > span { background: linear-gradient(90deg, #b98431, #f5d892, #b98431); background-size: 220% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; animation: star-shimmer 4.8s ease-in-out infinite; }
@keyframes star-shimmer { 50% { background-position: 100% 0; filter: drop-shadow(0 0 8px rgba(214,173,98,.55)); } }
.video-benefits { list-style: none; margin: 0; padding: 0; display: grid; align-content: center; justify-items: center; gap: 11px; text-align: center; }
.video-benefits li { display: flex; align-items: center; justify-content: center; gap: 10px; color: rgba(255,255,255,.9); font-size: 13px; font-weight: 800; line-height: 1.35; text-align: center; }
.video-benefits li::before { content: "✓"; flex: none; color: var(--gold); font-size: 17px; font-weight: 900; }
.trust-seals { grid-column: 1 / -1; min-width: 0; padding-top: 18px; display: flex; align-items: center; justify-content: flex-start; gap: 26px; border-top: 1px solid rgba(255,255,255,.12); }
.trust-seal-hwk { width: 120px; height: 120px; flex: none; display: grid; place-items: center; }
.trust-seal-hwk > img { width: 120px; height: 120px; object-fit: contain; filter: saturate(1.08) contrast(1.04) drop-shadow(0 0 18px rgba(214,173,98,.38)); }
.trust-chamber-logo { min-width: 0; flex: 1; display: flex; align-items: center; justify-content: flex-start; }
.trust-chamber-logo > img { width: min(100%, 420px); height: auto; max-height: 82px; display: block; object-fit: contain; object-position: left center; filter: drop-shadow(0 0 14px rgba(255,255,255,.08)); }
.stars { color: var(--gold); letter-spacing: .08em; font-size: 14px; }

.value-engine { position: relative; overflow: hidden; padding-bottom: 70px; background: var(--paper); }
.value-engine::before { content: ""; position: absolute; width: 650px; height: 650px; right: -260px; top: -220px; border: 1px solid rgba(214,173,98,.28); border-radius: 50%; box-shadow: 0 0 90px rgba(214,173,98,.09); }
.value-engine-heading { position: relative; max-width: 990px; margin: 0 auto 40px; text-align: center; }
.value-engine-heading > p:last-child { max-width: 840px; margin: 23px auto 0; color: var(--muted); font-size: 18px; }
.revenue-lab { position: relative; margin-top: 0; padding: 42px; display: grid; grid-template-columns: .76fr 1.24fr; gap: 34px 52px; color: var(--white); background: var(--black); border: 1px solid var(--gold-deep); border-radius: 28px; box-shadow: 0 28px 70px rgba(0,0,0,.17); }
.revenue-copy h3 { margin: 0 0 14px; font-size: clamp(28px,3vw,42px); line-height: 1.12; letter-spacing: -.035em; }
.revenue-copy > p:last-child { margin: 0; color: rgba(255,255,255,.72); font-size: 15px; line-height: 1.65; }
.revenue-controls { display: grid; gap: 17px; }
.revenue-controls label { display: grid; gap: 9px; }
.revenue-controls label > span { display: flex; justify-content: space-between; gap: 20px; color: rgba(255,255,255,.78); font-size: 13px; font-weight: 700; }
.revenue-controls output { color: var(--gold-light); font-size: 15px; font-weight: 900; }
.revenue-controls input[type="range"] { width: 100%; height: 5px; appearance: none; background: linear-gradient(90deg, var(--gold-deep), var(--gold-light)); border-radius: 99px; outline: none; }
.revenue-controls input[type="range"]::-webkit-slider-thumb { width: 20px; height: 20px; appearance: none; background: var(--gold-light); border: 4px solid var(--black); outline: 1px solid var(--gold); border-radius: 50%; box-shadow: 0 0 18px rgba(214,173,98,.45); }
.revenue-controls input[type="range"]::-moz-range-thumb { width: 14px; height: 14px; background: var(--gold-light); border: 4px solid var(--black); border-radius: 50%; box-shadow: 0 0 18px rgba(214,173,98,.45); }
.calculated-price { padding: 21px 22px; display: grid; grid-template-columns: 1fr auto; gap: 10px 22px; align-items: center; background: linear-gradient(135deg, rgba(214,173,98,.14), rgba(214,173,98,.06)); border: 1px solid rgba(214,173,98,.58); border-radius: 18px; box-shadow: inset 0 0 28px rgba(214,173,98,.04); }
.calculated-price-label { display: grid; gap: 4px; }
.calculated-price-label > span { color: var(--gold-light); font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.calculated-price-label > small { color: var(--white); font-size: 17px; font-weight: 800; line-height: 1.25; }
.calculated-price > strong { color: var(--gold-light); font-size: clamp(32px, 3vw, 40px); line-height: 1; font-variant-numeric: tabular-nums; }
.calculated-price > p { grid-column: 1 / -1; margin: 2px 0 0; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.5; }
.revenue-results { grid-column: 1 / -1; overflow: hidden; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid rgba(214,173,98,.32); border-radius: 18px; }
.revenue-results > div { min-height: 146px; padding: 24px; display: grid; align-content: center; border-right: 1px solid rgba(255,255,255,.14); }
.revenue-results > div:last-child { border-right: 0; }
.revenue-results span { color: rgba(255,255,255,.68); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .075em; line-height: 1.35; }
.revenue-results strong { margin: 9px 0 7px; font-size: clamp(32px, 3.1vw, 40px); line-height: 1; font-variant-numeric: tabular-nums; }
.revenue-results small { color: rgba(255,255,255,.7); font-size: 13px; line-height: 1.4; }
.revenue-results .result-expert strong, .revenue-results .result-delta strong { color: var(--gold-light); }
.revenue-results .result-delta { position: relative; background: linear-gradient(145deg, rgba(214,173,98,.19), rgba(214,173,98,.07)); box-shadow: inset 0 0 36px rgba(214,173,98,.05); }
.revenue-results .result-delta span { color: var(--gold-light); font-size: 13px; }
.revenue-lab > .button { grid-column: 1 / -1; width: max-content; justify-self: center; padding-inline: 32px; }

.confidence-shift { position: relative; overflow: hidden; background: linear-gradient(180deg, #fff 0%, #f7f4ee 100%); border-block: 1px solid #e8e3d9; }
.confidence-shift::before { content: "SICHERHEIT"; position: absolute; right: -28px; top: 18px; color: rgba(169,120,47,.045); font-size: clamp(86px, 12vw, 176px); line-height: 1; font-weight: 900; letter-spacing: -.06em; pointer-events: none; }
.confidence-heading { position: relative; z-index: 1; margin-bottom: 50px; display: grid; grid-template-columns: 1.16fr .84fr; gap: 86px; align-items: end; }
.confidence-heading h2 { max-width: 740px; font-size: clamp(39px, 4vw, 58px); }
.confidence-heading > p { margin: 0 0 8px; padding-left: 28px; color: var(--muted); border-left: 2px solid var(--gold); font-size: 18px; line-height: 1.7; }
.confidence-card { position: relative; z-index: 1; padding: 10px; display: grid; grid-template-columns: minmax(0, 1fr) 74px minmax(0, 1fr); align-items: stretch; background: rgba(255,255,255,.88); border: 1px solid rgba(214,173,98,.62); border-radius: 30px; box-shadow: 0 28px 76px rgba(34,29,21,.1); }
.confidence-pain, .confidence-result { padding: 40px 38px; border-radius: 22px; }
.confidence-pain { background: #f3f2ef; border: 1px solid #e4e0d9; }
.confidence-result { background: linear-gradient(145deg, #fffdf8 0%, #f2e5c9 100%); border: 1px solid rgba(214,173,98,.55); }
.card-kicker { width: max-content; margin: 0 0 16px; padding: 7px 11px; color: #52483b; background: #e4e1db; border: 1px solid #d3cec5; border-radius: 999px; font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.confidence-result .card-kicker { color: #fff; background: #7c551e; border-color: #9d712f; box-shadow: 0 8px 22px rgba(124,85,30,.18); }
.confidence-card h3 { margin: 0 0 25px; font-size: clamp(24px, 2.4vw, 34px); line-height: 1.2; letter-spacing: -.035em; }
.confidence-card ul { list-style: none; margin: 0; padding: 0; }
.confidence-card li { position: relative; padding: 13px 0 13px 37px; border-top: 1px solid rgba(24,24,24,.1); font-size: 14px; font-weight: 700; line-height: 1.45; }
.confidence-card li::before { content: "–"; position: absolute; left: 0; top: 12px; width: 24px; height: 24px; display: grid; place-items: center; color: #806e5e; background: #e5e1da; border-radius: 50%; font-size: 13px; font-weight: 900; }
.confidence-result li::before { content: "✓"; color: #fff; background: var(--gold-deep); }
.confidence-arrow { display: grid; place-items: center; color: var(--gold-deep); }
.confidence-arrow svg { width: 46px; height: 46px; padding: 9px; background: #fff; border: 1px solid rgba(214,173,98,.62); border-radius: 50%; box-shadow: 0 9px 28px rgba(169,120,47,.18); }
.confidence-chain { grid-column: 1 / -1; margin-top: 10px; min-height: 78px; padding: 17px 25px; display: flex; align-items: center; justify-content: space-between; gap: 14px; color: #fff; background: linear-gradient(120deg, #171717, #24211c 55%, #111); border: 1px solid rgba(214,173,98,.48); border-radius: 20px; box-shadow: inset 0 1px 0 rgba(255,255,255,.06), 0 16px 34px rgba(0,0,0,.13); }
.confidence-chain span { font-size: 13px; font-weight: 900; text-align: center; }
.confidence-chain i { color: var(--gold-light); font-style: normal; font-size: 19px; filter: drop-shadow(0 0 7px rgba(214,173,98,.42)); }

.gold-hover-target { transition: box-shadow .28s ease, transform .28s ease, border-color .28s ease !important; }
.gold-hover-target:not(.offer-card) { border-color: rgba(214,173,98,.46) !important; box-shadow: 0 0 0 1px rgba(214,173,98,.08), 0 0 18px rgba(214,173,98,.08) !important; }
@media (hover: hover) {
  .gold-hover-target:hover { border-color: var(--gold-light) !important; box-shadow: 0 0 0 1px rgba(214,173,98,.42), 0 0 30px rgba(214,173,98,.24), 0 22px 55px rgba(0,0,0,.14) !important; transform: translateY(-3px); }
}

.eyebrow { margin: 0 0 14px; display: flex; align-items: center; gap: 11px; color: var(--gold-ink); font-size: 12px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.eyebrow::after { content: ""; width: 38px; height: 1px; flex: none; background: linear-gradient(90deg, var(--gold-deep), transparent); }
.value-engine-heading .eyebrow, .section-heading.centered .eyebrow, .proof .eyebrow { justify-content: center; }
.value-engine-heading .eyebrow::before { content: ""; width: 38px; height: 1px; flex: none; background: linear-gradient(90deg, transparent, var(--gold-deep)); }
.revenue-lab .eyebrow { color: var(--gold-light); }
h2 { margin: 0; font-size: clamp(36px, 4vw, 58px); line-height: 1.08; letter-spacing: -.045em; font-weight: 800; }
h2 em { color: var(--gold-deep); font-family: "Bodoni Moda", Georgia, serif; font-weight: 500; }
.section-heading { max-width: 900px; margin-bottom: 56px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered > p:last-child { max-width: 720px; margin: 20px auto 0; color: var(--muted); font-size: 18px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1.35fr .65fr; gap: 80px; align-items: end; }
.split-heading > p { margin: 0 0 8px; color: var(--muted); font-size: 17px; }

.problem { padding-top: 84px; background: var(--white); }
.problem-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 100px; align-items: center; }
.problem-copy p:not(.eyebrow) { max-width: 620px; margin: 26px 0; color: var(--muted); font-size: 17px; }
.text-link { display: inline-flex; align-items: center; gap: 14px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-weight: 800; }
.problem-stack { display: grid; gap: 14px; }
.problem-stack article { position: relative; padding: 27px 30px 27px 34px; background: var(--paper); border: 1px solid rgba(214,173,98,.38); border-left: 3px solid var(--gold); border-radius: 18px; transition: transform .25s ease, background .25s ease; }
.problem-stack article:nth-child(2) { margin-left: 42px; }
.problem-stack article:nth-child(3) { margin-left: 84px; }
.problem-stack article:hover { transform: translateX(-7px); background: var(--paper-2); }
.problem-stack span { color: var(--gold-deep); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.problem-stack p { margin: 6px 0 0; font-size: 18px; font-weight: 700; line-height: 1.45; }
.section-cta { grid-column: 1 / -1; margin-top: 34px; padding: 18px 20px; display: flex; align-items: center; justify-content: space-between; gap: 22px; background: var(--white); border: 1px solid var(--line); border-left: 3px solid var(--gold); border-radius: 20px; }
.section-cta > span { max-width: 620px; font-size: 14px; font-weight: 800; }
.centered-cta { max-width: 850px; margin-inline: auto; margin-top: 42px; }
.conversion-moment { padding: 8px 0 0; display: grid; justify-items: center; gap: 22px; background: transparent; border: 0; border-radius: 0; text-align: center; }
.conversion-moment > span { max-width: 760px; font-family: "Bodoni Moda", Georgia, serif; font-size: clamp(24px, 2.6vw, 37px); font-weight: 500; line-height: 1.24; }
.conversion-moment .button { width: min(100%, 440px); }

.contrast { padding: 110px 0; background: var(--paper); border-block: 1px solid var(--line); }
.contrast .section-heading h2 span { display: block; color: var(--gold-deep); }
.contrast-grid { display: grid; grid-template-columns: 1fr 66px 1fr; gap: 22px; align-items: stretch; }
.contrast-grid article { padding: 43px; border-radius: var(--radius); }
.contrast-basic { background: #e3e0da; border: 1px solid #d2cec6; }
.contrast-expert { color: var(--white); background: var(--black-soft); border: 1px solid var(--gold-deep); box-shadow: var(--shadow); }
.contrast-tag { margin: 0 0 14px; color: var(--gold-deep); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contrast-expert .contrast-tag { color: var(--gold); }
.contrast-grid h3 { margin: 0 0 24px; font-size: 27px; line-height: 1.25; }
.contrast-grid ul { list-style: none; margin: 0; padding: 0; }
.contrast-grid li { position: relative; padding: 13px 0 13px 26px; border-top: 1px solid rgba(0,0,0,.1); }
.contrast-grid li::before { content: "–"; position: absolute; left: 0; color: var(--gold-deep); font-weight: 900; }
.contrast-expert li { border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.82); }
.contrast-expert li::before { content: "✓"; color: var(--gold); }
.contrast-arrow { display: grid; place-items: center; color: var(--gold-deep); font-size: 42px; }

.outcomes { background: var(--white); }
.outcome-grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 24px; }
.outcome-grid article { min-height: 300px; padding: 34px 28px; border-right: 1px solid var(--line); transition: background .25s ease, transform .25s ease; }
.outcome-grid article:last-child { border-right: 0; }
.outcome-grid article:hover { position: relative; z-index: 2; transform: translateY(-8px); background: var(--black); color: var(--white); box-shadow: var(--shadow); }
.outcome-icon { width: 50px; height: 50px; margin-bottom: 64px; display: grid; place-items: center; color: var(--gold-deep); border: 1px solid var(--gold); border-radius: 50%; font-size: 24px; }
.outcome-grid h3 { margin: 0 0 12px; font-size: 20px; }
.outcome-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.outcome-grid article:hover p { color: rgba(255,255,255,.66); }

.curriculum { position: relative; overflow: hidden; color: var(--ink); background: linear-gradient(180deg, #f7f4ee 0%, #fff 100%); border-block: 1px solid #e6e1d7; }
.curriculum::after { content: "SKIN EXPERT"; position: absolute; bottom: -48px; right: -30px; color: rgba(169,120,47,.04); font-size: 190px; line-height: 1; font-weight: 900; white-space: nowrap; pointer-events: none; }
.curriculum-heading { position: relative; z-index: 1; margin-bottom: 50px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 86px; align-items: end; }
.curriculum-heading h2 { max-width: 760px; font-size: clamp(40px, 4.4vw, 62px); }
.curriculum-heading h2 span { display: block; color: var(--gold-ink); background: linear-gradient(100deg, #70430c, #b98739 46%, #70430c 86%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: drop-shadow(0 7px 14px rgba(169,120,47,.1)); }
.curriculum-heading > p { margin: 0 0 7px; padding-left: 28px; color: var(--muted); border-left: 2px solid var(--gold); font-size: 17px; line-height: 1.75; }
.dark-checks li { color: var(--ink); }

.module-accordion { position: relative; z-index: 1; overflow: hidden; background: var(--white); border: 1px solid rgba(214,173,98,.6); border-radius: 30px; box-shadow: 0 28px 75px rgba(28,23,16,.1); }
.module-accordion details { overflow: hidden; color: var(--ink); background: var(--white); border: 0; border-bottom: 1px solid #e7e3dc; transition: background .25s ease; }
.module-accordion details:last-child { border-bottom: 0; }
.module-accordion summary { min-height: 98px; padding: 16px 24px; display: grid; grid-template-columns: 62px minmax(0,1fr) auto 44px; gap: 20px; align-items: center; cursor: pointer; list-style: none; transition: background .25s ease; }
.module-accordion summary::-webkit-details-marker { display: none; }
.module-accordion summary:hover { background: #faf8f3; }
.module-index { width: 48px; height: 48px; display: grid; place-items: center; color: var(--gold-deep); background: #f6efe1; border: 1px solid rgba(214,173,98,.52); border-radius: 50%; font-size: 13px; font-weight: 900; letter-spacing: .05em; }
.module-title { min-width: 0; display: grid; gap: 3px; }
.module-title small { color: #938b80; font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.module-title strong { font-size: 21px; line-height: 1.25; }
.module-category { padding: 7px 11px; color: #745321; background: #f1e2c2; border: 1px solid rgba(169,120,47,.24); border-radius: 999px; font-size: 8px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.module-accordion summary > b { width: 38px; height: 38px; display: grid; place-items: center; color: var(--gold-deep); background: #fff; border: 1px solid rgba(169,120,47,.4); border-radius: 50%; font-size: 23px; font-weight: 400; line-height: 1; transition: transform .25s ease, color .25s ease, background .25s ease; }
.module-accordion details[open] summary { background: linear-gradient(120deg, #fff 0%, #f5ead3 100%); border-bottom: 1px solid rgba(214,173,98,.38); }
.module-accordion details[open] .module-index { color: #fff; background: var(--gold-deep); border-color: var(--gold-deep); box-shadow: 0 8px 22px rgba(169,120,47,.24); }
.module-accordion details[open] summary > b { color: #fff; background: var(--gold-deep); transform: rotate(45deg); }
.module-detail { padding: 32px 32px 30px; background: #fff; }
.module-intro { max-width: 940px; margin: 0 0 25px; padding-left: 19px; color: var(--muted); border-left: 2px solid var(--gold); font-size: 16px; line-height: 1.7; }
.module-topic-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
.module-topic-grid article { min-height: 158px; padding: 22px 23px; background: #faf8f4; border: 1px solid #e7e2d9; border-radius: 18px; }
.module-topic-grid article > span { display: block; margin-bottom: 14px; color: var(--gold-ink); font-size: 9px; font-weight: 900; letter-spacing: .12em; }
.module-topic-grid h4 { margin: 0 0 8px; font-size: 17px; line-height: 1.3; }
.module-topic-grid p { margin: 0; color: var(--muted); font-size: 12px; line-height: 1.6; }
.module-result { margin-top: 13px; padding: 20px 22px; display: grid; grid-template-columns: 170px 1fr; gap: 24px; align-items: center; color: #3b2b16; background: linear-gradient(120deg, #f6ead1, #e0c083 56%, #f5e7c8); border: 1px solid rgba(169,120,47,.4); border-radius: 18px; }
.module-result span { font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.module-result strong { font-size: 13px; line-height: 1.55; }
.module-detail .module-note { margin: 13px 0 0; padding: 13px 16px; color: #6e5a34; background: #f8f1e4; border-left: 2px solid var(--gold); border-radius: 0 10px 10px 0; font-size: 10px; line-height: 1.5; }
.module-accordion details[open] .module-detail { animation: module-content-in .3s ease both; }
@keyframes module-content-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.certificate-experience { position: relative; z-index: 2; margin-top: 68px; padding: clamp(32px, 4.4vw, 56px); display: grid; grid-template-columns: minmax(300px, .72fr) minmax(470px, 1.28fr); gap: clamp(38px, 5vw, 68px); align-items: center; background: radial-gradient(circle at 84% 14%, rgba(214,173,98,.22), transparent 31%), linear-gradient(135deg, #fff 0%, #f4eee2 100%); border: 1px solid rgba(169,120,47,.48); border-radius: 32px; box-shadow: 0 28px 80px rgba(50,36,15,.15); }
.certificate-experience::before { content: ""; position: absolute; inset: 0 0 auto; height: 3px; background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold-deep), var(--gold-light), transparent); border-radius: inherit; box-shadow: 0 0 22px rgba(214,173,98,.45); }
.certificate-copy { position: relative; z-index: 2; }
.certificate-copy h3 { max-width: 520px; margin: 0; font-size: clamp(32px, 3.4vw, 49px); line-height: 1.08; letter-spacing: -.04em; }
.certificate-copy > p:not(.eyebrow) { margin: 21px 0; color: var(--muted); font-size: 15px; line-height: 1.7; }
.certificate-benefits { list-style: none; margin: 0 0 26px; padding: 0; }
.certificate-benefits li { position: relative; padding: 10px 0 10px 31px; border-top: 1px solid rgba(169,120,47,.22); font-size: 13px; font-weight: 750; line-height: 1.45; }
.certificate-benefits li::before { content: "✓"; position: absolute; left: 0; top: 9px; color: var(--gold-ink); font-size: 16px; font-weight: 900; }
.certificate-name-field { margin-bottom: 23px; display: grid; gap: 9px; }
.certificate-name-field > span { color: var(--gold-ink); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.certificate-name-field input { width: 100%; min-height: 56px; padding: 0 18px; color: var(--ink); background: rgba(255,255,255,.9); border: 1px solid rgba(169,120,47,.52); border-radius: 15px; outline: 0; font-size: 15px; font-weight: 750; box-shadow: inset 0 1px 0 #fff; transition: border-color .2s ease, box-shadow .2s ease; }
.certificate-name-field input:focus { border-color: var(--gold-ink); box-shadow: 0 0 0 4px rgba(214,173,98,.16), 0 0 28px rgba(214,173,98,.2); }
.certificate-copy .button { width: min(100%, 440px); }
.certificate-trust { margin-top: 14px; display: block; color: #706657; font-size: 9px; font-weight: 750; line-height: 1.5; }
.certificate-visual { position: relative; z-index: 3; margin: -86px -30px -46px 0; transform: rotate(-1.1deg); transition: transform .35s ease; }
.certificate-visual:hover { transform: rotate(0) translateY(-5px); }
.certificate-halo { position: relative; padding: 9px; background: linear-gradient(135deg, #f5dda6, #93601d 50%, #f0ce88); border-radius: 10px; box-shadow: 0 0 0 1px rgba(255,244,213,.8), 0 0 48px rgba(214,173,98,.4), 0 32px 70px rgba(35,25,11,.24); }
.certificate-halo::before { content: ""; position: absolute; inset: 10% 8% -8%; z-index: -1; background: rgba(214,173,98,.34); filter: blur(36px); }
.certificate-paper { position: relative; overflow: hidden; container-type: inline-size; aspect-ratio: 3 / 2; background: #f7f2eb url("public/certificate-masterclass.svg?v=2") center / cover no-repeat; border-radius: 3px; }
.certificate-paper::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(110deg, transparent 36%, rgba(255,255,255,.32) 49%, transparent 61%); transform: translateX(-120%); animation: certificate-shine 7s ease-in-out infinite; }
.certificate-preview-name { position: absolute; z-index: 2; top: 52%; left: 50%; width: 48%; overflow: hidden; transform: translate(-50%, -50%); color: #403a34; font-family: Georgia, "Times New Roman", serif; font-size: clamp(10px, 2.7cqw, 25px); font-weight: 500; line-height: 1; letter-spacing: .025em; text-align: center; text-overflow: ellipsis; white-space: nowrap; text-shadow: 0 1px 0 rgba(255,255,255,.7); }
.certificate-visual figcaption { margin-top: 13px; color: #6f5b3b; font-size: 9px; font-weight: 800; letter-spacing: .07em; line-height: 1.5; text-align: center; text-transform: uppercase; }
@keyframes certificate-shine { 0%, 72% { transform: translateX(-120%); } 88%, 100% { transform: translateX(120%); } }

.certificate-caption { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.certificate-caption > span:first-child { max-width: 480px; }
.certificate-expand { min-height: 44px; padding: 9px 16px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; color: #3f2c10; background: rgba(255,255,255,.94); border: 1px solid rgba(169,120,47,.52); border-radius: 999px; font-family: inherit; font-size: 11px; font-weight: 900; letter-spacing: 0; text-transform: none; box-shadow: 0 7px 22px rgba(76,52,17,.13); cursor: pointer; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.certificate-expand:hover { transform: translateY(-2px); border-color: var(--gold-ink); box-shadow: 0 10px 28px rgba(118,79,22,.2), 0 0 22px rgba(214,173,98,.22); }
.certificate-expand:focus-visible, .certificate-dialog button:focus-visible, .certificate-dialog input:focus-visible, .certificate-dialog-stage:focus-visible { outline: 3px solid var(--gold-light); outline-offset: 3px; }

.certificate-dialog { width: min(100% - 32px, 1180px); height: min(92dvh, 900px); max-width: none; max-height: none; margin: auto; padding: 0; overflow: hidden; color: #fff; background: #111; border: 1px solid rgba(214,173,98,.62); border-radius: 24px; box-shadow: 0 35px 100px rgba(0,0,0,.58); }
.certificate-dialog::backdrop { background: rgba(0,0,0,.82); backdrop-filter: blur(8px); }
.certificate-dialog-shell { height: 100%; display: grid; grid-template-rows: auto minmax(0,1fr) auto; }
.certificate-dialog-head { min-height: 74px; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; background: linear-gradient(135deg, #181818, #0e0e0e); border-bottom: 1px solid rgba(255,255,255,.13); }
.certificate-dialog-head small { display: block; color: var(--gold-light); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.certificate-dialog-head h2 { margin: 3px 0 0; color: #fff; font-size: clamp(20px, 3vw, 29px); line-height: 1.1; }
.certificate-dialog-close, .certificate-dialog-controls button { flex: none; width: 44px; height: 44px; padding: 0; display: grid; place-items: center; color: #fff; background: rgba(255,255,255,.08); border: 1px solid rgba(214,173,98,.45); border-radius: 50%; font-family: inherit; font-size: 24px; cursor: pointer; }
.certificate-dialog-close:hover, .certificate-dialog-controls button:hover { color: #17120a; background: var(--gold); }
.certificate-dialog-stage { min-height: 0; padding: 0; overflow: auto; overscroll-behavior: contain; -webkit-overflow-scrolling: touch; touch-action: pan-x pan-y pinch-zoom; scrollbar-color: var(--gold-deep) rgba(255,255,255,.08); }
.certificate-dialog-canvas { box-sizing: border-box; width: max-content; min-width: 100%; min-height: 100%; padding: 20px; display: grid; place-items: center; background: radial-gradient(circle at center, rgba(214,173,98,.12), transparent 48%), linear-gradient(160deg, #141414, #090909); }
.certificate-dialog-paper { width: 100%; max-width: none; margin: auto; flex: none; box-shadow: 0 0 0 6px rgba(214,173,98,.9), 0 22px 60px rgba(0,0,0,.48); }
.certificate-dialog-controls { min-height: 70px; padding: 10px 18px calc(10px + env(safe-area-inset-bottom)); display: flex; align-items: center; justify-content: center; gap: 12px; background: #171717; border-top: 1px solid rgba(255,255,255,.13); }
.certificate-dialog-controls label { width: min(46vw, 360px); display: flex; }
.certificate-dialog-controls input { width: 100%; accent-color: var(--gold); cursor: pointer; }
.certificate-dialog-controls output { min-width: 52px; color: var(--gold-light); font-size: 12px; font-weight: 900; text-align: center; }

.complete-offer { background: var(--white); }
.complete-offer-grid { display: grid; grid-template-columns: .68fr 1.32fr; gap: 70px; align-items: center; }
.complete-offer-copy > p:not(.eyebrow) { margin: 25px 0 30px; color: var(--muted); font-size: 17px; }
.premium-included-list { overflow: hidden; background: var(--white); border: 1px solid rgba(214,173,98,.62); border-radius: 28px; box-shadow: 0 28px 70px rgba(28,23,16,.1); }
.included-list-head { min-height: 112px; padding: 25px 28px; display: flex; align-items: center; justify-content: space-between; gap: 28px; background: linear-gradient(135deg, #fff 0%, #f7f1e4 100%); border-bottom: 1px solid rgba(214,173,98,.38); }
.included-list-head > div > span { display: block; margin-bottom: 5px; color: var(--gold-ink); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.included-list-head h3 { margin: 0; font-size: clamp(22px, 2vw, 29px); line-height: 1.22; letter-spacing: -.03em; }
.included-list-head > strong { flex: none; padding: 9px 13px; color: #4a3517; background: #ecd8ad; border: 1px solid rgba(169,120,47,.32); border-radius: 999px; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.included-list-columns { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
.included-group { padding: 24px 27px 20px; }
.included-group + .included-group { border-left: 1px solid var(--line); }
.included-group > p { margin: 0 0 9px; color: var(--gold-ink); font-size: 10px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.included-group > p span { margin-right: 9px; color: #9b9388; }
.included-group ul { list-style: none; margin: 0; padding: 0; }
.included-group li { min-height: 50px; padding: 12px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; border-bottom: 1px solid #ebe8e2; }
.included-group li:last-child { border-bottom: 0; }
.included-group li > span { position: relative; padding-left: 27px; font-size: 12px; font-weight: 750; line-height: 1.4; }
.included-group li > span::before { content: "✓"; position: absolute; left: 0; top: .05em; width: 18px; height: 18px; display: grid; place-items: center; color: #fff; background: var(--gold-deep); border-radius: 50%; font-size: 10px; font-weight: 900; }
.included-group li > b { flex: none; color: #287b5b; font-size: 8px; letter-spacing: .08em; text-transform: uppercase; }
.included-exclusive { margin: 0 18px 14px; padding: 22px 24px; display: grid; grid-template-columns: .72fr 1.28fr; gap: 28px; align-items: center; background: #f7f2e8; border: 1px solid rgba(214,173,98,.4); border-radius: 18px; }
.included-exclusive-copy > span { display: block; margin-bottom: 7px; color: var(--gold-ink); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.included-exclusive-copy > strong { display: block; font-size: 15px; line-height: 1.4; }
.included-exclusive ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.included-exclusive li { position: relative; padding-left: 24px; color: #544b3e; font-size: 11px; font-weight: 750; }
.included-exclusive li::before { content: "+"; position: absolute; left: 0; color: var(--gold-deep); font-size: 15px; font-weight: 900; line-height: 1; }
.premium-included-list .bonus-row { margin: 0 18px 18px; min-height: 78px; padding: 17px 22px; display: flex; align-items: center; justify-content: space-between; gap: 24px; color: #33240f; background: linear-gradient(120deg, #f4e7c9, #d6ad62 58%, #f1dcae); border: 1px solid rgba(169,120,47,.5); border-radius: 18px; }
.premium-included-list .bonus-row div > span { display: block; margin-bottom: 2px; color: #33240f; font-size: 8px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.premium-included-list .bonus-row div > strong { display: block; font-size: 18px; }
.apple-line { display: inline-flex !important; align-items: center; gap: 9px; }
.apple-mark { width: 1em; height: 1em; flex: none; fill: currentColor; }
.premium-included-list .bonus-row > b { position: relative; padding-left: 22px; font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.premium-included-list .bonus-row > b::before { content: "✓"; position: absolute; left: 0; top: -2px; font-size: 15px; }
.ipad-bonus { margin-top: 54px; padding: 55px; display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 72px; align-items: center; background: var(--paper); border: 1px solid var(--gold); border-radius: 28px; box-shadow: 0 26px 70px rgba(0,0,0,.08); }
.ipad-visual { position: relative; width: 100%; max-width: 420px; aspect-ratio: 2 / 3; margin-inline: auto; }
.ipad-mockup-image { width: 100%; height: 100%; display: block; object-fit: cover; border: 1px solid rgba(214,173,98,.74); border-radius: 30px; box-shadow: 0 30px 68px rgba(16,13,9,.24), 0 0 0 7px rgba(214,173,98,.08); }
.ipad-bonus-pill { position: absolute; z-index: 2; top: 19px; left: 19px; padding: 10px 15px; display: inline-flex; align-items: center; gap: 7px; color: #1b160e; background: linear-gradient(135deg, #f6dda8, var(--gold)); border: 1px solid rgba(255,255,255,.58); border-radius: 999px; box-shadow: 0 12px 28px rgba(0,0,0,.2); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.ipad-bonus-pill .apple-mark { width: 14px; height: 14px; }
.ipad-certificate-float { position: absolute; z-index: 3; right: -12%; bottom: 4%; width: 56%; padding: 7px 7px 10px; background: #f7f1e7; border: 1px solid var(--gold); border-radius: 8px; box-shadow: 0 24px 52px rgba(0,0,0,.3), 0 0 26px rgba(214,173,98,.24); transform: rotate(4deg); transition: transform .3s ease, box-shadow .3s ease; }
.ipad-visual:hover .ipad-certificate-float { transform: rotate(1.5deg) translateY(-5px); box-shadow: 0 30px 65px rgba(0,0,0,.33), 0 0 34px rgba(214,173,98,.36); }
.ipad-certificate-float img { width: 100%; height: auto; display: block; border-radius: 3px; }
.ipad-certificate-float span { margin-top: 7px; display: block; color: var(--gold-ink); font-size: 9px; font-weight: 900; letter-spacing: .12em; text-align: center; text-transform: uppercase; }
.ipad-screen i:nth-of-type(3) { width: 60%; background: rgba(214,173,98,.65); }
.ipad-copy h2 { font-size: clamp(40px,4vw,60px); }
.apple-heading { display: flex; align-items: center; gap: 15px; }
.apple-heading .apple-mark { width: .78em; height: .78em; }
.ipad-copy > p:not(.eyebrow) { margin: 20px 0; color: var(--muted); font-size: 17px; }
.ipad-copy .check-list { margin-bottom: 24px; }
.ipad-copy > small { margin-top: 18px; display: block; color: var(--muted); font-size: 9px; line-height: 1.5; }

.payment-models { position: relative; overflow: hidden; margin-top: 28px; padding: 38px 42px; display: grid; grid-template-columns: 1.14fr .86fr; gap: 70px; align-items: center; background: linear-gradient(135deg, #fff 0%, #f8f3e9 100%); border: 1px solid rgba(214,173,98,.58); border-radius: 28px; box-shadow: 0 22px 58px rgba(28,23,16,.08); }
.payment-models::before { content: ""; position: absolute; width: 240px; height: 240px; left: -130px; bottom: -160px; border: 1px solid rgba(214,173,98,.24); border-radius: 50%; box-shadow: 0 0 70px rgba(214,173,98,.1); pointer-events: none; }
.payment-models-copy { position: relative; z-index: 1; }
.payment-models h3 { max-width: 650px; margin: 0; font-size: clamp(30px, 3vw, 44px); line-height: 1.13; letter-spacing: -.04em; }
.payment-models-copy > p:last-child { max-width: 690px; margin: 17px 0 0; color: var(--muted); font-size: 15px; }
.payment-models-action { position: relative; z-index: 1; display: grid; gap: 13px; }
.payment-logos { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 11px; }
.payment-brand { min-width: 0; height: 72px; padding: 14px 18px; display: grid; place-items: center; background: var(--white); border: 1px solid #ddd9d1; border-radius: 16px; }
.payment-brand img { width: auto; max-width: 100%; object-fit: contain; }
.payment-brand > .external-brand-fallback { font-size: 25px; letter-spacing: -.04em; }
.external-brand-paypal { color: #173b72; font-style: italic; }
.external-brand-klarna { color: #111; }
.payment-brand-paypal img { height: 34px; }
.payment-brand-klarna { background: #ffa8cd; border-color: #f08eb9; }
.payment-brand-klarna img { height: 43px; }
.payment-models-action .button { width: 100%; text-align: center; }
.payment-models-action > small { color: var(--muted); font-size: 8px; line-height: 1.5; }

.positioning { background: var(--paper); }
.positioning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.positioning-copy > p { margin: 5px 0 32px; color: var(--muted); font-size: 18px; }
.value-lines { border-top: 1px solid #ccc7be; }
.value-lines span { padding: 18px 0; display: flex; align-items: center; gap: 22px; border-bottom: 1px solid #ccc7be; font-weight: 700; }
.value-lines b { color: var(--gold-deep); font-size: 12px; }
.positioning-copy .legal-line { margin-top: 24px; font-size: 12px; }
.positioning-copy .button { width: min(100%, 430px); margin: 28px auto 0; display: flex; }

.proof { background: var(--white); }
.proof .split-heading { max-width: 980px; margin-inline: auto; grid-template-columns: 1fr; justify-items: center; gap: 30px; text-align: center; }
.proof .split-heading > div { max-width: 850px; }
.rating-badge { width: min(100%, 500px); min-height: 132px; padding: 27px 32px; display: grid; grid-template-columns: auto 1fr; column-gap: 24px; align-items: center; color: var(--ink); background: linear-gradient(135deg, #fff 0%, #f5ead4 100%); border: 1px solid rgba(214,173,98,.58); border-top: 3px solid var(--gold); border-radius: 24px; box-shadow: 0 22px 52px rgba(74,52,20,.1); text-decoration: none; transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.rating-badge:hover { border-color: var(--gold); box-shadow: 0 14px 36px rgba(62,45,20,.1); transform: translateY(-2px); }
.rating-badge img { grid-row: 1 / 4; width: 118px; height: auto; }
.rating-badge > .external-brand-fallback { grid-row: 1 / 4; width: 118px; font-size: 28px; }
.rating-badge > .external-brand-google { color: #4285f4; }
.rating-badge > span { font-size: 29px; letter-spacing: .09em; }
.rating-badge strong { font-size: 31px; line-height: 1.1; }
.rating-badge small { color: var(--muted); font-size: 12px; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; align-items: start; }
.proof-video { overflow: hidden; background: var(--black); border-radius: 22px; box-shadow: 0 18px 45px rgba(0,0,0,.12); }
.proof-video video { width: 100%; display: block; object-fit: contain; background: #080808; }
.proof-video.is-portrait video { aspect-ratio: 4 / 5; }
.proof-video.is-landscape video { aspect-ratio: 16 / 9; }
.proof-video > div { padding: 18px; display: grid; color: var(--white); }
.proof-video strong { font-size: 14px; }
.proof-video span { color: rgba(255,255,255,.55); font-size: 10px; }
.review-column { display: grid; gap: 16px; }
.review-column blockquote { margin: 0; padding: 30px; background: var(--paper); border: 1px solid rgba(214,173,98,.38); border-top: 2px solid var(--gold); border-radius: 20px; font-size: 19px; font-weight: 700; line-height: 1.5; }
.review-column cite { display: block; margin-top: 18px; color: var(--muted); font-size: 10px; font-style: normal; font-weight: 600; }
.review-column > p { margin: 0; padding: 0 8px; color: var(--muted); font-size: 11px; }

.fit { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--paper) 0%, #fffaf1 100%); }
.fit::before { content: ""; position: absolute; width: 520px; height: 520px; left: -260px; top: 80px; border: 1px solid rgba(214,173,98,.24); border-radius: 50%; box-shadow: 0 0 90px rgba(214,173,98,.09); }
.fit .shell { position: relative; text-align: center; }
.fit-journey { max-width: 1100px; margin: 46px auto 0; display: grid; grid-template-columns: repeat(3, 1fr); counter-reset: fit-step; border-block: 1px solid rgba(169,120,47,.38); }
.fit-journey article { position: relative; overflow: hidden; min-height: 255px; padding: 38px 42px; counter-increment: fit-step; text-align: left; transition: background .28s ease, transform .28s ease; }
.fit-journey article + article { border-left: 1px solid rgba(169,120,47,.28); }
.fit-journey article::before { content: "0" counter(fit-step); display: block; margin-bottom: 28px; color: rgba(169,120,47,.48); font-family: "Bodoni Moda", Georgia, serif; font-size: 46px; line-height: 1; }
.fit-journey article:hover { z-index: 1; background: linear-gradient(150deg, rgba(255,255,255,.9), rgba(235,211,160,.32)); transform: translateY(-6px); }
.fit-journey small { display: block; margin-bottom: 12px; color: var(--gold-deep); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.fit-journey strong { display: block; font-size: 20px; line-height: 1.45; }
.fit-statement { max-width: 800px; margin: 42px auto 25px; font-family: "Bodoni Moda", Georgia, serif; font-size: clamp(26px, 3vw, 41px); font-weight: 500; line-height: 1.22; }
.fit-cta { width: min(100%, 460px); margin-inline: auto; display: flex; }
.fit-limit { max-width: 900px; margin: 22px auto 0; color: var(--muted); font-size: 11px; text-align: center; }

.seo-facts { position: relative; overflow: hidden; padding-block: 94px; background: #fff; border-block: 1px solid rgba(169,120,47,.24); }
.seo-facts::before { content: ""; position: absolute; width: 460px; height: 460px; right: -260px; top: -260px; background: radial-gradient(circle, rgba(214,173,98,.15), transparent 68%); border-radius: 50%; pointer-events: none; }
.seo-facts .shell { position: relative; z-index: 1; }
.seo-facts .section-heading { margin-bottom: 40px; }
.facts-grid { margin: 0; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
.facts-grid > div { min-height: 142px; padding: 26px 25px; display: grid; align-content: center; gap: 9px; background: linear-gradient(145deg, #fff, #f7f2e8); border: 1px solid rgba(169,120,47,.4); border-radius: 20px; box-shadow: 0 16px 38px rgba(73,53,24,.06); transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease; }
.facts-grid > div:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 20px 45px rgba(73,53,24,.11), 0 0 24px rgba(214,173,98,.12); }
.facts-grid dt { color: var(--gold-deep); font-size: 9px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.facts-grid dd { margin: 0; color: var(--ink); font-size: 16px; font-weight: 800; line-height: 1.42; }

.booking { position: relative; overflow: hidden; background: radial-gradient(circle at 15% 27%, rgba(214,173,98,.2), transparent 31%), linear-gradient(180deg, #fff 0%, #f8f0e2 100%); }
.booking::before { content: ""; position: absolute; width: 560px; height: 560px; right: -300px; bottom: -320px; border: 1px solid rgba(214,173,98,.36); border-radius: 50%; box-shadow: 0 0 110px rgba(214,173,98,.12); }
.booking-grid { position: relative; z-index: 1; display: grid; grid-template-columns: .85fr 1.15fr; gap: 76px; align-items: start; }
.booking-copy { position: sticky; top: 122px; }
.booking-copy > p:not(.eyebrow) { margin: 25px 0; color: var(--muted); font-size: 17px; }
.booking-copy .check-list { margin: 22px 0 30px; }
.booking-copy .check-list li { padding-block: 10px; }
.whatsapp-box { padding: 19px 21px; display: flex; justify-content: space-between; gap: 18px; border: 1px solid rgba(214,173,98,.36); border-radius: 18px; background: var(--paper); }
.whatsapp-box strong { font-size: 13px; }
.whatsapp-box span { color: var(--gold-deep); font-size: 12px; font-weight: 800; }
.booking-card { position: relative; overflow: hidden; padding: 44px; background: rgba(255,255,255,.84); border: 1px solid rgba(169,120,47,.48); border-radius: 30px; box-shadow: 0 30px 78px rgba(78,57,26,.13), 0 0 48px rgba(214,173,98,.12); backdrop-filter: blur(10px); }
.booking-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, transparent, var(--gold-light), var(--gold-deep), var(--gold-light), transparent); box-shadow: 0 0 26px rgba(214,173,98,.58); }
.booking-card::after { content: ""; position: absolute; width: 240px; height: 240px; right: -110px; top: -130px; background: radial-gradient(circle, rgba(214,173,98,.22), transparent 68%); border-radius: 50%; pointer-events: none; }
.booking-card-head { position: relative; z-index: 1; margin-bottom: 30px; padding-bottom: 26px; display: grid; justify-items: center; gap: 8px; border-bottom: 1px solid rgba(169,120,47,.24); text-align: center; }
.booking-head-mark { width: 62px; height: 62px; margin-bottom: 7px; display: grid; place-items: center; color: #4a3517; background: linear-gradient(135deg, #f4dda8, var(--gold)); border: 1px solid rgba(169,120,47,.58); border-radius: 50%; box-shadow: 0 12px 30px rgba(169,120,47,.26); animation: booking-mark-float 3.6s ease-in-out infinite; }
.booking-head-mark svg { width: 29px; height: 29px; }
.booking-card-head > span:not(.booking-head-mark) { color: var(--gold-deep); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.booking-card-head h3 { max-width: 520px; margin: 3px 0 0; font-size: clamp(29px, 3vw, 40px); line-height: 1.12; letter-spacing: -.035em; }
.booking-card-head p { margin: 3px 0 0; color: var(--muted); font-size: 14px; }
@keyframes booking-mark-float { 50% { transform: translateY(-5px); box-shadow: 0 18px 38px rgba(169,120,47,.34); } }
.booking-card form { position: relative; z-index: 1; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-card label { margin-bottom: 16px; display: grid; gap: 7px; font-size: 12px; font-weight: 800; }
.booking-card input, .booking-card select, .booking-card textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--white); border: 1px solid #cecac1; border-radius: 12px; outline: none; }
.booking-card input:focus, .booking-card select:focus, .booking-card textarea:focus { border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(214,173,98,.14); }
.booking-card textarea { resize: vertical; }
.booking-card .privacy { grid-template-columns: 18px 1fr; align-items: start; gap: 10px; font-weight: 500; line-height: 1.45; }
.privacy input { margin: 3px 0 0; }
.privacy a { text-decoration: underline; }
.form-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.booking-card button[disabled] { cursor: wait; opacity: .72; transform: none; }
.booking-whatsapp { margin-top: 24px; padding-top: 22px; display: grid; justify-items: center; gap: 11px; border-top: 1px solid rgba(169,120,47,.22); text-align: center; }
.booking-whatsapp > span { color: var(--muted); font-size: 12px; font-weight: 700; }
.whatsapp-button { min-height: 54px; padding: 12px 24px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; color: #fff; background: linear-gradient(145deg, #2fe17f, #18ad5c); border: 1px solid rgba(255,255,255,.75); border-radius: 999px; box-shadow: 0 14px 30px rgba(11,109,56,.25); font-size: 13px; font-weight: 850; transition: transform .22s ease, box-shadow .22s ease; }
.whatsapp-button:hover, .whatsapp-button:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 38px rgba(11,109,56,.36), 0 0 0 6px rgba(47,225,127,.1); }
.whatsapp-button:focus-visible { outline: 3px solid #158c4c; outline-offset: 4px; }
.whatsapp-button svg { width: 23px; height: 23px; fill: currentColor; }
.whatsapp-button > span { transition: transform .22s ease; }
.whatsapp-button:hover > span, .whatsapp-button:focus-visible > span { transform: translateX(4px); }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: 10px; text-align: center; }
.form-error { margin-bottom: 18px; padding: 12px; color: #8a201b; background: #f4dedb; font-size: 12px; font-weight: 700; }
.calendar-gate { text-align: center; }
.calendar-mark { width: 58px; height: 58px; margin: 0 auto 18px; display: grid; place-items: center; color: var(--black); background: var(--gold); border-radius: 50%; font-size: 25px; font-weight: 900; }
.calendar-gate h3 { margin: 0 0 12px; font-size: 28px; }
.calendar-gate p { color: var(--muted); }
.back-button { margin-top: 16px; border: 0; background: transparent; text-decoration: underline; cursor: pointer; }

.faq { padding: 100px 0 82px; background: var(--paper); }
.faq-grid-wrap { display: grid; grid-template-columns: .7fr 1.3fr; gap: 100px; align-items: start; }
.faq-title { position: sticky; top: 120px; }
.faq-title p:last-child { color: var(--muted); }
.faq-list { display: grid; gap: 10px; }
.faq-list details { padding-inline: 18px; background: rgba(255,255,255,.62); border: 1px solid #c9c4bb; border-radius: 18px; }
.faq-list summary { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; cursor: pointer; list-style: none; font-weight: 800; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold-deep); font-size: 24px; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { margin: -2px 50px 22px 0; color: var(--muted); }
.faq-cta { margin-top: 24px; display: flex; justify-content: center; }
.faq-cta .button { width: min(100%, 520px); }

.offer-recap { padding: 70px 0; background: var(--white); border-top: 1px solid var(--line); }
.offer-recap-grid { max-width: 920px; display: grid; grid-template-columns: 1fr; justify-items: center; gap: 24px; align-items: center; text-align: center; }
.offer-recap h2 { font-size: clamp(30px,3.2vw,45px); }
.offer-recap-grid > .check-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 28px; }
.offer-recap-grid > .check-list li { padding: 5px 0 5px 25px; font-size: 14px; font-weight: 800; }
.offer-recap-grid > .check-list li::before { top: 50%; transform: translateY(-50%); }
.recap-action { width: min(100%, 380px); display: grid; gap: 13px; text-align: center; }
.recap-action > a:last-child { color: var(--muted); font-size: 11px; font-weight: 700; }

.site-footer { position: relative; z-index: 100; overflow: hidden; color: rgba(255,255,255,.74); background: #0b0b0b; border-top: 1px solid rgba(214,173,98,.38); }
.site-footer::before { content: ""; position: absolute; top: 0; left: 50%; width: min(760px, 75vw); height: 1px; transform: translateX(-50%); background: linear-gradient(90deg, transparent, var(--gold-light), transparent); box-shadow: 0 0 30px rgba(214,173,98,.48); }
.footer-glow { position: absolute; width: 620px; height: 620px; right: -290px; top: -310px; pointer-events: none; background: radial-gradient(circle, rgba(214,173,98,.13), transparent 66%); border-radius: 50%; }
.footer-main { position: relative; padding: 82px 0 68px; display: grid; grid-template-columns: minmax(300px, 1.05fr) minmax(0, 1.25fr); gap: clamp(64px, 8vw, 118px); align-items: start; }
.footer-brand { max-width: 510px; }
.footer-logo { width: fit-content; display: inline-flex; transition: opacity .2s ease, transform .2s ease; }
.footer-logo:hover, .footer-logo:focus-visible { opacity: .86; transform: translateY(-2px); }
.footer-logo img { width: 220px; height: 70px; object-fit: contain; object-position: left center; filter: grayscale(1) brightness(5); }
.footer-kicker { margin: 25px 0 15px !important; color: var(--gold-light); font-size: 11px !important; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.footer-brand h2 { max-width: 500px; color: #fff; font-size: clamp(38px, 4vw, 56px); line-height: 1.02; letter-spacing: -.045em; }
.footer-brand h2 span { color: var(--gold-light); }
.footer-brand > p:not(.footer-kicker) { max-width: 500px; margin: 24px 0 30px; color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.75; }
.footer-primary { width: min(100%, 330px); }
.footer-directory { display: grid; grid-template-columns: minmax(120px,.85fr) minmax(210px,1.25fr) minmax(110px,.7fr); gap: clamp(30px, 4vw, 58px); }
.footer-column { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; }
.footer-column > strong { margin-bottom: 22px; color: var(--gold-light); font-size: 10px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.footer-column > a:not(.footer-whatsapp):not(.footer-email) { position: relative; padding: 8px 0; color: rgba(255,255,255,.74); font-size: 14px; font-weight: 650; line-height: 1.3; transition: color .2s ease, transform .2s ease; }
.footer-column > a:not(.footer-whatsapp):not(.footer-email)::after { content: ""; position: absolute; left: 0; bottom: 4px; width: 0; height: 1px; background: var(--gold-light); transition: width .25s ease; }
.footer-column > a:not(.footer-whatsapp):not(.footer-email):hover, .footer-column > a:not(.footer-whatsapp):not(.footer-email):focus-visible { color: #fff; transform: translateX(4px); }
.footer-column > a:not(.footer-whatsapp):not(.footer-email):hover::after, .footer-column > a:not(.footer-whatsapp):not(.footer-email):focus-visible::after { width: 100%; }
.footer-cookie-settings { position: relative; margin: 0; padding: 8px 0; color: rgba(255,255,255,.74); background: transparent; border: 0; font: inherit; font-size: 14px; font-weight: 650; line-height: 1.3; text-align: left; cursor: pointer; transition: color .2s ease, transform .2s ease; }
.footer-cookie-settings::after { content: ""; position: absolute; left: 0; bottom: 4px; width: 0; height: 1px; background: var(--gold-light); transition: width .25s ease; }
.footer-cookie-settings:hover, .footer-cookie-settings:focus-visible { color: #fff; transform: translateX(4px); }
.footer-cookie-settings:hover::after, .footer-cookie-settings:focus-visible::after { width: 100%; }
.footer-whatsapp { width: 100%; min-height: 66px; padding: 12px 15px; display: flex; align-items: center; gap: 12px; color: #fff; background: linear-gradient(145deg, rgba(42,200,112,.18), rgba(24,173,92,.08)); border: 1px solid rgba(48,215,125,.48); border-radius: 18px; box-shadow: inset 0 1px 0 rgba(255,255,255,.06); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.footer-whatsapp:hover, .footer-whatsapp:focus-visible { transform: translateY(-3px); border-color: #36dd80; box-shadow: 0 16px 34px rgba(13,124,65,.18), 0 0 24px rgba(47,225,127,.12); }
.footer-whatsapp svg { width: 28px; height: 28px; flex: none; fill: #35d87c; }
.footer-whatsapp span { min-width: 0; display: grid; gap: 2px; font-size: 13px; font-weight: 850; line-height: 1.25; }
.footer-whatsapp small, .footer-email small { color: rgba(255,255,255,.48); font-size: 9px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-email { max-width: 100%; margin-top: 17px; display: grid; gap: 5px; color: rgba(255,255,255,.82); font-size: 12px; font-weight: 750; overflow-wrap: anywhere; transition: color .2s ease; }
.footer-email:hover, .footer-email:focus-visible { color: var(--gold-light); }
.footer-response { margin-top: 16px; color: rgba(255,255,255,.38); font-size: 10px; line-height: 1.55; }
.footer-more { grid-column: 1 / -1; margin-top: 18px; padding-top: 24px; display: flex; align-items: center; justify-content: space-between; gap: 22px; border-top: 1px solid rgba(214,173,98,.22); }
.footer-more > span { color: rgba(255,255,255,.46); font-size: 9px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.footer-more > div { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 10px; }
.footer-more a { min-height: 39px; padding: 9px 14px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; color: rgba(255,255,255,.78); background: rgba(255,255,255,.035); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; font-size: 11px; font-weight: 800; transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease; }
.footer-more a:hover, .footer-more a:focus-visible { color: #17120a; background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }
.footer-more svg { width: 15px; height: 15px; flex: none; }
.footer-bottom { position: relative; padding: 24px 0 30px; display: grid; grid-template-columns: auto minmax(260px,1fr) auto; gap: 28px; align-items: center; color: rgba(255,255,255,.5); border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; line-height: 1.5; }
.footer-disclaimer { text-align: center; }
.footer-credit { justify-self: end; color: rgba(255,255,255,.62); transition: color .2s ease; }
.footer-credit:hover, .footer-credit:focus-visible { color: var(--gold-light); }
.cookie-consent { position: fixed; left: 50%; bottom: 20px; z-index: 9998; width: min(1180px, calc(100% - 36px)); padding: 22px 24px; display: grid; grid-template-columns: 58px minmax(0, 1fr) auto; gap: 20px 24px; align-items: center; color: #fff; background: linear-gradient(135deg, rgba(17,17,17,.985), rgba(6,6,6,.985)); border: 1px solid rgba(226,188,112,.82); border-radius: 24px; box-shadow: 0 28px 80px rgba(0,0,0,.48), 0 0 36px rgba(214,173,98,.16), inset 0 1px 0 rgba(255,255,255,.08); opacity: 0; transform: translate(-50%, 26px); transition: opacity .28s ease, transform .28s ease; }
.cookie-consent[hidden] { display: none; }
.cookie-consent.is-visible { opacity: 1; transform: translate(-50%, 0); }
.cookie-consent::before { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; background: radial-gradient(circle at 10% 10%, rgba(214,173,98,.13), transparent 30%); }
.cookie-consent-icon { position: relative; width: 58px; height: 58px; display: grid; place-items: center; color: #17120a; background: linear-gradient(145deg, #f3d99f, var(--gold)); border-radius: 18px; box-shadow: 0 10px 28px rgba(214,173,98,.22); }
.cookie-consent-icon svg { width: 32px; height: 32px; }
.cookie-consent-copy { position: relative; min-width: 0; }
.cookie-consent-copy > span { color: var(--gold-light); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.cookie-consent-copy h2 { margin: 4px 0 6px; color: #fff; font-size: clamp(20px, 2vw, 26px); line-height: 1.15; letter-spacing: -.025em; }
.cookie-consent-copy p { max-width: 730px; margin: 0; color: rgba(255,255,255,.68); font-size: 12px; line-height: 1.55; }
.cookie-consent-copy a { color: var(--gold-light); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.cookie-consent-actions { position: relative; display: grid; grid-template-columns: auto auto; gap: 10px; }
.cookie-button { min-width: 184px; min-height: 48px; padding: 12px 19px; display: inline-flex; align-items: center; justify-content: center; color: #fff; background: rgba(214,173,98,.1); border: 1px solid rgba(226,188,112,.72); border-radius: 999px; font: inherit; font-size: 12px; font-weight: 900; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
.cookie-button:hover { color: #17120a; background: linear-gradient(135deg, #f4dba3, var(--gold)); border-color: var(--gold-light); box-shadow: 0 12px 30px rgba(214,173,98,.28); transform: translateY(-2px); }
.cookie-button:focus-visible { outline: 2px solid #fff; outline-offset: 3px; box-shadow: 0 0 0 5px rgba(214,173,98,.22); }
.whatsapp-float { position: fixed; right: 22px; bottom: 22px; z-index: 50; width: 72px; height: 52px; display: grid; place-items: center; overflow: hidden; color: var(--white); background: linear-gradient(145deg, #2fe17f, #18ad5c); border: 2px solid rgba(255,255,255,.95); border-radius: 999px; box-shadow: 0 12px 32px rgba(11,109,56,.32), 0 0 0 1px rgba(214,173,98,.3); transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease; }
.whatsapp-float::before { content: ""; position: absolute; top: -50%; left: -70%; width: 38%; height: 200%; transform: skewX(-24deg); background: linear-gradient(90deg, transparent, rgba(255,255,255,.62), transparent); transition: left .62s ease; }
.whatsapp-float:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 17px 38px rgba(11,109,56,.42), 0 0 24px rgba(47,225,127,.36); }
.whatsapp-float:hover::before, .whatsapp-float:focus-visible::before { left: 135%; }
.whatsapp-float svg { position: relative; z-index: 1; width: 29px; height: 29px; fill: currentColor; stroke: none; }
.mobile-bottom-cta { display: none; }
.cursor-trail { position: fixed; inset: 0; z-index: 9997; width: 100%; height: 100%; pointer-events: none; opacity: 0; transition: opacity .2s ease; }
.cursor-dot { position: fixed; left: 0; top: 0; z-index: 9999; width: 11px; height: 11px; margin: -5.5px 0 0 -5.5px; pointer-events: none; opacity: 0; border-radius: 50%; background: var(--gold-light); box-shadow: 0 0 0 4px rgba(214,173,98,.16), 0 0 18px rgba(214,173,98,.82); transform: translate3d(-50px,-50px,0); transition: width .16s ease, height .16s ease, margin .16s ease, opacity .2s ease; }
.cursor-dot.is-active, .cursor-trail.is-active { opacity: 1; }
.cursor-dot.is-hovering { width: 18px; height: 18px; margin: -9px 0 0 -9px; background: var(--gold); }

.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .65s ease, transform .65s ease; }
.js [data-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } .js [data-reveal] { opacity: 1; transform: none; } }

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .header-inner { grid-template-columns: 1fr auto auto; }
  .menu-toggle { display: block; }
  .hero-offer { grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr); gap: 22px; }
  .offer-card { padding: 0 0 19px; }
  .offer-card-head h2 { font-size: 25px; }
  .problem-grid, .positioning-grid { gap: 60px; }
  .curriculum-heading { gap: 52px; }
  .outcome-grid { grid-template-columns: repeat(2, 1fr); }
  .outcome-grid article:nth-child(2) { border-right: 0; }
  .outcome-grid article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .booking-grid { gap: 52px; }
  .faq-grid-wrap { gap: 60px; }
  .complete-offer-grid { grid-template-columns: 1fr; gap: 46px; }
  .complete-offer-copy { max-width: 780px; }
  .certificate-experience { grid-template-columns: minmax(280px, .8fr) minmax(410px, 1.2fr); gap: 34px; }
}

@media (max-width: 920px) {
  .hero-offer,
  .problem-grid,
  .positioning-grid,
  .booking-grid,
  .faq-grid-wrap,
  .confidence-heading,
  .curriculum-heading,
  .ipad-bonus,
  .payment-models,
  .certificate-experience,
  .footer-main { grid-template-columns: 1fr; }
  .hero-offer { max-width: 680px; }
  .offer-card { max-width: 600px; margin-inline: auto; }
  .confidence-card, .fit-journey { grid-template-columns: 1fr; }
  .confidence-arrow { min-height: 66px; }
  .confidence-arrow svg { transform: rotate(90deg); }
  .confidence-chain { grid-column: auto; }
  .booking-copy, .faq-title { position: static; }
  .fit-journey article + article { border-left: 0; border-top: 1px solid rgba(169,120,47,.28); }
  .ipad-visual { margin-inline: auto; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 32px, 680px); }
  .section { padding: 82px 0; }
  .site-header { height: 68px; }
  .header-inner { grid-template-columns: 1fr auto; }
  .brand img { width: 50px; height: 50px; }
  .brand-wordmark strong { font-size: 11px; }
  .brand-wordmark small { font-size: 6px; }
  .header-cta { display: none; }
  .mobile-menu { top: 68px; height: calc(100dvh - 68px); min-height: 0; overflow-y: auto; overscroll-behavior: contain; }
  .hero-shell { padding-top: 34px; }
  .hero h1 { font-size: clamp(36px, 9.5vw, 53px); }
  .hero-lead { font-size: 17px; }
  .hero-offer { grid-template-columns: 1fr; }
  .offer-card { max-width: 600px; margin-inline: auto; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof > div { padding: 14px 4px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero-proof > div:last-child { border-bottom: 0; }
  .video-proof { width: min(100%, 620px); margin-inline: auto; }
  .revenue-lab { grid-template-columns: 1fr; }
  .revenue-results { grid-column: auto; }
  .revenue-lab > .button { grid-column: auto; }
  .problem-grid, .positioning-grid, .booking-grid, .faq-grid-wrap { grid-template-columns: 1fr; gap: 46px; }
  .confidence-heading { grid-template-columns: 1fr; gap: 24px; }
  .confidence-heading > p { max-width: 680px; }
  .confidence-card { grid-template-columns: 1fr; }
  .confidence-arrow { min-height: 66px; }
  .confidence-arrow svg { transform: rotate(90deg); }
  .confidence-chain { grid-column: auto; }
  .problem-stack article:nth-child(n) { margin-left: 0; }
  .split-heading { grid-template-columns: 1fr; gap: 24px; }
  .split-heading .rating-badge { justify-self: center; }
  .contrast-grid { grid-template-columns: 1fr; }
  .contrast-arrow { height: 48px; transform: rotate(90deg); }
  .curriculum-heading { grid-template-columns: 1fr; gap: 24px; }
  .curriculum-heading > p { max-width: 680px; }
  .module-topic-grid { grid-template-columns: 1fr; }
  .module-topic-grid article { min-height: 0; }
  .module-result { grid-template-columns: 1fr; gap: 8px; }
  .complete-offer-grid, .ipad-bonus { grid-template-columns: 1fr; gap: 42px; }
  .ipad-visual { margin-inline: auto; }
  .payment-models { padding: 34px; grid-template-columns: 1fr; gap: 30px; }
  .payment-models-copy > p:last-child { max-width: 650px; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .fit-journey { grid-template-columns: 1fr; }
  .fit-journey article { min-height: 0; text-align: center; }
  .fit-journey article + article { border-left: 0; border-top: 1px solid rgba(169,120,47,.28); }
  .facts-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .booking-copy, .faq-title { position: static; }
  .offer-recap-grid { grid-template-columns: 1fr; gap: 30px; }
  .certificate-experience { grid-template-columns: 1fr; padding: 42px; }
  .certificate-copy { text-align: center; }
  .certificate-copy .eyebrow { justify-content: center; }
  .certificate-copy h3 { margin-inline: auto; }
  .certificate-copy > p:not(.eyebrow) { max-width: 650px; margin-inline: auto; }
  .certificate-benefits { max-width: 600px; margin-inline: auto; text-align: left; }
  .certificate-name-field { max-width: 560px; margin-inline: auto; margin-bottom: 23px; text-align: left; }
  .certificate-copy .button { margin-inline: auto; }
  .certificate-visual { width: min(100%, 720px); margin: 18px auto -18px; }
  .footer-main { grid-template-columns: 1fr; gap: 54px; }
  .footer-brand { max-width: 760px; }
  .footer-directory { grid-template-columns: minmax(140px,.8fr) minmax(220px,1.25fr) minmax(120px,.7fr); }
  .footer-bottom { grid-template-columns: 1fr 1fr; }
  .footer-disclaimer { text-align: left; }
  .footer-credit { justify-self: end; }
  .cookie-consent { width: calc(100% - 28px); max-height: calc(100dvh - 32px); padding: 20px; grid-template-columns: 48px minmax(0, 1fr); gap: 16px; overflow-y: auto; }
  .cookie-consent-icon { width: 48px; height: 48px; border-radius: 15px; }
  .cookie-consent-actions { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cookie-button { width: 100%; min-width: 0; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom)); }
  h1, h2, h3 { hyphens: none; overflow-wrap: break-word; text-wrap: balance; }
  .eyebrow { width: 100%; display: block; line-height: 1.5; text-align: inherit; }
  .eyebrow::before, .eyebrow::after { content: none; display: none; }
  .module-title strong { hyphens: auto; overflow-wrap: break-word; }
  h2 { font-size: clamp(31px, 8.5vw, 36px); }
  .button { max-width: 100%; text-align: center; white-space: normal; }
  .hero-kicker { font-size: 10px; }
  .hero h1 { font-size: clamp(34px, 9.5vw, 39px); }
  .hero-shell { padding-bottom: 70px; }
  .brand-wordmark { display: none; }
  .hero-offer { margin-top: 24px; }
  .offer-card { padding: 0 0 18px; border-radius: 22px; }
  .offer-card::before { inset: -8px; border-radius: 30px; }
  .offer-card-topline { min-height: 46px; padding: 10px 16px; border-radius: 19px 19px 0 0; }
  .offer-card-topline > span { max-width: 210px; font-size: 8px; line-height: 1.35; }
  .offer-card-head { padding: 20px 18px 16px; text-align: center; }
  .offer-card-head h2 { font-size: 24px; }
  .offer-card-head p { font-size: 12px; }
  .offer-value-stack { margin: 14px 14px 12px; }
  .offer-value-stack article { min-height: 88px; padding: 11px; grid-template-columns: 46px minmax(0,1fr); gap: 11px; }
  .offer-value-icon { width: 46px; height: 46px; border-radius: 13px; }
  .offer-value-icon svg { width: 24px; height: 24px; }
  .offer-value-stack strong { font-size: 14px; }
  .offer-extra-panel, .offer-outcome { margin-inline: 14px; }
  .offer-actions { margin-inline: 14px; }
  .offer-actions .button { min-height: 56px; }
  .offer-whatsapp-button { min-height: 53px; padding-inline: 13px; font-size: 11px; }
  .offer-reassurance { margin-inline: 17px; }
  .video-proof { grid-template-columns: 1fr; gap: 13px; }
  .hero-certificate-preview { padding: 6px 6px 0; border-radius: 17px; }
  .hero-certificate-preview img { border-radius: 10px; }
  .hero-certificate-caption { min-height: 66px; padding-inline: 8px; display: grid; justify-items: center; gap: 4px; text-align: center; }
  .hero-certificate-caption b { font-size: 12px; }
  .hero-certificate-caption small { max-width: none; font-size: 9px; text-align: center; }
  .hero-certificate-stack .video-proof { min-height: 0; padding: 24px 20px; }
  .video-rating { padding-bottom: 12px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
  .trust-seals { grid-column: auto; gap: 12px; }
  .trust-seal-hwk { width: 82px; height: 82px; }
  .trust-seal-hwk > img { width: 82px; height: 82px; }
  .trust-chamber-logo > img { width: 100%; max-height: 58px; }
  .seo-facts { padding-block: 72px; }
  .facts-grid { grid-template-columns: 1fr; }
  .facts-grid > div { min-height: 0; padding: 23px 21px; text-align: center; }
  .value-engine-heading > p:last-child { font-size: 16px; }
  .revenue-lab { padding: 30px 20px; }
  .revenue-copy { text-align: center; }
  .revenue-copy > p:last-child { margin-inline: auto; }
  .revenue-controls label > span { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 8px; align-items: end; }
  .revenue-controls output { white-space: nowrap; }
  .revenue-controls input[type="range"] { height: 44px; background-size: 100% 5px; background-position: center; background-repeat: no-repeat; }
  .calculated-price { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .calculated-price-label { justify-items: center; }
  .calculated-price > p { grid-column: auto; }
  .revenue-results { grid-template-columns: 1fr; }
  .revenue-results > div { min-height: 100px; justify-items: center; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); text-align: center; }
  .revenue-results > div:last-child { border-bottom: 0; }
  .revenue-results strong { white-space: nowrap; font-variant-numeric: tabular-nums; }
  .revenue-lab > .button { width: 100%; }
  .section-cta { padding: 18px; display: grid; text-align: center; border-left-width: 1px; border-top: 3px solid var(--gold); }
  .section-cta .button { width: 100%; }
  .conversion-moment { padding: 0; }
  .hero-proof { margin-top: 20px; }
  .problem-stack p { font-size: 16px; }
  .contrast, .section { padding-block: 72px; }
  .contrast-grid article { padding: 30px 24px; }
  .confidence-heading { margin-bottom: 34px; }
  .confidence-heading h2 { font-size: clamp(31px, 8.5vw, 35px); }
  .confidence-heading > p { margin-inline: auto; padding-left: 0; border-left: 0; font-size: 16px; }
  .confidence-card { padding: 7px; border-radius: 24px; }
  .confidence-pain, .confidence-result { padding: 30px 22px; border-radius: 17px; }
  .confidence-card h3 { font-size: 26px; }
  .confidence-arrow { min-height: 50px; }
  .confidence-chain { padding: 16px; display: grid; grid-template-columns: 1fr; gap: 8px; }
  .confidence-chain span { width: 100%; padding: 12px 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(214,173,98,.18); border-radius: 9px; text-align: left; }
  .confidence-chain i { display: none; }
  .outcome-grid { grid-template-columns: 1fr; }
  .outcome-grid article { min-height: 245px; border-right: 0; border-bottom: 1px solid var(--line); }
  .outcome-grid article:last-child { border-bottom: 0; }
  .outcome-icon { margin-bottom: 36px; }
  .curriculum-heading { margin-bottom: 34px; grid-template-columns: minmax(0, 1fr); }
  .curriculum-heading > * { min-width: 0; }
  .curriculum-heading h2 { width: 100%; max-width: 100%; font-size: clamp(28px, 7.8vw, 35px); }
  .curriculum-heading h2 span { width: 100%; max-width: 100%; }
  .curriculum-heading > p { margin-inline: auto; padding-left: 0; border-left: 0; font-size: 15px; }
  .module-accordion { border-radius: 22px; }
  .module-accordion summary { min-height: 86px; grid-template-columns: 46px minmax(0,1fr) 36px; gap: 11px; padding: 13px 14px; }
  .module-index { width: 38px; height: 38px; font-size: 11px; }
  .module-title strong { font-size: 16px; }
  .module-category { display: none; }
  .module-accordion summary > b { width: 34px; height: 34px; font-size: 20px; }
  .module-detail { padding: 24px 14px 20px; }
  .module-intro { margin-bottom: 18px; padding-left: 14px; font-size: 14px; }
  .module-topic-grid article { padding: 18px; border-radius: 14px; }
  .module-result { padding: 18px; text-align: center; }
  .confidence-heading .eyebrow, .curriculum-heading .eyebrow, .positioning-title .eyebrow, .revenue-copy .eyebrow { justify-content: center; }
  .certificate-experience { margin-top: 44px; padding: 30px 18px 24px; border-radius: 24px; }
  .certificate-copy h3 { font-size: clamp(29px, 8.3vw, 35px); }
  .certificate-copy > p:not(.eyebrow) { font-size: 14px; }
  .certificate-copy .button { width: 100%; }
  .certificate-visual { width: 100%; margin-inline: 0; margin-bottom: 0; transform: none; }
  .certificate-visual:hover { transform: translateY(-3px); }
  .certificate-halo { padding: 5px; border-radius: 7px; }
  .certificate-visual figcaption { font-size: 9px; line-height: 1.45; letter-spacing: .03em; text-transform: none; }
  .certificate-caption > span:first-child { max-width: 270px; }
  .certificate-expand { width: min(100%, 280px); font-size: 12px; }
  .certificate-dialog { width: 100%; height: 100dvh; margin: 0; border: 0; border-radius: 0; }
  .certificate-dialog-head { min-height: 68px; padding: calc(10px + env(safe-area-inset-top)) 14px 10px; }
  .certificate-dialog-canvas { padding: 16px; }
  .certificate-dialog-controls { position: relative; z-index: 2; gap: 9px; padding-inline: 12px; }
  .certificate-dialog-controls label { width: min(42vw, 220px); }
  .included-list-head { padding: 22px; align-items: flex-start; flex-direction: column; gap: 14px; }
  .included-list-columns { grid-template-columns: 1fr; }
  .included-group { padding: 22px; }
  .included-group + .included-group { border-left: 0; border-top: 1px solid var(--line); }
  .included-exclusive { padding: 20px; grid-template-columns: 1fr; gap: 16px; }
  .premium-included-list .bonus-row { display: grid; align-items: start; gap: 12px; }
  .premium-included-list .bonus-row > b { justify-self: start; }
  .apple-line { min-width: 0; flex-wrap: wrap; }
  .complete-offer-copy .button, .ipad-copy .button { width: 100%; }
  .ipad-bonus { padding: 34px 20px; }
  .ipad-visual { max-width: 340px; margin-bottom: 24px; }
  .ipad-certificate-float { right: 0; bottom: -2%; width: 46%; }
  .ipad-bonus-pill { top: 14px; left: 14px; padding: 9px 12px; font-size: 9px; }
  .ipad-copy h2 { font-size: clamp(31px, 8.4vw, 36px); }
  .apple-heading { justify-content: center; align-items: center; gap: 11px; text-align: center; }
  .apple-heading span { min-width: 0; }
  .ipad-copy .check-list, .booking-copy .check-list { width: min(100%, 430px); max-width: 430px; margin-inline: auto; display: grid; gap: 8px; text-align: center; }
  .ipad-copy .check-list li, .booking-copy .check-list li { width: 100%; min-width: 0; padding: 12px 42px; background: rgba(255,255,255,.7); border: 1px solid rgba(169,120,47,.25); border-radius: 12px; text-align: center; overflow-wrap: anywhere; }
  .ipad-copy .check-list li::before, .booking-copy .check-list li::before { left: 14px; top: 50%; width: 22px; height: 22px; display: grid; place-items: center; transform: translateY(-50%); background: rgba(40,123,91,.1); border-radius: 50%; font-size: 13px; }
  .payment-models { padding: 30px 20px; border-radius: 22px; }
  .payment-models h3 { font-size: 30px; }
  .payment-models-copy > p:last-child { margin-inline: auto; }
  .payment-brand { height: 66px; padding: 12px; }
  .payment-models-action .button { padding-inline: 16px; }
  .payment-models-action > small { font-size: 10px; }
  .video-grid { grid-template-columns: 1fr; }
  .review-column { grid-column: auto; }
  .proof-video video { aspect-ratio: 4 / 4.7; }
  .rating-badge { width: 100%; min-height: 0; grid-template-columns: 1fr; justify-items: center; gap: 6px; border-left-width: 1px; border-top: 3px solid var(--gold); text-align: center; }
  .rating-badge img, .rating-badge > span, .rating-badge > .external-brand-fallback { grid-row: auto; }
  .rating-badge img { width: 112px; }
  .rating-badge > .external-brand-fallback { width: 112px; }
  .rating-badge > span { font-size: 27px; }
  .rating-badge strong { font-size: 29px; }
  .review-column blockquote { padding: 24px; font-size: 17px; }
  .fit-journey { margin-top: 34px; }
  .fit-journey article { padding: 30px 24px; }
  .fit-journey article::before { margin-bottom: 18px; font-size: 40px; }
  .fit-statement { margin-top: 34px; }
  .fit-cta { width: 100%; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .booking-card { padding: 28px 20px; }
  .booking-card-head { display: grid; justify-items: center; text-align: center; }
  .booking-head-mark { width: 56px; height: 56px; }
  .booking-card-head h3 { font-size: clamp(28px, 8vw, 34px); }
  .whatsapp-button { width: 100%; }
  .booking-card input:not([type="checkbox"]), .booking-card select, .booking-card textarea { font-size: 16px; }
  .booking-card .privacy input { width: 18px; height: 18px; padding: 0; }
  .whatsapp-box { display: grid; }
  .faq { padding-block: 72px 58px; }
  .faq-list details p { margin: -2px 0 22px; }
  .faq-list summary span { flex: none; }
  .site-footer { padding-bottom: calc(70px + env(safe-area-inset-bottom)); }
  .footer-main { padding: 64px 0 48px; gap: 46px; }
  .footer-brand { max-width: none; text-align: center; }
  .footer-logo { margin-inline: auto; }
  .footer-logo img { width: 190px; height: 60px; object-position: center; }
  .footer-kicker { margin-top: 22px !important; }
  .footer-brand h2 { margin-inline: auto; font-size: clamp(37px, 10.6vw, 46px); }
  .footer-brand > p:not(.footer-kicker) { margin-inline: auto; }
  .footer-primary { margin-inline: auto; }
  .footer-directory { grid-template-columns: 1fr 1fr; gap: 42px 30px; }
  .footer-contact { grid-column: 1 / -1; grid-row: 2; align-items: center; }
  .footer-contact > strong { align-self: center; }
  .footer-legal { align-items: flex-end; text-align: right; }
  .footer-whatsapp { width: min(100%, 340px); }
  .footer-email { text-align: center; }
  .footer-response { text-align: center; }
  .footer-more { margin-top: 2px; padding-top: 25px; align-items: stretch; flex-direction: column; }
  .footer-more > span { text-align: center; }
  .footer-more > div { display: grid; grid-template-columns: 1fr; justify-content: stretch; }
  .footer-more a { width: 100%; min-height: 46px; }
  .footer-bottom { padding: 23px 0 28px; display: grid; grid-template-columns: 1fr; justify-items: center; gap: 10px; text-align: center; }
  .footer-disclaimer { text-align: center; }
  .footer-credit { justify-self: center; }
  .footer-legal .footer-cookie-settings { align-self: flex-end; text-align: right; }
  .cookie-consent { bottom: calc(70px + env(safe-area-inset-bottom)); width: calc(100% - 24px); max-height: calc(100dvh - 92px - env(safe-area-inset-bottom)); padding: 20px; grid-template-columns: 46px minmax(0, 1fr); gap: 15px 14px; align-items: start; overflow-y: auto; border-radius: 22px; }
  .cookie-consent-icon { width: 46px; height: 46px; margin-top: 3px; border-radius: 15px; }
  .cookie-consent-icon svg { width: 27px; height: 27px; }
  .cookie-consent-copy h2 { font-size: 21px; }
  .cookie-consent-copy p { font-size: 12px; }
  .cookie-consent-actions { grid-column: 1 / -1; grid-template-columns: 1fr; }
  .cookie-button { width: 100%; min-height: 48px; }
  .whatsapp-float { right: 13px; bottom: calc(70px + env(safe-area-inset-bottom)); width: 62px; height: 46px; display: grid; }
  .whatsapp-float svg { width: 27px; height: 27px; }
  .mobile-bottom-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; height: calc(58px + env(safe-area-inset-bottom)); padding-bottom: env(safe-area-inset-bottom); display: grid; place-items: center; color: #17120a; background: linear-gradient(135deg, #efd59e, var(--gold)); font-size: 13px; font-weight: 900; transition: opacity .22s ease, transform .22s ease; }

  :is(.value-engine-heading, .confidence-heading, .curriculum-heading, .complete-offer-copy, .proof .split-heading, .payment-models-copy, .faq-title, .section-heading.centered, .offer-recap-grid > div:first-child) { text-align: center; }
  .complete-offer-copy > p:not(.eyebrow), .payment-models-copy > p:last-child, .faq-title p:last-child { margin-inline: auto; }

  :is(.ipad-copy, .positioning-title, .positioning-copy, .booking-copy) { width: 100%; max-width: 680px; margin-inline: auto; text-align: center; }
  :is(.ipad-copy, .positioning-title, .booking-copy) .eyebrow { text-align: center; }
  :is(.ipad-copy, .positioning-title, .booking-copy) h2 { text-wrap: balance; text-align: center; }
  .ipad-copy > p:not(.eyebrow), .positioning-copy > p, .booking-copy > p:not(.eyebrow) { margin-inline: auto; text-align: center; }
  .ipad-copy > small { width: 100%; display: block; text-align: center; }
  .positioning-grid, .booking-grid { gap: 30px; }
  .positioning-impact-title { display: grid; gap: 5px; }
  .positioning-impact-title span { display: block; }
  .value-lines { width: 100%; margin-inline: auto; display: grid; gap: 10px; border-top: 0; }
  .value-lines span { padding: 15px 18px; display: grid; grid-template-columns: 1fr; justify-items: center; align-items: center; gap: 8px; background: rgba(255,255,255,.72); border: 1px solid rgba(169,120,47,.28); border-radius: 14px; text-align: center; }
  .value-lines b { width: 30px; height: 30px; display: grid; place-items: center; background: #f1e2c3; border-radius: 50%; }
  .positioning-copy .legal-line { text-align: center; }

  .offer-recap-grid > .check-list { width: min(100%, 520px); display: grid; grid-template-columns: minmax(0, 1fr); justify-content: stretch; gap: 10px; padding-inline: 8px; }
  .offer-recap-grid > .check-list li { width: 100%; min-width: 0; padding: 14px 44px; background: var(--paper); border: 1px solid rgba(169,120,47,.3); border-radius: 13px; text-align: center; overflow-wrap: anywhere; }
  .offer-recap-grid > .check-list li::before { left: 14px; top: 50%; width: 22px; height: 22px; display: grid; place-items: center; transform: translateY(-50%); color: #2d210f; background: linear-gradient(135deg, #f3dba8, var(--gold)); border-radius: 50%; font-size: 12px; }
}

@media (max-width: 430px) {
  .trust-seals { gap: 10px; }
  .trust-seal-hwk { width: 78px; height: 78px; }
  .trust-seal-hwk > img { width: 78px; height: 78px; }
  .footer-directory { grid-template-columns: 1fr; gap: 34px; text-align: center; }
  .footer-contact { grid-column: auto; grid-row: auto; }
  .footer-column, .footer-contact, .footer-legal { align-items: center; text-align: center; }
  .footer-legal .footer-cookie-settings { align-self: center; text-align: center; }
}

@media (max-width: 360px) {
  .certificate-dialog-controls { gap: 6px; padding-inline: 8px; }
  .certificate-dialog-close, .certificate-dialog-controls button { width: 38px; height: 38px; }
  .certificate-dialog-controls label { width: min(34vw, 150px); }
  .certificate-dialog-controls output { min-width: 43px; font-size: 11px; }
}
