/* ================================================================
   ErgonomicsHelp — Accelerate "Get More Customers" Webinar Overrides
   Dark dramatic aesthetic adapted from static mock
   Font: Inter (not Barlow)  |  Teal: #14b8a6 (EH brand)
   ================================================================ */

/* ── CSS VARIABLES ── */
:root {
  --navy:    #1E2761;
  --navy-d:  #0D1B2A;
  --teal:    #14b8a6;
  --teal2:   #14b8a6;
  --mint:    #0d9488;
  --coral:   #E84855;
  --gold:    #F4B942;
  --white:   #FFFFFF;
  --offwhite:#F7F9FC;
  --light:   #E3EEF2;
  --muted:   #8AA8B4;
  --text:    #1A1A2E;
}

/* ── RESET / BASE ── */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy-d) !important;
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── UTILITY ── */
.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }
.teal      { color: var(--teal) !important; }
.gold      { color: var(--gold) !important; }
.coral     { color: var(--coral) !important; }

/* ── HEADING WEIGHT & TRACKING ── */
h1, h2, h3, h4 {
  font-weight: 800;
  letter-spacing: -0.02em;
}

/* ── LINKS ── */
a:not(.btn):not(.form-btn) {
  color: var(--teal);
}

/* ── TOP BAR ── */
.topbar {
  text-align: center;
  padding: 11px 16px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.topbar span { color: var(--gold); }

/* ── NAV (sticky with backdrop blur) ── */
nav,
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13,27,42,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(20,184,166,.25);
  padding: 14px 0;
}
nav .inner,
.nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .05em;
  color: var(--white);
  text-decoration: none;
}
.nav-logo span { color: var(--teal); }
.nav-cta {
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 9px 22px;
  border-radius: 3px;
  transition: background .2s;
}
.nav-cta:hover { background: #0d9488; }

/* ── HERO ── */
.hero {
  position: relative;
  padding: 80px 0 70px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(20,184,166,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,39,97,.6) 0%, transparent 60%),
    linear-gradient(160deg, #0D1B2A 0%, #101D30 50%, #0a1520 100%);
}
/* grid texture */
.hero-bg::after,
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,184,166,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
  z-index: 0;
}
.hero-section {
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 40%, rgba(20,184,166,.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(30,39,97,.6) 0%, transparent 60%),
    linear-gradient(160deg, #0D1B2A 0%, #101D30 50%, #0a1520 100%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}
.hero-badge {
  display: inline-block;
  background: rgba(244,185,66,.12);
  border: 1px solid rgba(244,185,66,.4);
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 56px);
  font-weight: 900;
  line-height: 1.0;
  letter-spacing: -.01em;
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal);
}
.hero-subtitle {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  margin-bottom: 28px;
}
.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 34px;
}
.hero-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--muted);
}
.hero-meta-item svg { flex-shrink: 0; }
.hero-meta-item strong { color: var(--white); font-weight: 600; }

/* ── PRIMARY BUTTON ── */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--teal), #0d9488);
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 4px;
  box-shadow: 0 6px 30px rgba(20,184,166,.35);
  transition: transform .2s, box-shadow .2s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(20,184,166,.5);
}
.btn-ghost {
  display: inline-block;
  border: 1px solid rgba(20,184,166,.5);
  color: var(--teal);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 30px;
  border-radius: 4px;
  transition: background .2s, border-color .2s;
  cursor: pointer;
  background: transparent;
  vertical-align: middle;
  margin-left: 14px;
}
.btn-ghost:hover { background: rgba(20,184,166,.1); border-color: var(--teal); }
.hero-trust {
  margin-top: 22px;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  letter-spacing: .03em;
}
.hero-trust span { color: rgba(255,255,255,.6); }

/* ── REGISTER CARD ── */
.reg-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(20,184,166,.3);
  border-radius: 8px;
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.reg-card h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: .04em;
  margin-bottom: 6px;
  text-align: center;
}
.reg-card p {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 20px;
}
.form-group { margin-bottom: 13px; }
.form-group input {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 4px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 11px 14px;
  outline: none;
  transition: border-color .2s;
}
.form-group input::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus { border-color: var(--teal); }
.reg-submit {
  width: 100%;
  background: linear-gradient(135deg, var(--teal), #0d9488);
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  border: none;
  padding: 14px;
  border-radius: 4px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(20,184,166,.3);
  transition: transform .2s, box-shadow .2s;
  margin-top: 4px;
}
.reg-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(20,184,166,.45); }
.reg-privacy {
  font-size: 11px;
  color: rgba(255,255,255,.3);
  text-align: center;
  margin-top: 10px;
}
.reg-includes {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.reg-includes p {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.reg-inc-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
  margin-bottom: 7px;
  text-align: left;
}
.reg-inc-item .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 5px;
}

