:root {
  --teal-dark: #4A6670;
  --teal-darker: #3D5A62;
  --teal: #5B9AA0;
  --teal-light: #6BABB2;
  --teal-lighter: #8CC5CB;
  --teal-pale: #E9F3F4;
  --teal-wash: #EFF6F7;
  --gold: #EDB230;
  --gold-hover: #DFAA2B;
  --gold-dark: #D19B20;
  --gold-glow: rgba(237, 178, 48, 0.2);
  --white: #FFFFFF;
  --off-white: #FAFBFC;
  --light-bg: #F6F7F8;
  --text: #2A2F35;
  --text-medium: #444B54;
  --text-light: #5C6470;
  --text-muted: #838B95;
  --border: #E2E6EA;
  --border-light: #EEF0F2;
  --green: #3DAB6F;
  --star: #F5A623;
  --urgency-red: #D94F3B;
  --shadow-xs: 0 1px 3px rgba(74, 102, 112, 0.06);
  --shadow-sm: 0 2px 10px rgba(74, 102, 112, 0.07);
  --shadow-md: 0 8px 30px rgba(74, 102, 112, 0.09);
  --shadow-lg: 0 20px 50px rgba(74, 102, 112, 0.12);
  --shadow-card: 0 2px 4px rgba(74, 102, 112, 0.04), 0 12px 36px rgba(74, 102, 112, 0.08);
  --radius: 10px;
  --radius-sm: 7px;
  --radius-lg: 16px;
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Nunito Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w: 1120px;
  --ease: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased
}

img {
  max-width: 100%;
  display: block
}

a {
  text-decoration: none;
  color: inherit
}

button {
  font-family: inherit
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

@keyframes softPulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 var(--gold-glow)
  }

  50% {
    box-shadow: 0 0 0 10px transparent
  }
}

@keyframes urgencyPulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .75
  }
}

@keyframes orbFloat1 {
  0% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(40px, -30px) scale(1.08)
  }

  66% {
    transform: translate(-20px, 25px) scale(.95)
  }

  100% {
    transform: translate(0, 0) scale(1)
  }
}

@keyframes orbFloat2 {
  0% {
    transform: translate(0, 0) scale(1)
  }

  33% {
    transform: translate(-35px, 20px) scale(.92)
  }

  66% {
    transform: translate(25px, -35px) scale(1.06)
  }

  100% {
    transform: translate(0, 0) scale(1)
  }
}

@keyframes orbFloat3 {
  0% {
    transform: translate(0, 0) scale(1)
  }

  50% {
    transform: translate(20px, 30px) scale(1.1)
  }

  100% {
    transform: translate(0, 0) scale(1)
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all .65s var(--ease)
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0)
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px
}

.section {
  padding: 84px 0
}

.text-center {
  text-align: center
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.25;
  color: var(--teal-dark)
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3rem);
  letter-spacing: -.01em
}

h2 {
  font-size: clamp(1.65rem, 3vw, 2.3rem);
  margin-bottom: 12px
}

h3 {
  font-size: 1.2rem
}

.kicker {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--teal);
  margin-bottom: 12px;
  display: block
}

.subtitle {
  font-size: 1.08rem;
  color: var(--text-medium);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.72
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  padding: 14px 30px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--ease);
  line-height: 1.2
}

.btn-gold {
  background: var(--gold);
  color: var(--teal-darker);
  border-color: var(--gold);
  box-shadow: 0 3px 10px rgba(237, 178, 48, .25)
}

.btn-gold:hover {
  background: var(--gold-hover);
  border-color: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 178, 48, .3)
}

.btn-gold svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.5
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .35)
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, .08);
  border-color: rgba(255, 255, 255, .6)
}

.btn-outline-teal {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--border)
}

.btn-outline-teal:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-pale)
}

.btn-sm {
  padding: 10px 22px;
  font-size: .85rem
}

.btn-lg {
  padding: 17px 36px;
  font-size: 1.05rem
}

