:root {
  --bg: #0f0d0a;
  --bg-soft: #16130e;
  --card: #1b1712;
  --card-border: rgba(212, 175, 80, 0.14);
  --text: #f5f1e8;
  --muted: #a59c88;
  --gold: #e8c25a;
  --gold-soft: #f3d98a;
  --gold-deep: #c79b3b;
  --gradient-gold: linear-gradient(135deg, #f3d98a, #d4a73c);
  --shadow-gold: 0 20px 60px -18px rgba(212, 175, 80, 0.4);
  --shadow-card: 0 24px 60px -28px rgba(0, 0, 0, 0.7);
  --radius: 18px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: "Sora", sans-serif; letter-spacing: -0.02em; line-height: 1.1; }

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

.container { width: 100%; max-width: 1140px; margin: 0 auto; padding: 0 22px; }
.container.narrow { max-width: 760px; }

.gold-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 600; font-family: "Manrope", sans-serif;
  border-radius: 12px; padding: 11px 22px; cursor: pointer;
  transition: transform .25s ease, filter .25s ease, background .25s ease;
  border: 1px solid transparent; font-size: 15px;
}
.btn-gold { background: var(--gradient-gold); color: #1a1407; box-shadow: var(--shadow-gold); }
.btn-gold:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn-outline { border-color: rgba(232,194,90,0.4); color: var(--text); background: transparent; }
.btn-outline:hover { background: rgba(232,194,90,0.1); border-color: rgba(232,194,90,0.75); }
.btn-lg { padding: 13px 28px; font-size: 16px; }
.btn-xl { padding: 16px 34px; font-size: 17px; border-radius: 14px; }

/* NAV */
.nav { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 12px 0; }
.nav-inner {
  max-width: 1140px; margin: 0 auto; display: flex; align-items: center; gap: 18px;
  justify-content: space-between; padding: 12px 18px;
  background: rgba(27,23,18,0.6); backdrop-filter: blur(16px);
  border: 1px solid var(--card-border); border-radius: 16px;
  width: calc(100% - 36px);
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { height: 38px; width: auto; display: block; }
.footer-logo { height: 46px; margin-bottom: 4px; }
.nav-links { display: flex; gap: 26px; }
.nav-links a { color: var(--muted); font-size: 14px; transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; }

/* HERO */
.hero { position: relative; padding: 150px 0 90px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -160px; left: 50%; transform: translateX(-50%);
  width: 620px; height: 620px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,194,90,0.16), transparent 62%);
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; position: relative; }
.badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted);
  padding: 7px 15px; border-radius: 999px; border: 1px solid var(--card-border);
  background: rgba(27,23,18,0.55); margin-bottom: 22px;
}
.stars { color: var(--gold); letter-spacing: 2px; }
.hero h1 { font-size: clamp(34px, 5.4vw, 60px); font-weight: 800; }
.lead { color: var(--muted); font-size: 18px; margin-top: 20px; max-width: 480px; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }
.hero-trust { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 24px; margin-top: 34px; color: var(--muted); font-size: 14px; }
.hero-trust li { color: var(--gold-soft); }
.hero-media { position: relative; width: 100%; max-width: 480px; margin-inline: auto; }
.hero-media img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow-card); border: 1px solid var(--card-border); }
.hero-media-glow {
  position: absolute; inset: -30px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,194,90,0.22), transparent 65%);
  filter: blur(30px); z-index: -1;
}

/* SECTIONS */
.section { padding: 84px 0; position: relative; }
.section-head { text-align: center; max-width: 620px; margin: 0 auto 50px; }
.eyebrow { color: var(--gold); font-size: 13px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-top: 12px; }
.section-head p { color: var(--muted); margin-top: 14px; }
h2 { font-size: clamp(28px, 4vw, 40px); }

