:root {
  --teal: #0D4B54;
  --teal-mid: #147A7A;
  --teal-light: #E3F0F0;
  --coral: #E76F51;
  --coral-soft: #F9E4DE;
  --sand: #FAF5F0;
  --ink: #1C1C1E;
  --ink-soft: #6B6B6B;
  --white: #FFFFFF;
  --line: #E5E2DD;
  --green: #2D8A56;
  --font-display: "DM Serif Display", Georgia, "Times New Roman", serif;
  --font-body: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* This page deliberately commits to one visual world — warm sand, teal,
   coral — the way the brand itself does. No dark-mode variant; that's a
   choice, not an omission. */

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
.wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}
section { position: relative; }
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(231, 111, 81, 0.35);
}
.btn-primary:hover { box-shadow: 0 8px 26px rgba(231, 111, 81, 0.45); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border: 1.5px solid currentColor;
  color: inherit;
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-dark-outline {
  background: transparent;
  border: 1.5px solid rgba(28,28,30,0.25);
  color: var(--ink);
}
.btn-dark-outline:hover { border-color: var(--ink); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 245, 240, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
}
.logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--teal);
}
.logo .dot { color: var(--coral); }
.nav-links {
  display: none;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--teal); }
.nav .btn { padding: 10px 20px; font-size: 13px; }
.nav-right { display: flex; align-items: center; gap: 14px; }
@media (min-width: 860px) {
  .nav-links { display: flex; }
}

/* ---------- Language switcher ---------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-soft);
}
.lang-switch a {
  padding: 4px 7px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.lang-switch a.active { color: var(--teal); background: var(--teal-light); }
.lang-switch a:not(.active):hover { color: var(--ink); }
.lang-switch .sep { color: var(--line); }

/* ---------- Hero ---------- */
.hero {
  background: var(--teal);
  color: var(--white);
  padding: 56px 0 64px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  gap: 40px;
  position: relative;
}
.hero-copy { position: relative; z-index: 3; }
.hero-eyebrow { color: #8FC9C4; margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(32px, 7vw, 52px);
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.8);
  max-width: 46ch;
  margin-bottom: 30px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 20px;
}
.hero-trust {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.hero-trust span { margin: 0 8px; opacity: 0.6; }

/* Phone mockup — coded, no external images */
.phone-stage {
  display: flex;
  justify-content: center;
}
.phone {
  width: 260px;
  background: #0A363D;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.phone-screen {
  background: var(--sand);
  border-radius: 24px;
  padding: 18px 16px 22px;
  color: var(--ink);
}
.phone-notch {
  width: 60px;
  height: 5px;
  border-radius: 4px;
  background: rgba(255,255,255,0.15);
  margin: 0 auto 14px;
}
.phone-greeting { font-size: 11px; color: var(--ink-soft); font-weight: 600; }
.phone-title { font-family: var(--font-display); font-size: 19px; margin: 2px 0 14px; }
.phone-card {
  background: var(--white);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(13,75,84,0.06);
}
.phone-row { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.phone-class { font-size: 13px; font-weight: 700; }
.phone-time { font-size: 11px; color: var(--ink-soft); margin-top: 2px; }
.pill {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  white-space: nowrap;
}
.pill-ok { background: #DFF3E6; color: var(--green); }
.pill-warn { background: var(--coral-soft); color: var(--coral); }
.phone-mini-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
}
.phone-mini-row:first-child { border-top: none; }
.phone-mini-name { font-weight: 600; }
.phone-mini-sub { color: var(--ink-soft); }

@media (min-width: 900px) {
  .hero-inner { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
  .phone-stage { justify-content: flex-end; }
  .phone { width: 280px; }
}

/* ---------- Pain strip ---------- */
.pain {
  background: var(--sand);
  padding: 72px 0;
}
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head .eyebrow { color: var(--coral); margin-bottom: 12px; }
.section-head h2 { font-size: clamp(26px, 4.5vw, 36px); color: var(--teal); }
.pain-grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 720px) {
  .pain-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}
.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--white);
  border-left: 3px solid var(--coral);
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: 0 1px 3px rgba(13,75,84,0.04);
}
.pain-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--coral-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}
.pain-item p { font-size: 14.5px; color: var(--ink); padding-top: 4px; }

/* ---------- Pillars ---------- */
.pillars { background: var(--white); padding: 80px 0; }
.pillars .section-head { max-width: 620px; }
.pillar-grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 900px) {
  .pillar-grid { grid-template-columns: repeat(3, 1fr); }
}
.pillar-card {
  background: var(--teal-light);
  border-radius: 16px;
  padding: 28px 26px;
}
.pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pillar-card h3 {
  font-size: 20px;
  color: var(--teal);
  margin-bottom: 10px;
}
.pillar-card p.desc {
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  line-height: 1.55;
}
.pillar-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pillar-list li {
  font-size: 13.5px;
  padding-left: 20px;
  position: relative;
  color: var(--ink);
}
.pillar-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--coral);
}