/* ===== TOPBAR ===== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--teal-dark);
  transition: box-shadow var(--ease)
}

.topbar.scrolled {
  box-shadow: 0 4px 16px rgba(61, 90, 98, .25)
}

.topbar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px
}

.topbar-logo img {
  height: 50px;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 18px
}

.topbar-trust {
  font-size: .76rem;
  color: rgba(255, 255, 255, .7);
  display: flex;
  align-items: center;
  gap: 5px
}

.topbar-trust .stars {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: 1px
}

.topbar-cta.btn {
  padding: 9px 20px;
  font-size: .82rem;
  border-radius: 5px
}

/* ===== HERO ===== */
.hero {
  padding: 128px 0 72px;
  background: linear-gradient(165deg, var(--teal-wash) 0%, #f0f5f3 35%, #faf8f4 100%);
  position: relative;
  overflow: hidden
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(60px);
  will-change: transform
}

.hero-orb--1 {
  top: -10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(91, 154, 160, .14) 0%, transparent 70%);
  animation: orbFloat1 18s ease-in-out infinite
}

.hero-orb--2 {
  bottom: -15%;
  left: -8%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(237, 178, 48, .1) 0%, transparent 70%);
  animation: orbFloat2 22s ease-in-out infinite
}

.hero-orb--3 {
  top: 30%;
  left: 40%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(107, 171, 178, .08) 0%, transparent 70%);
  animation: orbFloat3 15s ease-in-out infinite
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: start
}

/* Hero Content */
.hero-content h1 {
  margin-bottom: 14px
}

.hero-content h1 em {
  font-style: italic;
  color: var(--teal)
}

.hero-sub-h {
  font-size: 1.12rem;
  color: var(--text-medium);
  line-height: 1.72;
  margin-bottom: 20px;
  max-width: 500px
}

/* TRUST STRIP — Section 1.2 */
.trust-strip {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px
}

.trust-strip-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--teal-dark)
}

.trust-strip-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2
}

.hero-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px
}

.hero-checks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .95rem;
  color: var(--text)
}

.hero-checks li .ic {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px
}

.hero-checks li .ic svg {
  width: 12px;
  height: 12px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 3
}

.hero-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap
}

/* URGENCY — Section 3.7 */
.urgency-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 10px 16px;
  background: rgba(217, 79, 59, .06);
  border: 1px solid rgba(217, 79, 59, .12);
  border-radius: var(--radius-sm);
  max-width: fit-content
}

.urgency-bar svg {
  width: 16px;
  height: 16px;
  stroke: var(--urgency-red);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  animation: urgencyPulse 2s infinite
}

.urgency-bar span {
  font-size: .84rem;
  color: var(--urgency-red);
  font-weight: 600
}

/* Above-fold testimonial — Section 5.11 */
.hero-testimonial {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border)
}

.hero-testimonial blockquote {
  font-size: .92rem;
  color: var(--text-medium);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 6px
}

.hero-testimonial cite {
  font-size: .8rem;
  font-style: normal;
  color: var(--text-light);
  font-weight: 600
}

.hero-testimonial .ht-stars {
  color: var(--star);
  font-size: .82rem;
  letter-spacing: 1px;
  margin-bottom: 6px
}

/* ===== HERO CARD — 2-Step Form (Section 4.9) ===== */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, .03);
  position: relative
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  background: var(--gold);
  border-radius: 0 0 3px 3px
}

.hero-card h3 {
  text-align: center;
  font-size: 1.3rem;
  margin-bottom: 5px
}

.hero-card .card-sub {
  text-align: center;
  font-size: .88rem;
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.55
}

/* Form Steps */
.form-step {
  display: none
}

.form-step.active {
  display: block
}

.step-indicator {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  transition: all .3s
}

.step-dot.active {
  background: var(--teal);
  width: 28px;
  border-radius: 5px
}

.fg {
  margin-bottom: 13px
}

.fg label {
  display: block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
  letter-spacing: .2px
}

.fg input,
.fg select,
.fg textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .9rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  background: var(--off-white)
}

.fg textarea {
  resize: vertical;
  min-height: 56px;
  max-height: 120px
}

.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(91, 154, 160, .1)
}

