:root {
  --green: #1a9b6c;
  --green-dark: #0f6e4e;
  --green-deeper: #074d38;
  --green-light: #e8f7f1;
  --green-mid: #8fd9bb;
  --gold: #c8a84b;
  --gold-light: #fdf8ed;
  --text: #1c1c1c;
  --muted: #6b7280;
  --border: #e5e7eb;
  --bg: #ffffff;
  --soft: #f9fafb;
  --wa: #25d366;
  --hero-bg: #f0faf5;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  font-size: 16px;
  line-height: 1.6;
}

/* NAV */
header {
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 3rem;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}
.logo {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}
.logo span {
  color: var(--green);
}
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green);
}
.btn-nav {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-nav:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

/* HERO */
.hero {
  position: relative;
  padding: 4rem;
  background: linear-gradient(160deg, #e8f7f1 0%, #c8ebd9 100%);
  background-size: cover;
  background-image: url("images/hero-bg.webp");
  min-height: calc(100dvh - 71px);
  display: flex;
  align-items: center;
}
.hero-wrapper {
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  height: 100%;
}
.hero-container {
  width: 100%;
  padding: 32px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
}
.hero h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
}
.hero-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 460px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.btn-green {
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(26, 155, 108, 0.3);
}
.btn-wa-hero {
  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.btn-wa-hero:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
}
.btn-outline {
  background: #fff;
  color: var(--text);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:active {
  border-color: var(--green);
  color: var(--green);
}
.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  flex-direction: column;
}
.hero-stat-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.hero-stat-label {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

/* HERO RIGHT — PHOTO + CARD */
.hero-right {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  max-width: 600px;
}
.hero-card-title {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hero-card-nums {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}
.hero-card-num {
  text-align: center;
}
.hero-card-val {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}
.hero-card-lbl {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

/* CALC SECTION */
.calc-section {
  padding: 5rem 4rem;
  background: #fff;
}
.calc-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.calc-info {
  padding-top: 1rem;
}
.sec-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}
.sec-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 3rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.sec-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.info-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ip {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: var(--soft);
  border-radius: 10px;
}
.ip-icon {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ip-icon i {
  font-size: 18px;
  color: var(--green);
}
.ip h4 {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 2px;
}
.ip p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* CALCULATOR CARD */
.calc-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07);
}
.calc-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.calc-card-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.tabs {
  display: flex;
  gap: 4px;
  background: var(--soft);
  border-radius: 8px;
  padding: 4px;
  margin-bottom: 1rem;
}
.tab {
  flex: 1;
  padding: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  color: var(--muted);
  border: none;
  background: transparent;
}
.tab.active {
  background: #fff;
  color: var(--green);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}
.cf {
  margin-bottom: 1rem;
}
.cf-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
}
.cf-label {
  font-size: 14px;
  color: var(--muted);
}
.cf-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
}
input[type="range"] {
  width: 100%;
  height: 4px;
  accent-color: var(--green);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.result-box {
  background: linear-gradient(135deg, var(--green-deeper), var(--green-dark));
  border-radius: 14px;
  padding: 1.25rem;
  margin-top: 1.25rem;
  color: #fff;
}
.rb-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.rb-label {
  font-size: 11px;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 5px;
}
.rb-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.rb-sub {
  font-size: 11px;
  opacity: 0.65;
  margin-top: 4px;
}
.rb-right {
  text-align: right;
  flex-shrink: 0;
}
.rb-future {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--green-mid);
}
.rb-future-label {
  font-size: 10px;
  opacity: 0.65;
  margin-bottom: 4px;
}
.th-info {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.th-info.ok {
  color: var(--green-mid);
}
.th-info.warn {
  color: #fcd34d;
}
.calc-wa-btn {
  margin-top: 1rem;
  width: 100%;
  padding: 12px;
  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
  text-decoration: none;
}
.calc-wa-btn:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}

/* STATS BAR */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--green-deeper);
}
.sb-item {
  padding: 2rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.sb-item:last-child {
  border-right: none;
}
.sb-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.sb-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 5px;
  line-height: 1.4;
}

/* SECTIONS */
section.pad {
  padding: 5rem 0;
  max-width: 1100px;
  margin: 0 auto;
}
.full-pad {
  padding: 5rem 4rem;
}