/* ---------- Before / After ---------- */
.ba { background: var(--sand); padding: 80px 0; }
.ba-row {
  display: grid;
  gap: 10px;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 1px 3px rgba(13,75,84,0.04);
}
@media (min-width: 780px) {
  .ba-row { grid-template-columns: 1fr 32px 1fr; align-items: center; gap: 18px; }
}
.ba-before { color: var(--ink-soft); font-size: 14px; }
.ba-before .tag, .ba-after .tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.ba-before .tag { color: #B9AFA4; }
.ba-after .tag { color: var(--coral); }
.ba-after { color: var(--teal); font-size: 14.5px; font-weight: 600; }
.ba-arrow {
  display: none;
  color: var(--coral);
  font-size: 18px;
  text-align: center;
}
@media (min-width: 780px) { .ba-arrow { display: block; } }

/* ---------- Calculator section wrapper ---------- */
.calc-section { background: var(--teal-light); padding: 80px 0; }
.calc-section .section-head { max-width: 640px; margin-left: auto; margin-right: auto; text-align: center; }
.calc-section .section-head .eyebrow { display: block; }

.calc-shell {
  max-width: 640px;
  margin: 0 auto;
}
.calc-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.calc-section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 14px;
}
.lever-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}
.lever-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.lever-num {
  width: 28px; height: 28px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: var(--white); flex-shrink: 0;
}
.lever-title { font-size: 14px; font-weight: 700; color: var(--ink); }
.result-box {
  margin-top: 16px; padding: 10px 14px;
  background: var(--teal-light); border-radius: 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.result-box .label { font-size: 11px; color: var(--teal-mid); font-weight: 500; }
.result-box .value { font-size: 20px; font-weight: 700; color: var(--teal); font-variant-numeric: tabular-nums; }
.slider-group { margin-bottom: 20px; }
.slider-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.slider-label { font-size: 13px; color: var(--ink); font-weight: 500; }
.slider-value { font-size: 18px; font-weight: 700; color: var(--teal); font-variant-numeric: tabular-nums; }
.slider-sublabel { font-size: 11px; color: var(--ink-soft); margin-bottom: 6px; }
.slider-track { position: relative; height: 6px; border-radius: 3px; background: var(--line); }
.slider-fill { position: absolute; left: 0; top: 0; height: 6px; border-radius: 3px; background: linear-gradient(90deg, var(--teal), var(--teal-mid)); }
input[type="range"] {
  width: 100%; margin-top: -6px; -webkit-appearance: none; appearance: none;
  background: transparent; cursor: pointer; height: 24px;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%;
  background: var(--teal); border: 3px solid var(--white);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2); cursor: pointer;
}
input[type="range"]::-moz-range-thumb {
  width: 18px; height: 18px; border-radius: 50%; background: var(--teal);
  border: 3px solid var(--white); box-shadow: 0 1px 4px rgba(0,0,0,0.2); cursor: pointer;
}
.slider-range { display: flex; justify-content: space-between; font-size: 10px; color: var(--ink-soft); margin-top: -4px; }
.final-result { background: var(--teal); border-radius: 16px; padding: 28px 24px; text-align: center; margin-top: 8px; }
.final-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.final-cols { display: flex; justify-content: center; gap: 32px; margin-bottom: 20px; flex-wrap: wrap; }
.final-col-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.final-col-value { font-size: 28px; font-weight: 700; }
.final-col-value.white { color: var(--white); }
.final-col-value.coral { color: var(--coral); }
.final-vs { display: flex; align-items: center; color: rgba(255,255,255,0.4); font-size: 20px; }
.roi-box { background: rgba(255,255,255,0.12); border-radius: 12px; padding: 16px 20px; display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.roi-box.negative { background: rgba(231,111,81,0.25); }
.roi-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.roi-value { font-size: 36px; font-weight: 700; }
.roi-value.positive { color: #A7F3D0; }
.roi-value.negative { color: var(--coral); }
.final-note { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 16px; }
.calc-hint { font-size: 12px; color: var(--ink-soft); line-height: 1.55; margin: -4px 0 14px; }
.plan-picker { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 560px) { .plan-picker { flex-direction: row; } }
.plan-opt {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-align: left;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.plan-opt span { font-weight: 500; font-size: 12.5px; color: var(--ink-soft); }
.plan-opt.active { border-color: var(--teal); background: var(--teal-light); }
.plan-opt.active span { color: var(--teal-mid); }

/* ---------- Sports split ---------- */
.sports { background: var(--white); padding: 80px 0; }
.sports .section-head { max-width: 620px; margin: 0 auto 44px; text-align: center; }
.sports .section-head .eyebrow { display: block; }
.sports-grid {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}
@media (min-width: 720px) {
  .sports-grid { grid-template-columns: 1fr 1fr; gap: 0; }
}
.sport-col { padding: 32px 28px; }
.sport-col:first-child { background: var(--teal-light); border-bottom: 1px solid var(--line); }
.sport-col:last-child { background: var(--coral-soft); }
@media (min-width: 720px) {
  .sport-col:first-child { border-bottom: none; border-right: 1px solid var(--line); }
}
.sport-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 14px;
}
.sport-col:first-child .sport-icon { background: var(--teal); }
.sport-col:last-child .sport-icon { background: var(--coral); }
.sport-col h3 { font-family: var(--font-body); font-weight: 800; font-size: 17px; margin-bottom: 14px; color: var(--ink); }
.sport-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.sport-col li { font-size: 14px; display: flex; align-items: center; gap: 8px; }
.soon {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.6);
  padding: 2px 7px;
  border-radius: 100px;
}
.sports-bottom { text-align: center; padding: 22px 20px 0; font-size: 14px; color: var(--ink-soft); }
.sports-bottom strong { color: var(--teal); }

/* ---------- Social proof / findings ---------- */
.proof { background: var(--teal); color: var(--white); padding: 76px 0; }
.proof .section-head { max-width: 560px; }
.proof .eyebrow { color: #8FC9C4; }
.proof h2 { color: var(--white); }
.proof-sub { color: rgba(255,255,255,0.75); font-size: 15.5px; max-width: 56ch; margin-top: 14px; margin-bottom: 36px; }
.findings { display: grid; gap: 14px; }
@media (min-width: 820px) { .findings { grid-template-columns: repeat(3, 1fr); } }
.finding-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  padding: 22px 22px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.92);
}
.finding-card .mark { color: var(--coral); font-family: var(--font-display); font-size: 26px; line-height: 0.6; display: block; margin-bottom: 10px; }