.fg-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.form-cta-btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
  font-size: .98rem;
  padding: 14px;
  animation: softPulse 3s infinite
}

.form-back {
  width: 100%;
  text-align: center;
  padding: 8px;
  font-size: .85rem;
  color: var(--text-light);
  cursor: pointer;
  background: none;
  border: none;
  margin-top: 6px
}

.form-back:hover {
  color: var(--teal)
}

/* Selectable Chips */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px
}

.chip {
  padding: 8px 16px;
  border-radius: 20px;
  font-size: .82rem;
  font-weight: 600;
  font-family: var(--font-body);
  border: 1.5px solid var(--border);
  background: var(--off-white);
  color: var(--text-medium);
  cursor: pointer;
  transition: all .2s;
  line-height: 1.2
}

.chip:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-pale)
}

.chip.selected {
  border-color: var(--teal);
  background: var(--teal);
  color: var(--white)
}

/* RISK REVERSAL — Section 1.4 */
.risk-reversal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 12px;
  margin-top: 14px
}

.risk-reversal span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .76rem;
  color: var(--green);
  font-weight: 600
}

.risk-reversal span svg {
  width: 13px;
  height: 13px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  flex-shrink: 0
}

.form-note {
  text-align: center;
  font-size: .74rem;
  color: var(--text-muted);
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px
}

.form-note svg {
  width: 12px;
  height: 12px;
  stroke: var(--text-muted);
  fill: none;
  stroke-width: 2
}

/* Form Urgency */
.form-urgency {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  background: rgba(217, 79, 59, .05);
  border: 1px solid rgba(217, 79, 59, .12);
  border-radius: var(--radius-sm)
}

.fu-icon {
  flex-shrink: 0
}

.fu-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--urgency-red);
  fill: none;
  stroke-width: 2;
  animation: urgencyPulse 2s infinite
}

.fu-text {
  font-size: .8rem;
  line-height: 1.45
}

.fu-text strong {
  display: block;
  color: var(--text);
  font-size: .82rem
}

.fu-text span {
  color: var(--text-light)
}

.fu-text em {
  color: var(--urgency-red);
  font-style: normal;
  font-weight: 700
}

/* ===== LOGOS ===== */
.logos {
  padding: 36px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light)
}

.logos-label {
  text-align: center;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 18px
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap
}

.logo-img {
  height: 28px;
  width: auto;
  opacity: .4;
  filter: grayscale(100%);
  transition: all .3s ease
}

.logo-img:hover {
  opacity: .7;
  filter: grayscale(0%)
}

.logo-text-badge {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-pale);
  padding: 6px 14px;
  border-radius: 20px;
  white-space: nowrap;
  letter-spacing: .3px
}

.logo-text {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--teal-dark);
  opacity: .4;
  white-space: nowrap;
  letter-spacing: -.02em;
  transition: opacity .3s ease
}

.logo-text:hover {
  opacity: .7
}

/* ===== SERVICES ===== */
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px
}

.srv {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all var(--ease);
  position: relative;
  overflow: hidden;
  text-align: center
}

.srv::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--teal-light);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .35s ease
}

.srv:hover {
  box-shadow: var(--shadow-card);
  transform: translateY(-3px)
}

.srv:hover::after {
  transform: scaleX(1)
}

.srv-ico {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--teal-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px
}

.srv-ico svg {
  width: 22px;
  height: 22px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8
}

.srv h3 {
  margin-bottom: 8px;
  font-size: 1.08rem
}

.srv p {
  font-size: .88rem;
  color: var(--text-light);
  line-height: 1.68
}

/* ===== MID-PAGE CTA — Section 3.8 ===== */
.mid-cta {
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 48px
}

.mid-cta h3 {
  font-size: 1.4rem;
  margin-bottom: 8px
}

.mid-cta p {
  color: var(--text-medium);
  font-size: .95rem;
  margin-bottom: 20px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto
}

/* ===== WHO THIS IS FOR / NOT FOR — REDESIGN ===== */
.who-section {
  background: var(--teal-dark);
  position: relative;
  overflow: hidden
}