/* ── COUNTDOWN ── */
.countdown-wrap {
  background: linear-gradient(135deg, rgba(20,184,166,.15), rgba(30,39,97,.4));
  border: 1px solid rgba(20,184,166,.3);
  border-radius: 6px;
  padding: 18px 16px;
  margin-bottom: 20px;
}
.countdown-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--teal);
  text-align: center;
  margin-bottom: 12px;
}
.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.cd-unit {
  text-align: center;
  min-width: 52px;
}
.cd-num {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  display: block;
}
.cd-lbl {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-top: 3px;
}
.cd-sep {
  font-size: 28px;
  font-weight: 900;
  color: var(--teal);
  line-height: 1;
  padding-top: 2px;
  align-self: flex-start;
}

/* ── SOCIAL PROOF STRIP ── */
.proof-strip {
  background: rgba(20,184,166,.08);
  border-top: 1px solid rgba(20,184,166,.2);
  border-bottom: 1px solid rgba(20,184,166,.2);
  padding: 16px 0;
}
.proof-strip .inner,
.proof-inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  align-items: center;
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
}
.proof-item {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 7px;
}
.proof-item .check { color: var(--teal); font-size: 13px; }

/* ── SECTIONS SHARED ── */
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--white);
}
.section-body {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.7);
}

/* ── WHO IS THIS FOR ── */
.who { background: linear-gradient(180deg, var(--navy-d) 0%, #0e1f30 100%); }
.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
.who-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 18px 20px;
  transition: border-color .2s, background .2s;
}
.who-item:hover {
  border-color: rgba(20,184,166,.3);
  background: rgba(20,184,166,.04);
}
.who-num {
  font-size: 28px;
  font-weight: 900;
  color: rgba(20,184,166,.3);
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}
.who-text {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255,255,255,.8);
}

/* ── WHAT YOU'LL LEARN ── */
.learn { background: #0a1520; }
.learn-items {
  margin-top: 40px;
  display: grid;
  gap: 0;
}
.learn-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: start;
  gap: 0;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: background .2s;
}
.learn-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.learn-item:hover { background: rgba(20,184,166,.04); padding-left: 8px; }
.learn-n {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--teal);
  padding-top: 3px;
}
.learn-content h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.1;
  color: var(--white);
}
.learn-content p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
}

/* ── ABOUT DARCIE ── */
.about {
  background: linear-gradient(135deg, var(--navy) 0%, #162040 100%);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20,184,166,.1) 0%, transparent 70%);
  pointer-events: none;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 60px;
  align-items: center;
}
.about-creds {
  margin: 24px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cred {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,.75);
}
.cred-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}
.about-quote {
  background: rgba(0,0,0,.2);
  border-left: 3px solid var(--teal);
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  font-style: italic;
  border-radius: 0 4px 4px 0;
}
.about-card {
  background: rgba(0,0,0,.25);
  border: 1px solid rgba(20,184,166,.25);
  border-radius: 8px;
  overflow: hidden;
}
.about-card-top {
  background: linear-gradient(135deg, var(--teal), #0d7a70);
  padding: 28px 24px;
}
.about-card-top h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 4px;
  color: var(--white);
}
.about-card-top p { font-size: 13px; opacity: .8; color: var(--white); }
.about-card-body { padding: 20px 24px; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.stat-box {
  text-align: center;
  padding: 14px;
  background: rgba(255,255,255,.03);
  border-radius: 4px;
}
.stat-box strong {
  font-size: 28px;
  font-weight: 900;
  color: var(--teal);
  display: block;
  line-height: 1;
}
.stat-box span { font-size: 11px; color: var(--muted); letter-spacing: .04em; }

/* ── BONUSES ── */
.bonuses {
  background: var(--navy-d);
  position: relative;
  overflow: hidden;
}
.bonuses::before {
  content: 'BONUS';
  position: absolute;
  right: -40px;
  top: 40px;
  font-family: 'Inter', sans-serif;
  font-size: 200px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: rgba(244,185,66,.025);
  pointer-events: none;
  user-select: none;
  transform: rotate(-5deg);
}
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.bonus-card {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(244,185,66,.25);
  transition: transform .2s, box-shadow .2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(0,0,0,.4);
}
.bonus-card-head {
  padding: 24px 24px 20px;
  background: linear-gradient(135deg, rgba(20,40,64,.95), rgba(13,27,42,.95));
  border-bottom: 1px solid rgba(244,185,66,.15);
}
.bonus-value {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.bonus-card-head h3 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 8px;
  color: var(--white);
}
.bonus-card-head p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.6);
  line-height: 1.55;
}
.bonus-card-body {
  padding: 18px 24px;
  background: rgba(255,255,255,.02);
}
.bonus-feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-bottom: 9px;
  line-height: 1.45;
}
.bonus-feature .chk { color: var(--teal); flex-shrink: 0; margin-top: 1px; font-size: 12px; }
.bonus-free-tag {
  display: inline-block;
  background: rgba(244,185,66,.12);
  border: 1px solid rgba(244,185,66,.35);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  margin-top: 12px;
}