/* CARDS / GRIDS */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 26px; position: relative; transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(232,194,90,0.4); box-shadow: var(--shadow-gold); }
.icon-box {
  width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center;
  font-size: 22px; background: var(--gradient-gold);
}
.icon-box.sm { width: 44px; height: 44px; font-size: 20px; background: #241f17; border: 1px solid var(--card-border); }
.card h3 { font-size: 19px; margin-top: 18px; }
.card p { color: var(--muted); margin-top: 8px; font-size: 14.5px; }
.step-num { position: absolute; top: 20px; right: 22px; font-family: "Sora"; font-weight: 800; font-size: 46px; color: rgba(232,194,90,0.13); }

/* WHY */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.why-media { position: relative; width: 100%; max-width: 480px; margin-inline: auto; }
.why-media img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; }
.benefits-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: center; }
.benefits-media { position: relative; width: 100%; max-width: 420px; margin-inline: auto; }
.benefits-media img { display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: contain; }
.benefits-media-glow {
  position: absolute; inset: -10%; border-radius: 50%; z-index: -1;
  background: conic-gradient(from 0deg, rgba(232,194,90,0.0), rgba(243,217,138,0.35), rgba(199,155,59,0.25), rgba(232,194,90,0.0));
  filter: blur(46px);
  animation: glowspin 12s linear infinite, glowpulse 5s ease-in-out infinite;
}
.float-plaque {
  animation: floaty 5s ease-in-out infinite;
  filter: drop-shadow(0 18px 30px rgba(232,194,90,0.35)) drop-shadow(0 34px 60px rgba(0,0,0,0.6));
}
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(0deg); } 50% { transform: translateY(-16px) rotate(-1.2deg); } }
.why-media-glow {
  position: absolute; inset: -10%; border-radius: 50%; z-index: -1;
  background: conic-gradient(from 0deg, rgba(232,194,90,0.0), rgba(243,217,138,0.35), rgba(199,155,59,0.25), rgba(232,194,90,0.0));
  filter: blur(46px);
  animation: glowspin 12s linear infinite, glowpulse 5s ease-in-out infinite;
}
@keyframes glowspin { to { transform: rotate(360deg); } }
@keyframes glowpulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
.why-list { margin-top: 28px; }
.sm-card { padding: 20px; }
.sm-card h3 { font-size: 16px; margin-top: 12px; }
.sm-card p { font-size: 13.5px; margin-top: 5px; }
.why-cta { margin-top: 28px; }
#why .lead { margin-top: 16px; }