.who-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 20% 40%, rgba(107, 171, 178, .12) 0%, transparent 55%), radial-gradient(ellipse 40% 50% at 85% 60%, rgba(237, 178, 48, .05) 0%, transparent 50%);
  pointer-events: none
}

.who-section .kicker {
  color: rgba(255, 255, 255, .5)
}

.who-section h2 {
  color: var(--white)
}

.who-section .subtitle {
  color: rgba(255, 255, 255, .65)
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, .18)
}

/* NOT FOR — left panel */
.who-not {
  background: linear-gradient(170deg, #2C3E44 0%, #1F2E33 100%);
  padding: 44px 40px;
  position: relative
}

.who-not::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(217, 79, 59, .06) 0%, transparent 65%);
  pointer-events: none
}

.who-not::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(217, 79, 59, .4), rgba(217, 79, 59, 0))
}

.who-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px
}

.who-badge-not {
  background: rgba(217, 79, 59, .1);
  color: rgba(217, 79, 59, .8);
  border: 1px solid rgba(217, 79, 59, .15)
}

.who-badge-not svg {
  width: 14px;
  height: 14px;
  stroke: rgba(217, 79, 59, .7);
  fill: none;
  stroke-width: 2.5
}

.who-badge-yes {
  background: rgba(61, 171, 111, .1);
  color: rgba(61, 171, 111, .85);
  border: 1px solid rgba(61, 171, 111, .15)
}

.who-badge-yes svg {
  width: 14px;
  height: 14px;
  stroke: rgba(61, 171, 111, .7);
  fill: none;
  stroke-width: 2.5
}

.who-not h3 {
  color: rgba(255, 255, 255, .95);
  font-size: 1.3rem;
  margin-bottom: 8px
}

.who-not>p {
  color: rgba(255, 255, 255, .55);
  font-size: .88rem;
  margin-bottom: 24px;
  line-height: 1.65
}

.who-list {
  list-style: none
}

.who-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  position: relative
}

.who-list li:last-child {
  margin-bottom: 0
}

.who-list-not li .wl-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(217, 79, 59, .08);
  border: 1px solid rgba(217, 79, 59, .1);
  display: flex;
  align-items: center;
  justify-content: center
}

.who-list-not li .wl-ico svg {
  width: 18px;
  height: 18px;
  stroke: rgba(217, 79, 59, .7);
  fill: none;
  stroke-width: 2.5
}

.who-list-not li .wl-txt h4 {
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 2px
}

.who-list-not li .wl-txt p {
  color: rgba(255, 255, 255, .5);
  font-size: .82rem;
  line-height: 1.55
}

/* IS FOR — right panel */
.who-yes {
  background: linear-gradient(170deg, #ffffff 0%, #f8fafb 100%);
  padding: 44px 40px;
  position: relative
}

.who-yes::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(61, 171, 111, .06) 0%, transparent 65%);
  pointer-events: none
}

.who-yes::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(61, 171, 111, 0), rgba(61, 171, 111, .5), rgba(61, 171, 111, 0))
}

.who-yes h3 {
  color: var(--teal-dark);
  font-size: 1.3rem;
  margin-bottom: 8px
}

.who-yes>p {
  color: var(--text-light);
  font-size: .88rem;
  margin-bottom: 24px;
  line-height: 1.65
}

.who-list-yes li .wl-ico {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(61, 171, 111, .08);
  border: 1px solid rgba(61, 171, 111, .1);
  display: flex;
  align-items: center;
  justify-content: center
}

.who-list-yes li .wl-ico svg {
  width: 18px;
  height: 18px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5
}

.who-list-yes li .wl-txt h4 {
  color: var(--teal-dark);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  margin-bottom: 2px
}

.who-list-yes li .wl-txt p {
  color: var(--text-light);
  font-size: .82rem;
  line-height: 1.55
}

.who-cta-row {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 14px
}

.who-cta-note {
  font-size: .78rem;
  color: var(--text-muted)
}