/* ---------- Pricing ---------- */
.pricing { background: var(--sand); padding: 80px 0; }
.pricing .section-head { max-width: 620px; }
.price-grid { display: grid; gap: 20px; align-items: stretch; }
@media (min-width: 920px) { .price-grid { grid-template-columns: repeat(3, 1fr); } }
.price-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px 26px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(13,75,84,0.25);
}
.price-tag {
  display: inline-block;
  align-self: flex-start;
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.price-name { font-family: var(--font-display); font-size: 22px; margin-bottom: 6px; }
.price-card:not(.featured) .price-name { color: var(--teal); }
.price-amount { font-size: 34px; font-weight: 800; margin-bottom: 2px; font-variant-numeric: tabular-nums; }
.price-amount span { font-size: 14px; font-weight: 600; opacity: 0.6; }
.price-meta { font-size: 12.5px; opacity: 0.65; margin-bottom: 20px; }
.price-list { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; flex: 1; }
.price-list li { font-size: 13.5px; padding-left: 22px; position: relative; }
.price-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  font-weight: 700; color: var(--coral);
}
.price-card.featured .price-list li::before { color: #8FE0C7; }
.price-list li.sub-item { font-size: 12px; opacity: 0.7; padding-left: 22px; }
.price-list .divider { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.55; margin: 4px 0 -2px; padding-left: 0; }
.price-list .divider::before { content: none; }
.price-card .btn { width: 100%; }
.price-note {
  max-width: 700px;
  margin: 36px auto 0;
  text-align: center;
  font-size: 13px;
  color: var(--ink-soft);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 20px;
}

/* ---------- FAQ ---------- */
.faq { background: var(--white); padding: 80px 0; }
.faq .section-head { max-width: 600px; }
.faq-list { max-width: 760px; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  text-align: left;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--ink);
}
.faq-q:hover { color: var(--teal); }
.faq-plus {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: transform 0.2s ease;
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq-a p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  padding: 0 4px 20px;
  max-width: 68ch;
}

/* ---------- Final CTA ---------- */
.final-cta { background: var(--teal); color: var(--white); padding: 88px 0; text-align: center; }
.final-cta h2 { color: var(--white); font-size: clamp(28px, 5vw, 42px); max-width: 18ch; margin: 0 auto 16px; }
.final-cta-sub { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 32px; }
.final-cta .hero-ctas { justify-content: center; margin-bottom: 18px; }
.final-cta-link { font-size: 14px; color: rgba(255,255,255,0.7); text-decoration: underline; text-underline-offset: 3px; }
.final-cta-note { font-size: 12.5px; color: rgba(255,255,255,0.45); margin-top: 28px; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 40px 0; }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  font-size: 13px;
}
.footer-logo { font-family: var(--font-display); font-size: 18px; color: var(--white); }
.footer-logo .dot { color: var(--coral); }
.footer-links { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}

/* ---------- GSAP entrance/reveal targets: pre-hidden in CSS (not JS) so
   there's no flash of the final state before the animation script runs.
   Gated on html.js (see the blocking script in <head>) so a no-JS visitor
   never sees hidden content, and on prefers-reduced-motion: no-preference
   so a reduced-motion visitor is never hidden either — only JS reveals
   these, and only when it's actually going to animate them. ---------- */
@media (prefers-reduced-motion: no-preference) {
  html.js .hero-eyebrow,
  html.js .hero h1,
  html.js .hero-sub,
  html.js .hero-ctas .btn,
  html.js .hero-trust,
  html.js .phone,
  html.js .pain-item,
  html.js .pillar-card,
  html.js .ba-before,
  html.js .ba-arrow,
  html.js .ba-after,
  html.js .sport-col,
  html.js .finding-card,
  html.js .price-card {
    opacity: 0;
  }
}