/* THRESHOLD */
.th-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.th-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.th-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.th-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.th-card.m::before {
  background: linear-gradient(90deg, #3b82f6, #1d4ed8);
}
.th-card.f::before {
  background: linear-gradient(90deg, #ec4899, #be185d);
}
.th-card.mo::before {
  background: linear-gradient(90deg, #60a5fa, #3b82f6);
}
.th-card.fo::before {
  background: linear-gradient(90deg, #f472b6, #ec4899);
}
.th-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 18px;
}
.th-icon.b {
  background: #eff6ff;
  color: #1d4ed8;
}
.th-icon.p {
  background: #fdf2f8;
  color: #be185d;
}
.th-tag-label {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}
.th-amount {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3px;
}
.th-sub {
  font-size: 13px;
  color: var(--muted);
}
.th-badge {
  display: inline-block;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 6px;
  font-weight: 600;
}
.th-badge.b {
  background: #eff6ff;
  color: #1d4ed8;
}
.th-badge.p {
  background: #fdf2f8;
  color: #be185d;
}
.note-box {
  background: var(--gold-light);
  border: 1px solid rgba(200, 168, 75, 0.25);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.note-box i {
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}
.note-box p {
  font-size: 14px;
  color: #6b5a1a;
  line-height: 1.6;
}

/* VS */
.vs-wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}
.vs-col {
  border-radius: 16px;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--soft);
}
.vs-col.win {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26, 155, 108, 0.1);
  background: #fff;
}
.vs-head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}
.vs-col.win .vs-head {
  background: var(--green-light);
}
.vs-col-name {
  font-size: 14px;
  font-weight: 600;
}
.vs-badge {
  background: var(--green);
  color: #fff;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  font-weight: 600;
  margin-left: auto;
}
.vs-rows {
  padding: 0.5rem 0;
}
.vs-row {
  padding: 0.75rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}
.vs-row:last-child {
  border-bottom: none;
}
.vs-row i {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.vs-row-body {
  font-size: 14px;
  line-height: 1.5;
}
.vs-row-title {
  font-weight: 500;
  margin-bottom: 1px;
}
.vs-row-sub {
  font-size: 13px;
  color: var(--muted);
}
.vs-row.pos i {
  color: var(--green);
}
.vs-row.neg i {
  color: #ef4444;
}
.vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}
.vs-vs-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--text);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  font-family: "Cormorant Garamond", serif;
}

/* BONUS */
.bonus-section {
  background: linear-gradient(135deg, var(--green-deeper) 0%, #0a6b50 100%);
  padding: 5rem 4rem;
  color: #fff;
}
.bonus-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.bonus-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}
.bonus-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
}
.bonus-title .gold {
  color: var(--gold);
}
.bonus-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.bonus-highlight {
  background: rgba(200, 168, 75, 0.15);
  border: 1px solid rgba(200, 168, 75, 0.3);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.bonus-highlight i {
  font-size: 24px;
  color: var(--gold);
  flex-shrink: 0;
}
.bh-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 4px;
}
.bh-desc {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}
.bonus-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.bc {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin: 10px;
}
.bc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bc-icon i {
  font-size: 20px;
  color: var(--green-mid);
}
.bc h4 {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.bc p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* GUARANTEES */
.gg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.gc {
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 1.75rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.gc:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}
.gc-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.gc-icon i {
  font-size: 24px;
  color: var(--green);
}
.gc h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.gc p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.6;
}

/* STEPS */
.steps-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
  position: relative;
  gap: 2rem;
}
.step {
  text-align: center;
  padding: 0 0.75rem;
  position: relative;
  z-index: 1;
}
.step-n {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
}
.step h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.step p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.5;
}

/* VIDEOS */

/* FORM */
.form-section {
  padding: 5rem 4rem;
  background: #fff;
}
.form-wrap {
  max-width: 640px;
  margin: 0 auto;
}
.fg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.fi {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.fi label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.fi input,
.fi select {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  background: var(--soft);
  outline: none;
  transition: all 0.2s;
  color: var(--text);
}
.fi input:focus,
.fi select:focus {
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(26, 155, 108, 0.1);
}
.form-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 0.75rem;
}
.fsub {
  width: 100%;
  padding: 14px;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.fsub:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}