/* Divider line between panels */
.who-grid>.who-not {
  border-right: 1px solid rgba(255, 255, 255, .06)
}

@media(max-width:1024px) {
  .who-grid {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg)
  }

  .who-grid>.who-not {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
  }

  .who-not,
  .who-yes {
    padding: 32px 28px
  }
}

/* ===== HOW IT WORKS ===== */
.how {
  background: var(--teal-dark);
  position: relative;
  overflow: hidden
}

.how::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 70% at 80% 40%, rgba(107, 171, 178, .12) 0%, transparent 65%);
  pointer-events: none
}

.how .kicker {
  color: rgba(255, 255, 255, .5)
}

.how h2 {
  color: var(--white)
}

.how .subtitle {
  color: rgba(255, 255, 255, .7)
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 44px;
  position: relative
}

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .12), rgba(255, 255, 255, .04))
}

.stp {
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 2
}

.stp-n {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  box-shadow: 0 6px 20px rgba(91, 154, 160, .3);
  border: 3px solid rgba(255, 255, 255, .1)
}

.stp h3 {
  color: var(--white);
  margin-bottom: 7px;
  font-size: 1.05rem
}

.stp p {
  color: rgba(255, 255, 255, .7);
  font-size: .85rem;
  line-height: 1.65
}

/* ===== WHY INGRAMSPARK — COMPARISON (Section 2.5) ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center
}

.why-stats {
  background: var(--teal-pale);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative
}

.why-stats::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius-lg) + 1px);
  background: linear-gradient(135deg, var(--teal-light), transparent 50%, var(--gold));
  opacity: .12;
  z-index: 0
}

.ws-inner {
  position: relative;
  z-index: 1
}

.ws-item {
  margin-bottom: 24px
}

.ws-item:last-child {
  margin-bottom: 0
}

.ws-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.1
}

.ws-label {
  font-size: .86rem;
  color: var(--text-medium);
  margin-top: 1px
}

.ws-div {
  height: 1px;
  background: rgba(91, 154, 160, .15);
  margin-bottom: 24px
}

/* Comparison Bullets — Section 2.5 */
.compare-bullets {
  list-style: none;
  margin-top: 24px
}

.compare-bullets li {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .92rem;
  color: var(--text);
  align-items: flex-start
}

.compare-bullets li:last-child {
  margin-bottom: 0
}

.compare-bullets li svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2.5;
  margin-top: 2px
}

.compare-bullets li strong {
  color: var(--teal-dark)
}

/* PRICE ANCHOR — Section 2.6 */
.price-anchor {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 24px;
  border-left: 3px solid var(--gold)
}

.price-anchor p {
  font-size: .9rem;
  color: var(--text-medium);
  line-height: 1.65
}

.price-anchor strong {
  color: var(--teal-dark)
}

/* ===== TESTIMONIALS ===== */
.test-bg {
  background: var(--light-bg)
}

.tg {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px
}

.tc {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column
}

.tc-stars {
  color: var(--star);
  font-size: .88rem;
  letter-spacing: 1.5px;
  margin-bottom: 14px
}

.tc-q {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.72;
  flex: 1;
  margin-bottom: 18px;
  font-style: italic;
  padding-left: 14px;
  border-left: 3px solid var(--teal-pale)
}

.tc-a {
  display: flex;
  align-items: center;
  gap: 10px
}

.tc-av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--teal-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .8rem
}

.tc-name {
  font-weight: 700;
  font-size: .85rem;
  color: var(--teal-dark)
}

.tc-role {
  font-size: .76rem;
  color: var(--text-muted)
}

/* ===== COMPARISON TABLE ===== */
.cmp-w {
  max-width: 760px;
  margin: 44px auto 0
}

.cmp {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm)
}

.cmp th,
.cmp td {
  padding: 14px 16px;
  font-size: .88rem
}

.cmp thead th {
  background: var(--teal-dark);
  color: var(--white);
  font-weight: 600;
  font-family: var(--font-body);
  font-size: .84rem;
  letter-spacing: .3px
}

.cmp thead th:first-child {
  text-align: left
}