/* FAQ */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--card); border: 1px solid var(--card-border); border-radius: 14px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; color: var(--text);
  font-family: "Sora"; font-weight: 600; font-size: 16.5px; padding: 18px 20px; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-icon { color: var(--gold); font-size: 22px; transition: transform .25s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { color: var(--muted); padding: 0 20px 18px; font-size: 15px; }

/* CONTACT */
.contact-card {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  background: rgba(27,23,18,0.6); backdrop-filter: blur(14px);
  border: 1px solid var(--card-border); border-radius: 26px; padding: 40px;
}
.contact-list { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.contact-list a { display: flex; align-items: center; gap: 12px; color: var(--text); font-size: 15px; transition: color .2s; }
.contact-list a:hover { color: var(--gold); }
.ci { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: #241f17; border: 1px solid var(--card-border); }
.contact-info .lead { margin-top: 14px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form label { display: flex; flex-direction: column; gap: 7px; font-size: 14px; color: var(--muted); }
.contact-form input, .contact-form textarea {
  background: #14110c; border: 1px solid var(--card-border); border-radius: 11px;
  padding: 12px 14px; color: var(--text); font-family: "Manrope"; font-size: 15px; resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.form-note { color: var(--gold-soft); font-size: 14px; text-align: center; }

/* FOOTER */
.footer { border-top: 1px solid var(--card-border); padding: 54px 0 30px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-about { color: var(--muted); font-size: 14px; margin-top: 16px; max-width: 280px; }
.footer h4 { font-size: 15px; margin-bottom: 14px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer ul a { color: var(--muted); font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--card-border); color: var(--muted); font-size: 12.5px; }

/* REVEAL ANIM */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* RESPONSIVE */
@media (max-width: 880px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-inner.open { flex-wrap: wrap; }
  .nav-inner.open .nav-links { display: flex; flex-direction: column; width: 100%; gap: 6px; padding-top: 8px; }
  .nav-inner.open .nav-cta { display: inline-flex; width: 100%; }
  .hero-grid, .why-grid, .benefits-grid, .contact-card { grid-template-columns: 1fr; }
  .hero { padding-top: 130px; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-media, .why-media, .benefits-media { max-width: 380px; margin: 10px auto 0; }
}
@media (max-width: 560px) {
  .grid-2 { grid-template-columns: 1fr; }
  .contact-card { padding: 26px; }
}

/* RESULTS / BEFORE-AFTER REVIEWS */
.results-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: stretch; }
.review-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius);
  padding: 28px; position: relative; display: flex; flex-direction: column;
}
.review-card.highlight { border-color: rgba(232,194,90,0.45); box-shadow: var(--shadow-gold); }
.review-tag {
  display: inline-block; align-self: flex-start; font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted); padding: 6px 12px; border-radius: 999px;
  border: 1px solid var(--card-border); background: #14110c; margin-bottom: 18px;
}
.review-tag.gold { color: #1a1407; background: var(--gradient-gold); border-color: transparent; }
.review-rating { display: flex; align-items: baseline; gap: 12px; }
.review-score { font-family: "Sora"; font-weight: 800; font-size: 44px; line-height: 1; }
.review-stars { color: var(--gold); font-size: 22px; letter-spacing: 2px; }
.review-stars .dim { color: rgba(165,156,136,0.35); }
.review-count { font-family: "Sora"; font-weight: 600; font-size: 18px; margin-top: 14px; color: var(--text); }
.review-card.highlight .review-count { color: var(--gold-soft); }
.review-bar { height: 9px; border-radius: 999px; background: #14110c; border: 1px solid var(--card-border); margin-top: 14px; overflow: hidden; }
.review-bar span { display: block; height: 100%; background: rgba(165,156,136,0.5); border-radius: 999px; }
.review-bar span.grow { background: var(--gradient-gold); }
.review-note { color: var(--muted); font-size: 14px; margin-top: 16px; }
.results-arrow { display: grid; place-items: center; color: var(--gold); font-size: 34px; font-weight: 700; }
.results-disclaimer { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 22px; }

/* BEFORE / AFTER SLIDER */
.ba-slider {
  position: relative; width: 100%; max-width: 920px; margin: 0 auto; aspect-ratio: 3 / 2;
  border-radius: 22px; overflow: hidden; border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card); user-select: none; touch-action: none;
}
.ba-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.ba-before-wrap { position: absolute; inset: 0; clip-path: inset(0 50% 0 0); }
.ba-label {
  position: absolute; top: 14px; z-index: 4; font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 6px 12px; border-radius: 999px; color: var(--text);
  background: rgba(15,13,10,0.7); backdrop-filter: blur(6px); border: 1px solid var(--card-border);
}
.ba-label-before { left: 14px; }
.ba-label-after { right: 14px; color: #1a1407; background: var(--gradient-gold); border-color: transparent; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%); z-index: 5;
  display: flex; align-items: center; justify-content: center; pointer-events: none;
}
.ba-handle-line { position: absolute; top: 0; bottom: 0; width: 2px; background: rgba(245,241,232,0.85); }
.ba-grip {
  width: 42px; height: 42px; border-radius: 50%; background: var(--gradient-gold); color: #1a1407;
  display: grid; place-items: center; font-size: 18px; font-weight: 700; box-shadow: var(--shadow-gold);
}
.ba-range {
  position: absolute; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; z-index: 6;
}
@media (max-width: 720px) {
  .results-grid { grid-template-columns: 1fr; }
  .results-arrow { transform: rotate(90deg); padding: 4px 0; }
}