.fsub-wa {
  width: 100%;
  padding: 14px;
  background: var(--wa);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}
.fsub-wa:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
}
.fsuccess {
  display: none;
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  color: var(--green-dark);
  margin-top: 1rem;
  line-height: 1.7;
}
.fpriv {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 0.75rem;
}
.fpriv a {
  color: var(--green);
  text-decoration: none;
}

/* CONTACTS */
.contacts {
  background: var(--green-deeper);
  padding: 2rem 4rem;
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-link:hover {
  opacity: 0.8;
}
.contact-link i {
  font-size: 22px;
  color: var(--green-mid);
}
.cl-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.cl-val {
  font-size: 16px;
  font-weight: 500;
}

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}
.wa-float a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--wa);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
  text-decoration: none;
  transition: transform 0.2s;
}
.wa-float a:hover {
  transform: scale(1.1);
}
.wa-float a i {
  font-size: 28px;
}

/* PRIVACY */
.priv-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.priv-page h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.priv-page h2 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
}
.priv-page p,
.priv-page li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.priv-page ul {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.5);
  padding: 2.5rem 8rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 2rem;
}
.fl {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.fl span {
  color: var(--green-mid);
}
.faq {
  padding: 5rem 0;
  background-color: var(--soft);
}

/* REELS */
.reels-wrapper {
  display: flex;
  align-items: center;
  gap: 20px;
}
.reels {
  display: flex;
  gap: 80px;
  list-style-type: none;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.reels::-webkit-scrollbar {
  display: none;
}
.reel {
  flex: 0 0 clamp(260px, 75vw, 380px);
  scroll-snap-align: center;
}
.reels-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  padding: 0;
  font-size: 20px;
  border-radius: 100%;
}
.reels-btn:disabled {
  color: var(--border);
  border-color: var(--border);
  pointer-events: none;
}
.reels-hint {
  margin-top: 40px;
  text-align: center;
  color: var(--muted);
}
.reels-hint a {
  color: var(--green);
  text-decoration: none;
}
.video-container {
  position: relative;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.video-container video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  cursor: pointer;
  user-select: none;
}
.play-overlay-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
  z-index: 2;
}
.video-container.is-playing .play-overlay-btn {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.8);
}
.mute-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  border: none;
  color: #fff;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

@media (max-width: 900px) {
  .hero-wrapper,
  .calc-wrapper,
  .ai-inner,
  .bonus-inner {
    grid-template-columns: 1fr;
  }
  .hero-right {
    min-height: 300px;
  }
  nav .nav-links {
    display: none;
  }
  nav {
    padding: 1rem 1.5rem;
  }
  .calc-section,
  .full-pad,
  .ai-section,
  .form-section,
  .bonus-section {
    padding: 3rem 1.5rem;
  }
  .hero {
    padding: 0 1.5rem;
  }
  section.pad {
    padding: 3rem 0rem;
  }
  .faq {
    padding: 5rem 1.5rem;
  }
  .stats-bar,
  .th-grid,
  .gg,
  .steps-row,
  .tc-grid,
  .vs-wrapper {
    grid-template-columns: 1fr;
  }
  footer {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 2rem 1.5rem;
  }
  .fg,
  .form-btns {
    grid-template-columns: 1fr;
  }
  .contacts {
    padding: 1.5rem;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .reels-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
  .reels {
    gap: 80px;
    padding-inline: calc((100vw - 280px) / 2);
  }
  .reels-left {
    order: 2;
  }
  .reels-right {
    order: 3;
  }
}

@media (min-width: 901px) {
  .steps-row::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 12%;
    right: 12%;
    height: 1px;
    background: var(--border);
    z-index: 0;
  }

  footer div:last-child {
    text-align: right;
  }

  .hero {
    min-height: calc(100dvh - 192px);
    background-position: center;
  }

  .hero-container {
    width: auto;
  }
}

@media (hover: hover) {
  .btn-outline:hover {
    border-color: var(--green);
    color: var(--green);
  }
}

.bonus-photo {
  background-color: var(--soft);
  transform: scaleX(-1);
  border-radius: 12px;
  max-width: 100%;
}