.cmp thead th:nth-child(2) {
  background: var(--teal)
}

.cmp tbody td {
  border-bottom: 1px solid var(--border-light);
  background: var(--white);
  text-align: center
}

.cmp tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--teal-dark)
}

.cmp tbody td:nth-child(2) {
  background: #f4fafb;
  font-weight: 600;
  color: var(--teal-dark)
}

.cmp tbody tr:last-child td {
  border-bottom: none
}

.cy {
  color: var(--green);
  font-weight: 700
}

.cn {
  color: var(--text-muted)
}

.cp {
  color: var(--text-light);
  font-size: .8rem
}

/* ===== FAQ ===== */
.faq-w {
  max-width: 700px;
  margin: 44px auto 0
}

.faq-i {
  border-bottom: 1px solid var(--border)
}

.faq-q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: .98rem;
  font-weight: 600;
  color: var(--teal-dark);
  text-align: left;
  gap: 14px
}

.faq-q svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  transition: transform .3s
}

.faq-q.open svg {
  transform: rotate(45deg)
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease
}

.faq-a-in {
  padding: 0 0 18px;
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.72
}

/* ===== FINAL CTA ===== */
.final {
  background: var(--teal-dark);
  position: relative;
  overflow: hidden
}

.final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 65% at 25% 50%, rgba(107, 171, 178, .15) 0%, transparent 55%), radial-gradient(ellipse 35% 45% at 80% 30%, rgba(237, 178, 48, .06) 0%, transparent 50%);
  pointer-events: none
}

.final-in {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto
}

.final-in .kicker {
  color: rgba(255, 255, 255, .5)
}

.final-in h2 {
  color: var(--white);
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin-bottom: 14px
}

.final-in>p {
  color: rgba(255, 255, 255, .72);
  font-size: 1.02rem;
  margin-bottom: 28px;
  line-height: 1.7
}

.final-badges {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .07);
  flex-wrap: wrap
}

.fb {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .6);
  font-size: .8rem
}

.fb svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal-lighter);
  fill: none;
  stroke-width: 2
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(170deg, #3D5A62 0%, #2F4A52 100%);
  color: rgba(255, 255, 255, .55);
  padding: 0;
  position: relative;
  overflow: hidden
}

footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 60% at 15% 50%, rgba(107, 171, 178, .08) 0%, transparent 55%), radial-gradient(ellipse 30% 40% at 90% 30%, rgba(237, 178, 48, .04) 0%, transparent 50%);
  pointer-events: none
}

.ft-top {
  position: relative;
  z-index: 2;
  padding: 52px 0 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.ft-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 44px;
  align-items: start
}

.ft-brand p {
  font-size: .84rem;
  line-height: 1.75;
  margin-top: 14px;
  max-width: 340px
}

.ft-col-title {
  color: rgba(255, 255, 255, .85);
  font-family: var(--font-body);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 18px;
  display: block
}

.ft-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px
}

.ft-contact-item:last-child {
  margin-bottom: 0
}

.ft-contact-ico {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0
}

.ft-contact-ico svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal-light);
  fill: none;
  stroke-width: 2
}

.ft-contact-item a,
.ft-contact-item p {
  font-size: .84rem;
  margin: 0;
  line-height: 1.55;
  transition: color .2s
}

.ft-contact-item a:hover {
  color: var(--teal-lighter)
}

.ft-legal-links {
  display: flex;
  flex-direction: column;
  gap: 10px
}

.ft-legal-links a {
  font-size: .84rem;
  color: rgba(255, 255, 255, .55);
  transition: color .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px
}

.ft-legal-links a:hover {
  color: var(--teal-lighter)
}

.ft-legal-links a svg {
  width: 14px;
  height: 14px;
  stroke: rgba(255, 255, 255, .3);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0
}

.ft-bot {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: .76rem;
  color: rgba(255, 255, 255, .35)
}

/* ===== SVG WAVE DIVIDERS ===== */
.wave-divider {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -1px;
  margin-bottom: -1px
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: 48px
}

.wave-divider--flip {
  transform: rotate(180deg)
}