/* ── TESTIMONIALS ── */
.testimonials { background: #0a1520; }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}
.testi-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 6px;
  padding: 24px 22px;
  position: relative;
}
.testi-card::before {
  content: '\201C';
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 56px;
  font-weight: 900;
  color: rgba(20,184,166,.2);
  line-height: 1;
}
.testi-stars { color: var(--gold); font-size: 13px; margin-bottom: 12px; letter-spacing: 2px; }
.testi-text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,.8);
  font-style: italic;
  margin-bottom: 16px;
}
.testi-name {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: .04em;
}

/* ── URGENCY / CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2040 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(20,184,166,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,184,166,.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 16px;
  color: var(--white);
}
.cta-section p {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  max-width: 560px;
  margin: 0 auto 36px;
}
.cta-form-wrap {
  max-width: 460px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(20,184,166,.3);
  border-radius: 8px;
  padding: 32px 28px;
}
.cta-form-wrap .form-group input {
  background: rgba(255,255,255,.08);
}
.urgency-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}
.urgency-note span { color: var(--coral); font-weight: 600; }

/* ── FOOTER ── */
footer,
#section-footer {
  background: #080e16 !important;
  padding: 32px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
footer p { font-size: 12px; color: rgba(255,255,255,.3); }
footer a { color: rgba(255,255,255,.4); text-decoration: none; font-size: 12px; }
footer a:hover { color: var(--teal); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up   { animation: fadeUp .65s ease both; }
.fade-up-2 { animation: fadeUp .65s .12s ease both; }
.fade-up-3 { animation: fadeUp .65s .24s ease both; }
.fade-up-4 { animation: fadeUp .65s .36s ease both; }
.fade-up-5 { animation: fadeUp .65s .48s ease both; }

@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(20,184,166,.4); }
  50%      { box-shadow: 0 0 0 8px rgba(20,184,166,0); }
}
.pulse { animation: pulse-border 2.5s ease infinite; }

/* ══════════════════════════════════════
   ENCORE / KAJABI OVERRIDES
   Make the Encore customizer work with
   our dark dramatic aesthetic
   ══════════════════════════════════════ */

/* ── Force dark page background everywhere ── */
.page,
.page-content,
.encore-theme,
.kajabi-page {
  background: var(--navy-d) !important;
}

/* ── Section padding resets — let our CSS handle it ── */
.section .section__inner {
  position: relative;
  z-index: 1;
}

/* ── Hide default Encore header chrome ── */
#section-header {
  display: none !important;
}

/* ── Form inputs on dark backgrounds ── */
.form-control,
.section .form-control,
input.form-control {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  border-radius: 4px !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-size: 14px !important;
  padding: 11px 14px !important;
  outline: none !important;
  transition: border-color .2s !important;
}
.form-control::placeholder,
input.form-control::placeholder {
  color: rgba(255,255,255,.3) !important;
}
.form-control:focus,
input.form-control:focus {
  border-color: var(--teal) !important;
  box-shadow: 0 0 0 3px rgba(20,184,166,.15) !important;
}

/* ── Form labels on dark ── */
.form-label,
label.form-label {
  color: rgba(255,255,255,.6) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: .05em !important;
}

/* ── Form button override: full-width teal gradient ── */
.form-btn,
.section .form-btn,
button.form-btn,
.btn-primary-solid {
  width: 100% !important;
  background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%) !important;
  color: #ffffff !important;
  border-radius: 4px !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
  padding: 14px 24px !important;
  border: none !important;
  box-shadow: 0 4px 20px rgba(20,184,166,.3) !important;
  transition: transform .2s, box-shadow .2s !important;
  cursor: pointer !important;
}
.form-btn:hover,
button.form-btn:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(20,184,166,.45) !important;
}

/* ── Buttons general ── */
.btn,
a.btn {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn:hover,
a.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(20, 184, 166, 0.4);
}
.btn:active,
a.btn:active {
  transform: translateY(0);
}

/* ── Disclaimer text ── */
.disclaimer-text {
  font-size: 12px !important;
  color: #8AA8B4 !important;
  text-align: center !important;
}

/* ── All section text should be light by default ── */
.section p,
.section li,
.section span {
  color: rgba(255,255,255,.75);
}
.section h1,
.section h2,
.section h3,
.section h4,
.section h5,
.section h6 {
  color: #ffffff;
}
.section strong {
  color: #ffffff;
}

/* ── Fix Encore block widths not collapsing right ── */
.section .section__inner .block--text {
  position: relative;
  z-index: 1;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .reg-card { max-width: 460px; }
  .about-inner { grid-template-columns: 1fr; }
  .about-card { display: none; }
  .who-grid { grid-template-columns: 1fr; }
  .bonus-grid { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero { padding: 48px 0 56px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