/* ===== PATTERN TEXTURE ON DARK SECTIONS ===== */
.pattern-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .35
}

.pattern-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 24px 24px
}

/* ===== STAGGERED REVEAL ANIMATIONS ===== */
.reveal-d1 {
  transition-delay: .1s
}

.reveal-d2 {
  transition-delay: .2s
}

.reveal-d3 {
  transition-delay: .3s
}

.reveal-d4 {
  transition-delay: .4s
}

.reveal-d5 {
  transition-delay: .5s
}

.reveal-d6 {
  transition-delay: .6s
}

/* ===== MOBILE STICKY ===== */
.mob-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--white);
  padding: 10px 16px;
  border-top: 1px solid var(--border);
  box-shadow: 0 -3px 14px rgba(0, 0, 0, .06)
}

.mob-bar .btn {
  width: 100%;
  justify-content: center;
  font-size: .92rem;
  padding: 12px
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .hero-content {
    text-align: left
  }

  .hero-sub-h {
    margin: 0 0 20px
  }

  .trust-strip {
    justify-content: flex-start
  }

  .hero-checks {
    align-items: flex-start
  }

  .hero-btns {
    justify-content: flex-start
  }

  .urgency-bar {
    margin: 20px 0 0
  }

  .hero-testimonial {
    text-align: left
  }

  .hero-card {
    max-width: 460px;
    margin: 0 auto
  }

  .srv-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px
  }

  .steps::before {
    display: none
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .tg {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 44px auto 0
  }

  .ft-grid {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {
  .topbar-right {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .section {
    padding: 56px 0
  }

  .container {
    padding: 0 20px
  }

  .topbar-trust {
    display: none
  }

  /* === GLOBAL: Left-align all section headers on mobile === */
  .text-center {
    text-align: left
  }

  .subtitle {
    margin-left: 0;
    margin-right: 0
  }

  .kicker {
    text-align: left
  }

  /* HERO */
  .hero {
    padding: 96px 0 44px
  }

  .hero-content {
    text-align: left
  }

  .hero-content .kicker {
    text-align: left
  }

  .hero-sub-h {
    font-size: 1rem;
    margin: 0 0 20px
  }

  .trust-strip {
    justify-content: flex-start
  }

  .hero-checks {
    align-items: flex-start
  }

  .hero-checks li {
    text-align: left
  }

  .hero-checks li .ic {
    margin-top: 2px
  }

  .hero-btns {
    justify-content: flex-start
  }

  .urgency-bar {
    margin: 20px 0 0;
    text-align: left
  }

  .hero-testimonial {
    text-align: left
  }

  .hero-testimonial blockquote {
    font-size: .88rem
  }

  .hero-card {
    padding: 24px 20px
  }

  .hero-card h3 {
    font-size: 1.15rem
  }

  /* LOGOS - stays centered (it's a logo strip, centering is expected) */
  .logos {
    padding: 28px 0
  }

  .logos-row {
    gap: 20px
  }

  .logo-img {
    height: 22px
  }

  .logo-text-badge {
    font-size: .72rem;
    padding: 5px 12px
  }

  .logos-label {
    font-size: .68rem;
    margin-bottom: 14px;
    text-align: center
  }

  /* SERVICES - left-align headers, cards stay centered */
  .srv-grid {
    grid-template-columns: 1fr
  }

  .srv {
    padding: 24px 20px
  }

  .srv-ico {
    margin: 0 auto 14px
  }

  .mid-cta {
    padding: 28px 20px;
    margin-top: 36px;
    text-align: left
  }

  .mid-cta h3 {
    font-size: 1.2rem
  }

  .mid-cta p {
    margin-left: 0;
    margin-right: 0
  }

  /* WHO SECTION - left-align headers */
  .who-section .text-center {
    text-align: left
  }

  .who-section .subtitle {
    margin-left: 0;
    font-size: .95rem
  }

  .who-not,
  .who-yes {
    padding: 28px 22px
  }

  .who-not h3,
  .who-yes h3 {
    font-size: 1.15rem
  }

  .who-list li {
    gap: 12px;
    margin-bottom: 16px
  }

  .who-list-not li .wl-ico,
  .who-list-yes li .wl-ico {
    width: 36px;
    height: 36px;
    border-radius: 8px
  }

  .who-list-not li .wl-ico svg,
  .who-list-yes li .wl-ico svg {
    width: 16px;
    height: 16px
  }

  .who-list-not li .wl-txt h4,
  .who-list-yes li .wl-txt h4 {
    font-size: .88rem
  }

  .who-list-not li .wl-txt p,
  .who-list-yes li .wl-txt p {
    font-size: .8rem
  }

  .who-cta-row {
    flex-direction: column;
    align-items: stretch
  }

  .who-cta-row .btn {
    justify-content: center
  }

  .who-cta-note {
    text-align: center
  }

  /* HOW IT WORKS - EXCEPTION: stays centered (numbered steps flow) */
  .how .text-center {
    text-align: center
  }

  .how .kicker {
    text-align: center
  }

  .how .subtitle {
    margin-left: auto;
    margin-right: auto
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 100%;
    margin: 36px auto 0;
    gap: 28px
  }

  .stp {
    text-align: center;
    padding: 0 10px
  }

  .stp-n {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
    margin-bottom: 14px
  }

  .stp h3 {
    font-size: 1rem
  }

  .stp p {
    font-size: .84rem
  }

  /* WHY SECTION - already left, just tighten */
  .why-stats {
    padding: 28px 24px
  }

  .ws-num {
    font-size: 2rem
  }

  .compare-bullets li {
    font-size: .88rem
  }

  .price-anchor {
    padding: 16px 18px
  }

  .price-anchor p {
    font-size: .86rem
  }

  /* TESTIMONIALS - left-align header */
  .tg {
    margin: 32px auto 0
  }

  .tc {
    padding: 22px 18px
  }

  .tc-q {
    font-size: .86rem;
    padding-left: 12px
  }

  /* COMPARISON TABLE */
  .cmp-w {
    margin: 32px 0 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch
  }

  .cmp th,
  .cmp td {
    padding: 10px 8px;
    font-size: .76rem
  }

  /* FAQ - left-align header */
  .faq-q {
    font-size: .92rem;
    padding: 16px 0
  }

  .faq-a-in {
    font-size: .86rem
  }

  /* FINAL CTA - EXCEPTION: stays centered (short punchy block) */
  .final .final-in {
    text-align: center
  }

  .final-in h2 {
    font-size: 1.5rem
  }

  .final-in>p {
    font-size: .94rem
  }

  .final-in .kicker {
    text-align: center
  }

  .final-badges {
    gap: 14px;
    justify-content: center
  }

  .fb {
    font-size: .76rem
  }

  .fb svg {
    width: 14px;
    height: 14px
  }

  /* FOOTER - left-align */
  .ft-top {
    padding: 40px 0 32px
  }

  .ft-grid {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .ft-brand p {
    max-width: 100%
  }

  .ft-contact-item a,
  .ft-contact-item p {
    font-size: .82rem
  }

  .ft-legal-links a {
    font-size: .82rem
  }

  /* FORM */
  .fg-row {
    grid-template-columns: 1fr
  }

  .hero-btns .btn-outline-teal {
    display: none
  }

  .fg textarea {
    max-height: 100px
  }

  .chip-group {
    gap: 6px
  }

  .chip {
    padding: 7px 13px;
    font-size: .78rem
  }

  /* CTA BUTTONS - full width on mobile */
  .hero-btns .btn {
    width: 100%;
    justify-content: center
  }

  .mid-cta .btn {
    width: 100%;
    justify-content: center
  }

  .who-cta-row .btn {
    width: 100%;
    justify-content: center
  }

  .how .btn {
    width: 100%;
    max-width: 400px;
    justify-content: center
  }

  .final-in .btn {
    width: 100%;
    max-width: 400px;
    justify-content: center
  }

  /* MOBILE STICKY */
  .mob-bar {
    display: block
  }

  body {
    padding-bottom: 64px
  }
}