﻿:root {
  --promo-offset: 0px;
  --navbar-sticky-top: 0px;
  --navbar-height: 56px;
}

html.js {
  --promo-offset: 44px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-padding-top: calc(var(--navbar-sticky-top) + var(--navbar-height));
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "DM Sans", sans-serif;
  background: #0d0d0d;
  color: #ffffff;
}

main {
  padding-bottom: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

#promo-spacer {
  display: none;
  height: 0;
}

.js #promo-spacer {
  display: block;
  height: var(--promo-offset);
  transition: height 300ms ease-out;
}

#promo-bar {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 44px;
  max-height: 140px;
  padding: 10px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #ffffff;
  background: #ff5544;
  background: linear-gradient(90deg, #e05a2d 0%, #d93636 100%);
  z-index: 10000;
  overflow: hidden;
  transition: max-height 300ms ease-out, opacity 300ms ease-out, padding 300ms ease-out;
}

.js #promo-bar.promo-fixed {
  position: fixed;
}

.promo-message {
  margin: 0;
  padding-right: 24px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.3px;
}

.promo-text-short {
  display: none;
}

#coupon-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 4px;
  border: 0;
  border-radius: 6px;
  padding: 3px 12px;
  background: #ffffff;
  color: #ff4444;
  font-size: inherit;
  font-weight: 800;
  letter-spacing: 0.3px;
  cursor: pointer;
  user-select: text;
  transition: background 200ms ease, transform 100ms ease;
}

.coupon-code {
  text-transform: uppercase;
}

.copy-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14px;
  min-height: 14px;
  font-size: 14px;
  color: #ff4444;
}

#coupon-copy-btn:hover {
  background: #fff5f5;
}

#coupon-copy-btn:active {
  background: #ffe0e0;
  transform: scale(0.97);
}

#coupon-copy-btn.is-copied {
  background: #fff5f5;
}

#coupon-copy-btn.is-copy-failed {
  background: #ffecec;
}

#promo-close-btn {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
}

#promo-close-btn:hover {
  color: rgba(255, 255, 255, 1);
}

#coupon-copy-btn:focus-visible,
#promo-close-btn:focus-visible,
.logo-link:focus-visible,
.navbar-cta:focus-visible,
#hero-coupon-btn:focus-visible,
.plan-cta:focus-visible,
#plans-coupon-btn:focus-visible,
#final-coupon-btn:focus-visible,
.hero-primary-cta:focus-visible,
.hero-secondary-cta:focus-visible,
.final-secondary-cta:focus-visible,
.trust-asterisk:focus-visible,
.final-trust-asterisk:focus-visible,
#sticky-mobile-cta-link:focus-visible,
.plans-footnote-link:focus-visible,
.testimonials-read-more:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
}

#promo-bar.promo-dismissed {
  min-height: 0;
  max-height: 0;
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
  pointer-events: none;
}

.promo-pref-dismissed {
  --promo-offset: 0px;
}

.promo-pref-dismissed #promo-bar,
.promo-pref-dismissed #promo-spacer {
  display: none;
}

#navbar-sentinel {
  height: 1px;
  margin-top: -1px;
}

#main-navbar {
  position: relative;
  width: 100%;
  min-height: var(--navbar-height);
  z-index: 9999;
  background: #0d0d0d;
  padding: 0 16px;
  transition: top 300ms ease, border-bottom-color 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

#main-navbar.is-sticky {
  position: fixed;
  top: var(--navbar-sticky-top);
  left: 0;
  right: 0;
  border-bottom: 1px solid #1a1a1a;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
}

#navbar-placeholder {
  height: 0;
}

.navbar-inner {
  min-height: var(--navbar-height);
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-decoration: none;
  transition: opacity 200ms ease;
}

.logo-link:hover {
  opacity: 0.85;
}

.logo-accent {
  font-size: 16px;
  line-height: 1;
}

.navbar-cta {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 8px;
  background: #4ade80;
  color: #0d0d0d;
  border: 0;
  font-weight: 700;
  font-size: 13px;
  padding: 8px 16px;
  transition: background 200ms ease, transform 150ms ease, box-shadow 200ms ease;
}

.navbar-cta:hover {
  background: #3bc96e;
  transform: scale(1.03);
  box-shadow: 0 4px 15px rgba(74, 222, 128, 0.3);
}

.navbar-cta:active {
  background: #34b85f;
  transform: scale(0.98);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - var(--navbar-height) - var(--promo-offset));
  padding: 40px 20px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #0d0d0d;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(74, 222, 128, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(59, 130, 246, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.04) 0%, transparent 40%);
  overflow: hidden;
}

.hero-inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 78px;
}

.hero-eyebrow {
  margin: 0 0 16px;
  color: #4ade80;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

#hero-title {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
}

.desktop-line-break {
  display: none;
}

.hero-highlight {
  color: #4ade80;
}

.hero-subheadline {
  margin: 0 auto 32px;
  max-width: 650px;
  color: #aaaaaa;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.hero-coupon-card {
  max-width: 420px;
  margin: 0 auto 32px;
  padding: 24px 20px;
  border-radius: 14px;
  border: 1.5px solid #4ade80;
  background: #1a1a2e;
  box-shadow: 0 0 40px rgba(74, 222, 128, 0.08);
  text-align: center;
}

.hero-coupon-title {
  margin: 0 0 12px;
  color: #ffd700;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-coupon-instruction {
  margin: 0 0 10px;
  color: #aaaaaa;
  font-size: 14px;
}

#hero-coupon-btn {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  background: #4ade80;
  color: #0d0d0d;
  font-size: 18px;
  font-weight: 800;
  padding: 12px 28px;
  cursor: pointer;
  transition: background 200ms ease, transform 150ms ease, box-shadow 200ms ease;
}

#hero-coupon-btn:hover {
  background: #3bc96e;
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}

#hero-coupon-btn:active {
  background: #34b85f;
  transform: scale(0.97);
}

.hero-coupon-note {
  margin: 0;
  color: #888888;
  font-size: 12px;
  font-weight: 400;
}

.hero-primary-cta {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  border-radius: 12px;
  background: #4ade80;
  color: #0d0d0d;
  text-decoration: none;
  text-align: center;
  font-size: 17px;
  font-weight: 800;
  padding: 16px 36px;
  transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.hero-primary-cta:hover {
  background: #3bc96e;
  transform: scale(1.03);
  box-shadow: 0 6px 25px rgba(74, 222, 128, 0.35);
}

.hero-primary-cta:active {
  background: #34b85f;
  transform: scale(0.98);
}

.hero-price-anchor {
  margin: 10px 0 0;
  color: #888888;
  font-size: 13px;
  font-weight: 400;
}

.hero-secondary-cta {
  display: block;
  margin-top: 16px;
  color: #4ade80;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

.hero-secondary-cta:hover {
  color: #3bc96e;
  text-decoration: underline;
}

.hero-trust-strip {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px 18px;
}

.trust-item {
  color: #888888;
  font-size: 13px;
  font-weight: 500;
}

.trust-check {
  color: #4ade80;
}

.trust-item-guarantee {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.trust-asterisk {
  color: #888888;
  text-decoration: none;
}

.trust-asterisk:hover {
  color: #4ade80;
}

#hero-scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  color: rgba(136, 136, 136, 0.5);
  font-size: 24px;
  line-height: 1;
  animation: hero-bounce 1.5s ease-in-out infinite;
  transition: opacity 300ms ease;
}

#hero-scroll-indicator.is-hidden {
  opacity: 0;
}

.struggle-section {
  position: relative;
  background: #111111;
  padding: 60px 20px;
}

.struggle-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  transform: translateY(-100%);
  background: linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
  pointer-events: none;
}

.struggle-inner {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.struggle-eyebrow {
  margin: 0 0 12px;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #ff6b35;
}

#struggle-title {
  margin: 0 0 12px;
  text-align: center;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.struggle-subheadline {
  margin: 0 auto 36px;
  max-width: 550px;
  text-align: center;
  color: #aaaaaa;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.struggle-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.struggle-card {
  border-radius: 12px;
  background: #1a1a1a;
  border-left: 4px solid #ff4444;
  border-top: 1px solid #2a2a2a;
  border-right: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 24px;
}

.struggle-icon {
  display: block;
  margin-bottom: 12px;
  font-size: 28px;
  line-height: 1;
}

.struggle-card-title {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.struggle-card-text {
  margin: 0;
  color: #aaaaaa;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

.js .struggle-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
  will-change: opacity, transform;
}

.js .struggle-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .struggle-card.is-immediate {
  transition: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .struggle-card:hover {
    border-left-color: #ff6b35;
    background: #1e1e1e;
    transform: translateY(-2px);
    transition: border-left-color 200ms ease, background 200ms ease, transform 200ms ease;
  }
}

.struggle-bridge {
  margin-top: 48px;
  text-align: center;
}

.struggle-bridge p {
  margin: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.bridge-highlight {
  color: #4ade80;
}

.js .struggle-bridge {
  opacity: 0;
  transition: opacity 600ms ease;
}

.js .struggle-bridge.is-visible {
  opacity: 1;
}

.js .struggle-bridge.is-immediate {
  transition: none !important;
}

.solution-section {
  position: relative;
  background: #0d0d0d;
  padding: 60px 20px;
}

.solution-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  transform: translateY(-100%);
  background: linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
  pointer-events: none;
}

.solution-inner {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.solution-eyebrow {
  margin: 0 0 12px;
  text-align: center;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #4ade80;
}

#solution-title {
  margin: 0 auto 12px;
  max-width: 700px;
  text-align: center;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.solution-highlight {
  color: #4ade80;
}

.solution-subheadline {
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
  color: #aaaaaa;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.solution-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: start;
}

.solution-item {
  display: flex;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #2a2a2a;
}

.solution-item:last-child {
  border-bottom: 0;
}

.solution-icon-wrap {
  width: 48px;
  min-width: 48px;
  height: 48px;
  margin-right: 16px;
  border-radius: 999px;
  background: rgba(74, 222, 128, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.solution-icon {
  width: 24px;
  height: 24px;
  stroke: #4ade80;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-item-content {
  flex: 1;
}

.solution-item-title {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.solution-item-desc {
  margin: 0;
  color: #aaaaaa;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.js .solution-item {
  opacity: 0;
  transition: opacity 300ms ease;
}

.js .solution-item.is-visible {
  opacity: 1;
}

.js .solution-item.is-immediate {
  transition: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .solution-item:hover {
    background: rgba(74, 222, 128, 0.03);
  }
}

.solution-footnote {
  margin: 32px auto;
  max-width: 700px;
  padding-top: 24px;
  border-top: 1px solid #2a2a2a;
  color: #777777;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.solution-cta-btn {
  max-width: 400px;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 32px;
}

.solution-coupon-reminder {
  margin: 12px 0 0;
  color: #aaaaaa;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

.solution-coupon-pill {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: #1a1a2e;
  color: #4ade80;
  font-weight: 700;
}

.before-after-section {
  position: relative;
  background: #111111;
  padding: 60px 20px;
}

.before-after-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  transform: translateY(-100%);
  background: linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
  pointer-events: none;
}

.before-after-inner {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
}

.before-after-eyebrow {
  margin: 0 0 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4ade80;
}

#before-after-title {
  margin: 0 auto 12px;
  max-width: 650px;
  text-align: center;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.before-after-subheadline {
  margin: 0 auto 40px;
  max-width: 550px;
  text-align: center;
  color: #aaaaaa;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
}

.before-after-card {
  width: 100%;
  background: #1a1a1a;
  border-radius: 14px;
  padding: 24px;
}

.before-card {
  border: 2px solid #ff4444;
}

.after-card {
  border: 2px solid #4ade80;
  box-shadow: 0 0 30px rgba(74, 222, 128, 0.08);
}

.before-after-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.before-badge {
  background: #ff4444;
  color: #ffffff;
}

.after-badge {
  background: #4ade80;
  color: #0d0d0d;
}

.before-after-card-title {
  margin: 0 0 20px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.before-after-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.before-after-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #cccccc;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.before-after-list li:last-child {
  margin-bottom: 0;
}

.before-after-icon {
  flex: 0 0 auto;
  line-height: 1;
  font-size: 16px;
  margin-top: 1px;
}

.before-after-mobile-connector {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.before-after-vs-circle {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1.5px solid #2a2a2a;
  background: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}

.before-after-reinforcement {
  margin: 40px auto 0;
  max-width: 650px;
  text-align: center;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.before-after-highlight {
  color: #4ade80;
}

.js .before-after-card {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.js .before-after-card.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.js .after-card {
  transition-delay: 200ms;
}

.js .before-after-reinforcement {
  opacity: 0;
  transition: opacity 500ms ease;
}

.js .before-after-reinforcement.is-visible {
  opacity: 1;
}

.js .before-after-card.is-immediate,
.js .before-after-reinforcement.is-immediate {
  transition: none !important;
}

.plans-section {
  position: relative;
  background: #0d0d0d;
  padding: 60px 20px;
}

.plans-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  transform: translateY(-100%);
  background: linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
  pointer-events: none;
}

.plans-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.plans-eyebrow {
  margin: 0 0 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4ade80;
}

#plans-title {
  margin: 0 auto 12px;
  max-width: 600px;
  text-align: center;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.plans-subheadline {
  margin: 0 auto 24px;
  max-width: 600px;
  text-align: center;
  color: #aaaaaa;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.plans-coupon-block {
  margin: 0 auto 40px;
  max-width: 420px;
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid #4ade80;
  background: #1a1a2e;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 8px;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
}

.plans-coupon-emoji {
  line-height: 1;
}

.plans-coupon-text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

#plans-coupon-btn {
  border: 0;
  border-radius: 6px;
  padding: 6px 16px;
  background: #4ade80;
  color: #0d0d0d;
  font-size: 15px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: background 200ms ease, transform 100ms ease;
}

#plans-coupon-btn:hover {
  background: #3bc96e;
}

#plans-coupon-btn:active {
  transform: scale(0.98);
}

#plans-coupon-btn.is-copy-failed {
  background: #96e5b3;
}

.plans-coupon-offer {
  color: #4ade80;
  font-size: 14px;
  font-weight: 600;
}

.plans-carousel-region {
  width: 100%;
  overflow: hidden;
}

.plans-carousel {
  margin: 0;
  padding: 0 20px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.plans-carousel::-webkit-scrollbar {
  display: none;
}

.plan-card {
  flex: 0 0 85vw;
  max-width: 340px;
  scroll-snap-align: center;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.plan-card:last-child {
  margin-right: 20px;
}

.plan-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.plan-badge-essential {
  background: #3b82f6;
  color: #ffffff;
}

.plan-badge-advanced {
  background: #ffd700;
  color: #0d0d0d;
  padding: 4px 14px;
}

.plan-badge-professional {
  background: #8b5cf6;
  color: #ffffff;
}

.plan-badge-presence {
  background: #d6336c;
  color: #ffffff;
}

.plan-badge-executive {
  background: #f59e0b;
  color: #0d0d0d;
}

.plan-name {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
}

.plan-pricing {
  margin-bottom: 20px;
}

.plan-pricing-line {
  margin: 0;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}

.plan-price-original {
  color: #888888;
  font-size: 16px;
  font-weight: 400;
  text-decoration: line-through;
}

.plan-price-arrow {
  color: #888888;
  font-size: 14px;
}

.plan-price-discounted {
  color: #ffffff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.plan-price-note {
  color: #888888;
  font-size: 12px;
}

.plan-best-for {
  margin: 0 0 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #2a2a2a;
  color: #aaaaaa;
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
}

.plan-feature-list {
  margin: 0 0 6px;
  padding: 0;
  list-style: none;
}

.plan-feature-list li {
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #cccccc;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.plan-feature-list li:last-child {
  margin-bottom: 0;
}

.plan-feature-icon {
  margin-top: 1px;
  font-size: 14px;
  line-height: 1;
}

.plan-feature-icon.included {
  color: #4ade80;
}

.plan-feature-list-excluded li,
.plan-feature-icon.excluded {
  color: #777777;
}

.plan-muted-note {
  color: #888888;
}

.plan-everything-note {
  margin: 8px 0 0;
  color: #f59e0b;
  font-size: 12px;
  font-weight: 600;
}

.plan-cta {
  margin-top: auto;
  width: 100%;
  display: block;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 100ms ease, box-shadow 200ms ease;
}

.plan-cta:active {
  transform: scale(0.98);
}

.plan-cta-outline {
  background: transparent;
  border: 1.5px solid currentColor;
}

.plan-cta-filled {
  border: 0;
}

.plan-cta-essential {
  color: #3b82f6;
}

.plan-cta-essential:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: #5b9cf6;
}

.plan-cta-professional {
  color: #8b5cf6;
}

.plan-cta-professional:hover {
  background: rgba(139, 92, 246, 0.1);
}

.plan-cta-presence {
  color: #d6336c;
}

.plan-cta-presence:hover {
  background: rgba(214, 51, 108, 0.1);
}

.plan-cta-advanced {
  background: #4ade80;
  color: #0d0d0d;
  padding: 14px 24px;
}

.plan-cta-advanced:hover {
  background: #3bc96e;
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
  transform: scale(1.02);
}

.plan-cta-executive {
  background: #f59e0b;
  color: #0d0d0d;
}

.plan-cta-executive:hover {
  background: #d97706;
  box-shadow: 0 4px 20px rgba(245, 158, 11, 0.3);
}

.plan-card.is-highlighted {
  border: 2px solid #4ade80;
  padding: 28px;
  box-shadow: 0 0 40px rgba(74, 222, 128, 0.12);
}

.plan-card.is-highlighted .plan-price-discounted {
  color: #4ade80;
}

.plan-executive {
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.06);
}

.plans-dots {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.plans-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2a2a;
}

.plans-dot.is-active {
  background: #4ade80;
}

.plans-footnote {
  margin: 32px auto 0;
  max-width: 800px;
  padding-top: 24px;
  border-top: 1px solid #2a2a2a;
  color: #777777;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

.plans-footnote-link {
  color: #4ade80;
  text-decoration: none;
}

.plans-footnote-link:hover {
  text-decoration: underline;
}

.testimonials-section {
  position: relative;
  background: #111111;
  padding: 60px 0;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  transform: translateY(-100%);
  background: linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
  pointer-events: none;
}

.testimonials-inner {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-head {
  padding: 0 20px;
}

.testimonials-eyebrow {
  margin: 0 0 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffd700;
}

#testimonials-title {
  margin: 0 auto 12px;
  max-width: 600px;
  text-align: center;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.testimonials-subheadline {
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
  color: #aaaaaa;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.testimonials-carousel-region {
  width: 100%;
  overflow: hidden;
}

.testimonials-carousel {
  margin: 0;
  padding: 0 20px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  position: relative;
  z-index: 0;
  flex: 0 0 85vw;
  max-width: 360px;
  scroll-snap-align: center;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 300ms ease, opacity 400ms ease;
}

.testimonial-card:last-child {
  margin-right: 20px;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 12px;
  left: 16px;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  color: rgba(74, 222, 128, 0.05);
  pointer-events: none;
  z-index: 0;
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-stars {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1;
}

.testimonial-card blockquote {
  margin: 0 0 20px;
  color: #dddddd;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
}

.testimonial-card footer {
  margin-top: auto;
}

.testimonial-card cite {
  display: block;
  margin: 0;
  color: #ffffff;
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.testimonial-card footer p {
  margin: 2px 0 0;
  color: #888888;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover {
    border-color: #4ade80;
  }
}

.js .testimonial-card {
  opacity: 0;
}

.js .testimonial-card.is-visible {
  opacity: 1;
}

.js .testimonial-card.is-immediate {
  transition: none !important;
}

.testimonial-dots {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2a2a;
}

.testimonial-dot.is-active {
  background: #ffd700;
}

.trust-badges {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #888888;
  font-size: 13px;
  font-weight: 500;
}

.trust-badge span {
  color: #4ade80;
}

.trust-badge:first-child span {
  color: #ffd700;
}

.testimonials-read-more {
  margin-top: 20px;
  display: block;
  text-align: center;
  color: #4ade80;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.testimonials-read-more:hover {
  color: #3bc96e;
  text-decoration: underline;
}

.process-section {
  position: relative;
  background: #0d0d0d;
  padding: 60px 20px;
}

.process-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  transform: translateY(-100%);
  background: linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
  pointer-events: none;
}

.process-inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.process-eyebrow {
  margin: 0 0 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4ade80;
}

#process-title {
  margin: 0 auto 12px;
  max-width: 700px;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

.process-highlight {
  color: #4ade80;
}

.process-subheadline {
  margin: 0 auto 48px;
  max-width: 600px;
  text-align: center;
  color: #aaaaaa;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.process-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
}

.process-step {
  position: relative;
  padding-left: 72px;
  padding-bottom: 40px;
}

.process-step:last-child {
  padding-bottom: 0;
}

.process-connector {
  position: absolute;
  left: 23px;
  top: 48px;
  bottom: 0;
  width: 2px;
  background: #2a2a2a;
  transition: background-color 400ms ease 100ms;
}

.process-step:last-child .process-connector {
  display: none;
}

.process-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #4ade80;
  color: #0d0d0d;
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 0 20px rgba(74, 222, 128, 0.2);
}

.process-step-content h3 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}

.process-step-content p {
  margin: 0 0 12px;
  color: #aaaaaa;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}

.inline-code-pill {
  display: inline-flex;
  align-items: center;
  padding: 1px 8px;
  border-radius: 4px;
  background: #1a1a2e;
  color: #4ade80;
  font-weight: 700;
  font-size: 0.95em;
  white-space: nowrap;
}

.process-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(74, 222, 128, 0.2);
  background: rgba(74, 222, 128, 0.08);
  color: #4ade80;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
}

.process-time-badge span {
  font-size: 14px;
  line-height: 1;
}

.process-cta-block {
  margin-top: 48px;
}

.process-cta-btn {
  max-width: 420px;
}

.process-coupon-reminder {
  margin: 12px 0 0;
  text-align: center;
  color: #aaaaaa;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
}

.js .process-step {
  opacity: 0;
  transform: translateX(-15px);
  transition: opacity 400ms ease, transform 400ms ease;
}

.js .process-step.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.js .process-step.is-visible .process-connector {
  background: #4ade80;
}

.js .process-step.is-immediate {
  transition: none !important;
}

.faq-section {
  position: relative;
  background: #111111;
  padding: 60px 20px;
  scroll-margin-top: calc(var(--promo-offset, 0px) + var(--navbar-height, 56px) + 20px);
}

.faq-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  transform: translateY(-100%);
  background: linear-gradient(180deg, #0d0d0d 0%, #111111 100%);
  pointer-events: none;
}

.faq-inner {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}

.faq-eyebrow {
  margin: 0 0 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #4ade80;
}

#faq-title {
  margin: 0 auto 12px;
  max-width: 600px;
  text-align: center;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.faq-subheadline {
  margin: 0 auto 40px;
  max-width: 600px;
  text-align: center;
  color: #aaaaaa;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.faq-link {
  color: #4ade80;
  text-decoration: none;
}

.faq-link:visited {
  color: #4ade80;
}

.faq-link:hover {
  color: #3bc96e;
  text-decoration: underline;
}

.faq-accordion {
  width: 100%;
}

.faq-item {
  margin: 0;
  border-bottom: 1px solid #2a2a2a;
}

.faq-item:first-child {
  border-top: 1px solid #2a2a2a;
}

.faq-summary {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0;
  list-style: none;
  cursor: pointer;
  color: #ffffff;
  line-height: 1.4;
  transition: color 200ms ease, background-color 200ms ease;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-question-text {
  flex: 1;
  padding-right: 16px;
  font-size: 15px;
  font-weight: 600;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 20px;
  color: #4ade80;
  transform: rotate(0deg);
  transition: transform 300ms ease;
}

.faq-item[open] .faq-summary {
  color: #4ade80;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
}

.faq-summary:focus-visible {
  outline: 2px solid #4ade80;
  outline-offset: 2px;
}

.faq-summary:active {
  background: rgba(74, 222, 128, 0.05);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 300ms ease-out, opacity 200ms ease;
}

.faq-item[open] .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
  padding: 0;
  color: #cccccc;
}

.faq-item[open] .faq-answer-inner {
  padding-bottom: 24px;
}

.faq-answer p,
.faq-answer li {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #cccccc;
}

.faq-answer p + p {
  margin-top: 12px;
}

.faq-answer ul,
.faq-answer ol {
  margin: 12px 0;
  padding: 0;
  list-style: none;
}

.faq-answer ul li,
.faq-answer ol li {
  position: relative;
  margin-bottom: 6px;
  padding-left: 16px;
}

.faq-answer ul li::before {
  content: "\2022";
  position: absolute;
  left: 0;
  top: 0;
  color: #cccccc;
}

.faq-answer ol {
  counter-reset: faq-number;
}

.faq-answer ol li::before {
  counter-increment: faq-number;
  content: counter(faq-number) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: #cccccc;
}

@media (hover: hover) and (pointer: fine) {
  .faq-summary:hover {
    color: #4ade80;
    background: rgba(74, 222, 128, 0.03);
  }
}

.final-cta-section {
  position: relative;
  padding: 60px 20px;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a2e 100%);
}

.final-cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 20px;
  transform: translateY(-100%);
  background: linear-gradient(180deg, #111111 0%, #0d0d0d 100%);
  pointer-events: none;
}

.final-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(74, 222, 128, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-eyebrow {
  margin: 0 0 12px;
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#final-cta-title {
  margin: 0 auto 16px;
  max-width: 750px;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
}

.final-cta-highlight {
  color: #4ade80;
}

.final-cta-subheadline {
  margin: 0 auto 32px;
  max-width: 620px;
  color: #aaaaaa;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
}

.final-coupon-block {
  margin: 0 auto 36px;
  max-width: 460px;
  padding: 28px 24px;
  border-radius: 16px;
  border: 1.5px solid #4ade80;
  background: #1a1a2e;
  box-shadow: 0 0 50px rgba(74, 222, 128, 0.1);
}

.final-coupon-offer {
  margin: 0 0 14px;
  color: #ffd700;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.final-coupon-instruction {
  margin: 0 0 8px;
  color: #cccccc;
  font-size: 14px;
  font-weight: 500;
}

#final-coupon-btn {
  margin: 0 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  border-radius: 8px;
  background: #4ade80;
  color: #0d0d0d;
  font-size: 18px;
  font-weight: 800;
  padding: 12px 32px;
  cursor: pointer;
  transition: background 200ms ease, transform 150ms ease, box-shadow 200ms ease;
}

#final-coupon-btn:hover {
  background: #3bc96e;
  transform: scale(1.03);
  box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
}

#final-coupon-btn:active {
  background: #34b85f;
  transform: scale(0.97);
}

#final-coupon-btn.is-copied {
  background: #3bc96e;
}

#final-coupon-btn.is-copy-failed {
  background: #a3e8bc;
}

.final-coupon-note {
  margin: 0;
  color: #888888;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.final-primary-cta {
  max-width: 440px;
  border-radius: 14px;
  font-size: 17px;
  padding: 18px 40px;
}

.final-primary-cta:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(74, 222, 128, 0.4);
}

.final-primary-cta:active {
  transform: scale(0.97);
}

.final-primary-cta.play-pulse {
  animation: final-cta-pulse 600ms ease-in-out 300ms 1 both;
}

.final-price-anchor {
  margin: 12px 0 0;
  color: #888888;
  font-size: 14px;
  font-weight: 400;
}

.final-price-value {
  color: #ffffff;
  font-weight: 600;
}

.final-secondary-cta {
  margin-top: 20px;
  display: block;
  color: #4ade80;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.final-secondary-cta:hover {
  color: #3bc96e;
  text-decoration: underline;
}

.final-trust-strip {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.final-trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #888888;
  font-size: 13px;
  font-weight: 500;
}

.final-trust-asterisk {
  color: #888888;
  text-decoration: none;
}

.final-trust-asterisk:hover {
  color: #4ade80;
}

.site-footer {
  width: 100%;
  background: #0a0a0a;
  border-top: 1px solid #1a1a1a;
  padding: 48px 20px calc(80px + env(safe-area-inset-bottom, 0px));
}

.footer-inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.footer-brand {
  margin: 0 0 4px;
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.footer-tagline {
  margin: 0 0 24px;
  color: #888888;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.footer-nav,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-nav {
  gap: 10px 16px;
  margin-bottom: 16px;
}

.footer-link {
  color: #888888;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 200ms ease;
}

.footer-link:hover {
  color: #4ade80;
}

.footer-legal {
  gap: 16px;
  margin-bottom: 16px;
}

.footer-legal-link {
  color: #777777;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  transition: color 200ms ease;
}

.footer-legal-link:hover {
  color: #888888;
  text-decoration: underline;
}

.footer-copy,
.footer-canada {
  margin: 0;
  color: #777777;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
}

.footer-copy {
  margin-bottom: 8px;
}

.footer-link:focus-visible,
.footer-legal-link:focus-visible {
  outline: 2px solid #4ade80;
  outline-offset: 2px;
}

#sticky-mobile-cta {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9998;
  width: 100%;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid #1a1a1a;
  background: #0d0d0d;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

@supports (backdrop-filter: blur(12px)) {
  #sticky-mobile-cta {
    background: rgba(13, 13, 13, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
}

#sticky-mobile-cta-link {
  display: block;
  width: 100%;
  border-radius: 10px;
  background: #4ade80;
  color: #0d0d0d;
  text-decoration: none;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 13px 20px;
  transition: background 100ms ease, transform 100ms ease;
}

#sticky-mobile-cta-link:active {
  background: #34b85f;
  transform: scale(0.98);
}

@media (hover: hover) and (pointer: fine) {
  #sticky-mobile-cta-link:hover {
    background: #3bc96e;
  }
}

.js #sticky-mobile-cta {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
  transition: transform 200ms ease-in, opacity 200ms ease-in, visibility 0s linear 200ms;
}

.js #sticky-mobile-cta.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  transition: transform 300ms ease-out, opacity 300ms ease-out;
}

@keyframes hero-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@keyframes final-cta-pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.03);
  }

  100% {
    transform: scale(1);
  }
}

@media (max-width: 374px) {
  #promo-bar {
    padding: 10px 36px 10px 12px;
  }

  .promo-message {
    padding-right: 18px;
  }

  .promo-text-full {
    display: none;
  }

  .promo-text-short {
    display: inline;
  }

  #coupon-copy-btn {
    margin: 0 2px;
    padding: 3px 8px;
  }

  .logo-link {
    font-size: 19px;
  }

  .navbar-cta {
    font-size: 13px;
    padding: 8px 12px;
  }

  .hero-section {
    padding: 32px 16px 16px;
  }

  #hero-title {
    font-size: 28px;
  }

  .hero-subheadline {
    font-size: 14px;
    margin-bottom: 26px;
  }

  .hero-coupon-card {
    padding: 20px 16px;
    margin-bottom: 26px;
  }

  #hero-coupon-btn {
    font-size: 16px;
    padding: 10px 20px;
  }

  .hero-primary-cta {
    font-size: 16px;
    padding: 14px 28px;
  }

  .hero-trust-strip {
    flex-direction: column;
    gap: 10px;
  }

  .struggle-section {
    padding: 48px 16px;
  }

  #struggle-title {
    font-size: 24px;
  }

  .struggle-subheadline {
    font-size: 14px;
    margin-bottom: 32px;
  }

  .struggle-grid {
    gap: 14px;
  }

  .struggle-card {
    padding: 20px;
  }

  .struggle-card-title {
    font-size: 14px;
  }

  .struggle-card-text {
    font-size: 13px;
  }

  .struggle-bridge p {
    font-size: 17px;
  }

  .solution-section {
    padding: 48px 16px;
  }

  #solution-title {
    font-size: 24px;
  }

  .solution-subheadline {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .solution-item {
    padding: 16px 0;
  }

  .solution-icon-wrap {
    width: 40px;
    min-width: 40px;
    height: 40px;
    margin-right: 12px;
  }

  .solution-icon {
    width: 20px;
    height: 20px;
  }

  .solution-item-title {
    font-size: 15px;
  }

  .solution-item-desc {
    font-size: 13px;
  }

  .solution-cta-btn {
    font-size: 15px;
    padding: 14px 24px;
  }

  .before-after-section {
    padding: 48px 16px;
  }

  #before-after-title {
    font-size: 24px;
  }

  .before-after-subheadline {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .before-after-grid {
    gap: 16px;
  }

  .before-after-card {
    padding: 20px;
  }

  .before-after-badge {
    font-size: 10px;
  }

  .before-after-card-title {
    font-size: 15px;
  }

  .before-after-list li {
    margin-bottom: 12px;
    font-size: 13px;
  }

  .before-after-icon {
    font-size: 14px;
  }

  .before-after-reinforcement {
    font-size: 15px;
  }

  .plans-section {
    padding: 48px 16px;
  }

  #plans-title {
    font-size: 24px;
  }

  .plans-subheadline {
    font-size: 14px;
  }

  .plans-coupon-block {
    padding: 12px 14px;
    margin-bottom: 32px;
  }

  .plans-coupon-text,
  .plans-coupon-offer {
    font-size: 13px;
  }

  #plans-coupon-btn {
    font-size: 15px;
  }

  .plans-carousel {
    padding: 0 16px;
  }

  .plan-card {
    padding: 20px;
  }

  .plan-card.is-highlighted {
    padding: 24px;
  }

  .plan-price-discounted {
    font-size: 26px;
  }

  .plan-cta {
    padding: 12px 20px;
  }

  .plans-footnote {
    font-size: 11px;
  }

  .testimonials-section {
    padding: 48px 0;
  }

  .testimonials-head {
    padding: 0 16px;
  }

  #testimonials-title {
    font-size: 24px;
  }

  .testimonials-subheadline {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .testimonials-carousel {
    padding: 0 16px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-stars {
    font-size: 14px;
  }

  .testimonial-card blockquote {
    font-size: 13px;
  }

  .trust-badges {
    gap: 12px 16px;
  }

  .trust-badge {
    width: calc(50% - 8px);
    justify-content: center;
  }

  .process-section {
    padding: 48px 16px;
  }

  #process-title {
    font-size: 24px;
  }

  .process-subheadline {
    margin-bottom: 36px;
    font-size: 14px;
  }

  .process-step {
    padding-left: 60px;
    padding-bottom: 32px;
  }

  .process-circle {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .process-connector {
    left: 19px;
    top: 40px;
  }

  .process-step-content h3 {
    font-size: 16px;
  }

  .process-step-content p {
    font-size: 13px;
  }

  .process-time-badge {
    font-size: 11px;
  }

  .process-cta-block {
    margin-top: 40px;
  }

  .faq-section {
    padding: 48px 16px;
  }

  #faq-title {
    font-size: 24px;
  }

  .faq-subheadline {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .faq-summary {
    padding: 16px 0;
  }

  .faq-question-text {
    font-size: 14px;
  }

  .faq-icon {
    font-size: 18px;
  }

  .faq-answer p,
  .faq-answer li {
    font-size: 13px;
  }

  .final-cta-section {
    padding: 48px 16px;
  }

  #final-cta-title {
    font-size: 24px;
  }

  .final-cta-subheadline {
    margin-bottom: 28px;
    font-size: 14px;
  }

  .final-coupon-block {
    margin-bottom: 32px;
    padding: 24px 20px;
  }

  .final-coupon-offer {
    font-size: 15px;
  }

  #final-coupon-btn {
    font-size: 16px;
    padding: 10px 24px;
  }

  .final-primary-cta {
    font-size: 16px;
    padding: 16px 32px;
  }

  .final-price-anchor {
    font-size: 13px;
  }

  .final-secondary-cta {
    margin-top: 18px;
    font-size: 14px;
  }

  .final-trust-strip {
    gap: 12px 14px;
  }

  .final-trust-item {
    width: calc(50% - 7px);
    justify-content: center;
  }

  .site-footer {
    padding-top: 40px;
  }

  .footer-brand {
    font-size: 18px;
  }

  .footer-tagline {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .footer-nav {
    gap: 10px 12px;
  }

  .footer-link {
    font-size: 12px;
  }

  .footer-legal-link,
  .footer-copy,
  .footer-canada {
    font-size: 11px;
  }
}

@media (min-width: 375px) {
  #hero-title {
    font-size: 30px;
  }

  #sticky-mobile-cta {
    padding: 10px 20px calc(10px + env(safe-area-inset-bottom, 0px));
  }

  #sticky-mobile-cta-link {
    font-size: 16px;
    padding: 14px 32px;
  }
}

@media (min-width: 414px) {
  #hero-title {
    font-size: 32px;
  }
}

@media (min-width: 768px) {
  :root {
    --navbar-height: 60px;
  }

  main {
    padding-bottom: 0;
  }

  .site-footer {
    padding: 56px 24px 48px;
  }

  .footer-brand {
    font-size: 20px;
  }

  .footer-tagline {
    margin-bottom: 32px;
    font-size: 14px;
  }

  .footer-nav {
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer-link {
    font-size: 14px;
  }

  .footer-legal {
    gap: 20px;
    margin-bottom: 20px;
  }

  .footer-legal-link {
    font-size: 13px;
  }

  .footer-copy,
  .footer-canada {
    font-size: 13px;
  }

  #sticky-mobile-cta {
    display: none;
  }

  #promo-bar {
    padding: 10px 40px;
  }

  .promo-message {
    font-size: 14px;
    white-space: nowrap;
  }

  #main-navbar {
    padding: 0 24px;
  }

  .navbar-cta {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero-section {
    padding: 64px 24px 30px;
  }

  .struggle-section {
    padding: 80px 24px;
  }

  .struggle-eyebrow {
    margin-bottom: 14px;
    font-size: 12px;
  }

  #struggle-title {
    font-size: 32px;
  }

  .struggle-subheadline {
    font-size: 16px;
    margin-bottom: 48px;
  }

  .struggle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .struggle-card {
    padding: 24px;
  }

  .struggle-bridge p {
    font-size: 22px;
  }

  .solution-section {
    padding: 80px 24px;
  }

  .solution-eyebrow {
    font-size: 12px;
  }

  #solution-title {
    font-size: 32px;
  }

  .solution-subheadline {
    font-size: 16px;
  }

  .before-after-section {
    padding: 80px 24px;
  }

  .before-after-eyebrow {
    font-size: 12px;
  }

  #before-after-title {
    font-size: 32px;
  }

  .before-after-subheadline {
    margin-bottom: 52px;
    font-size: 16px;
  }

  .before-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .before-after-card {
    padding: 24px;
  }

  .before-after-badge {
    font-size: 12px;
  }

  .before-after-list li {
    font-size: 14px;
  }

  .before-after-mobile-connector {
    display: none;
  }

  .before-after-reinforcement {
    font-size: 18px;
  }

  .plans-section {
    padding: 80px 24px;
  }

  .plans-eyebrow {
    font-size: 12px;
  }

  #plans-title {
    font-size: 32px;
  }

  .plans-subheadline {
    font-size: 16px;
  }

  .plans-coupon-block {
    margin-bottom: 52px;
    padding: 12px 28px;
  }

  .plans-coupon-text,
  .plans-coupon-offer {
    font-size: 15px;
  }

  #plans-coupon-btn {
    font-size: 16px;
  }

  .plans-carousel {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .plan-card {
    max-width: none;
    padding: 24px;
    flex: 1 1 auto;
    scroll-snap-align: none;
  }

  .plan-card:last-child {
    margin-right: 0;
  }

  .plan-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 440px;
    justify-self: center;
  }

  .plan-badge {
    font-size: 11px;
  }

  .plan-feature-list li {
    font-size: 14px;
  }

  .plans-dots {
    display: none;
  }

  .plans-footnote {
    font-size: 12px;
  }

  .testimonials-section {
    padding: 80px 24px;
  }

  .testimonials-head {
    padding: 0 24px;
  }

  .testimonials-eyebrow {
    font-size: 12px;
  }

  #testimonials-title {
    font-size: 32px;
  }

  .testimonials-subheadline {
    margin-bottom: 52px;
    font-size: 16px;
  }

  .testimonials-carousel {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    overflow: visible;
    scroll-snap-type: none;
  }

  .testimonial-card {
    max-width: none;
    padding: 28px;
    flex: 1 1 auto;
    scroll-snap-align: none;
    margin-right: 0;
  }

  .testimonial-dots {
    display: none;
  }

  .trust-badges {
    margin-top: 52px;
    gap: 20px;
  }

  .trust-badge {
    width: auto;
    font-size: 14px;
  }

  .process-section {
    padding: 80px 24px;
  }

  .process-eyebrow {
    font-size: 12px;
  }

  #process-title {
    font-size: 32px;
  }

  .process-subheadline {
    margin-bottom: 64px;
    font-size: 16px;
  }

  .process-timeline {
    max-width: 600px;
    margin: 0 auto;
  }

  .process-step {
    padding-left: 80px;
  }

  .process-circle {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .process-connector {
    left: 25px;
    top: 52px;
  }

  .process-step-content h3 {
    font-size: 18px;
  }

  .process-step-content p {
    font-size: 14px;
  }

  .process-time-badge {
    font-size: 13px;
  }

  .process-coupon-reminder {
    font-size: 14px;
  }

  .faq-section {
    padding: 80px 24px;
  }

  .faq-inner {
    max-width: 650px;
  }

  .faq-eyebrow {
    font-size: 12px;
  }

  #faq-title {
    font-size: 32px;
  }

  .faq-subheadline {
    margin-bottom: 52px;
    font-size: 16px;
  }

  .faq-question-text {
    font-size: 16px;
  }

  .final-cta-section {
    padding: 80px 24px;
  }

  .final-cta-eyebrow {
    font-size: 12px;
  }

  #final-cta-title {
    font-size: 36px;
  }

  .final-cta-subheadline {
    margin-bottom: 40px;
    font-size: 16px;
  }

  .final-coupon-block {
    padding: 30px 30px;
  }

  .final-coupon-offer {
    font-size: 17px;
  }

  #final-coupon-btn {
    font-size: 20px;
    padding: 12px 30px;
  }

  .final-coupon-note {
    font-size: 14px;
  }

  .final-primary-cta {
    max-width: 420px;
    font-size: 18px;
    padding: 18px 42px;
  }

  .final-price-anchor {
    font-size: 15px;
  }

  .final-secondary-cta {
    font-size: 15px;
  }

  .final-trust-strip {
    gap: 16px 20px;
  }

  .js .before-card {
    transform: translateX(-10px);
  }

  .js .after-card {
    transform: translateX(10px);
  }

  .hero-eyebrow {
    font-size: 13px;
  }

  #hero-title {
    font-size: 44px;
  }

  .hero-subheadline {
    font-size: 17px;
    margin-bottom: 40px;
  }

  .hero-coupon-title {
    font-size: 18px;
  }

  #hero-coupon-btn {
    font-size: 20px;
  }

  .hero-coupon-note {
    font-size: 13px;
  }

  .hero-trust-strip {
    gap: 14px 24px;
  }

  .trust-item {
    font-size: 14px;
  }

  #hero-scroll-indicator {
    bottom: 24px;
  }
}

@media (min-width: 1024px) {
  :root {
    --navbar-height: 64px;
  }

  .site-footer {
    padding: 64px 0 48px;
  }

  .footer-brand {
    font-size: 22px;
  }

  #promo-bar {
    padding: 10px 48px;
  }

  .promo-message {
    font-size: 15px;
  }

  #promo-close-btn {
    right: 20px;
  }

  #main-navbar {
    padding: 0 48px;
  }

  .logo-link {
    font-size: 22px;
  }

  .navbar-cta {
    font-size: 15px;
    padding: 10px 24px;
  }

  .hero-section {
    padding: 80px 0 40px;
  }

  .struggle-section {
    padding: 100px 0;
  }

  .struggle-eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
  }

  #struggle-title {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .struggle-subheadline {
    font-size: 17px;
  }

  .struggle-grid {
    gap: 24px;
  }

  .struggle-card {
    padding: 28px;
  }

  .struggle-icon {
    font-size: 32px;
  }

  .struggle-card-title {
    font-size: 16px;
  }

  .struggle-card-text {
    font-size: 14px;
  }

  .struggle-bridge {
    margin-top: 64px;
  }

  .struggle-bridge p {
    font-size: 26px;
  }

  .solution-section {
    padding: 100px 0;
  }

  .solution-inner {
    max-width: 900px;
  }

  .solution-eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
  }

  #solution-title {
    font-size: 40px;
  }

  .solution-subheadline {
    margin-bottom: 52px;
    font-size: 17px;
  }

  .solution-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-item {
    padding: 20px 0;
    border-bottom: 1px solid #2a2a2a;
  }

  .solution-item:nth-child(odd) {
    padding-right: 24px;
  }

  .solution-item:nth-child(even) {
    padding-left: 24px;
  }

  .solution-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .solution-icon-wrap {
    width: 56px;
    min-width: 56px;
    height: 56px;
    margin-right: 20px;
  }

  .solution-icon {
    width: 28px;
    height: 28px;
  }

  .solution-item-title {
    font-size: 17px;
  }

  .solution-item-desc {
    font-size: 15px;
  }

  .solution-footnote {
    text-align: left;
    font-size: 13px;
  }

  .solution-cta-btn {
    font-size: 17px;
    padding: 16px 40px;
  }

  .solution-coupon-reminder {
    font-size: 14px;
  }

  .before-after-section {
    padding: 100px 0;
  }

  .before-after-eyebrow {
    margin-bottom: 16px;
    font-size: 13px;
  }

  #before-after-title {
    font-size: 40px;
  }

  .before-after-subheadline {
    font-size: 17px;
  }

  .before-after-card {
    padding: 32px;
  }

  .before-after-card-title {
    font-size: 18px;
  }

  .before-after-list li {
    margin-bottom: 14px;
  }

  .before-after-reinforcement {
    margin-top: 52px;
    font-size: 20px;
  }

  .plans-section {
    padding: 100px 0;
  }

  .plans-eyebrow {
    font-size: 13px;
  }

  #plans-title {
    font-size: 40px;
  }

  .plans-subheadline {
    font-size: 17px;
  }

  .plans-carousel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px 20px;
    align-items: stretch;
  }

  .plan-card {
    padding: 28px;
  }

  .plan-card.is-highlighted {
    transform: translateY(-8px);
    padding: 32px;
  }

  .plan-card:nth-child(5) {
    grid-column: 2 / 3;
    max-width: none;
    justify-self: stretch;
  }

  .plan-name {
    font-size: 24px;
  }

  .plan-price-discounted {
    font-size: 32px;
  }

  .plan-best-for,
  .plan-feature-list li {
    font-size: 14px;
  }

  .plans-footnote {
    margin-top: 40px;
    font-size: 12px;
  }

  .testimonials-section {
    padding: 100px 0;
  }

  .testimonials-head {
    padding: 0;
  }

  .testimonials-eyebrow {
    font-size: 13px;
  }

  #testimonials-title {
    font-size: 40px;
  }

  .testimonials-subheadline {
    font-size: 17px;
  }

  .testimonials-carousel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .testimonial-card {
    padding: 32px;
  }

  .testimonial-stars {
    font-size: 16px;
  }

  .testimonial-card blockquote {
    font-size: 15px;
  }

  .testimonial-card cite {
    font-size: 15px;
  }

  .testimonial-card footer p {
    font-size: 13px;
  }

  .trust-badges {
    gap: 24px;
  }

  .process-section {
    padding: 100px 0;
  }

  .process-eyebrow {
    font-size: 13px;
  }

  #process-title {
    font-size: 40px;
  }

  .process-subheadline {
    font-size: 17px;
  }

  .process-timeline {
    max-width: 1000px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .process-step {
    flex: 1 1 25%;
    padding: 0 12px;
    text-align: center;
  }

  .process-circle {
    position: relative;
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    font-size: 24px;
  }

  .process-connector {
    left: calc(50% + 28px);
    right: calc(-50% + 28px);
    top: 28px;
    bottom: auto;
    width: auto;
    height: 2px;
  }

  .process-step:last-child .process-connector {
    display: none;
  }

  .process-step-content {
    max-width: 220px;
    margin: 0 auto;
  }

  .process-step-content p {
    font-size: 13px;
  }

  .process-cta-block {
    margin-top: 64px;
  }

  .process-cta-btn {
    font-size: 17px;
    padding: 16px 40px;
  }

  .faq-section {
    padding: 100px 0;
  }

  .faq-eyebrow {
    font-size: 13px;
  }

  #faq-title {
    font-size: 40px;
  }

  .faq-subheadline {
    font-size: 17px;
  }

  .faq-inner {
    max-width: 750px;
  }

  .faq-summary {
    padding: 24px 0;
  }

  .faq-question-text {
    font-size: 17px;
  }

  .faq-answer p,
  .faq-answer li {
    font-size: 15px;
  }

  .final-cta-section {
    padding: 100px 0;
  }

  .final-cta-eyebrow {
    font-size: 13px;
  }

  #final-cta-title {
    font-size: 44px;
  }

  .final-cta-subheadline {
    margin-bottom: 40px;
    font-size: 18px;
  }

  .final-coupon-block {
    padding: 32px 36px;
  }

  .final-coupon-offer {
    font-size: 18px;
  }

  #final-coupon-btn {
    font-size: 22px;
  }

  .final-primary-cta {
    max-width: 440px;
    font-size: 19px;
    padding: 20px 48px;
  }

  .final-secondary-cta {
    font-size: 15px;
  }

  .final-trust-strip {
    margin-top: 40px;
    gap: 20px;
  }

  .final-trust-item {
    font-size: 14px;
  }

  .js .process-step {
    transform: translateY(15px);
  }

  .js .process-step.is-visible {
    transform: translateY(0);
  }

  .hero-eyebrow {
    font-size: 14px;
    margin-bottom: 20px;
  }

  #hero-title {
    font-size: 48px;
    margin-bottom: 24px;
  }

  .desktop-line-break {
    display: inline;
  }

  #hero-coupon-btn {
    padding: 12px 28px;
  }

  .hero-primary-cta {
    font-size: 18px;
    padding: 18px 44px;
  }

  #hero-scroll-indicator {
    bottom: 28px;
  }
}

@media (min-width: 1440px) {
  #main-navbar {
    padding: 0 80px;
  }

  #hero-title {
    font-size: 52px;
  }

  .plans-carousel {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
  }

  .plan-card:nth-child(5) {
    grid-column: auto;
  }

  .testimonials-carousel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-step-content p {
    font-size: 14px;
  }
}

@media (max-height: 600px) {
  #hero-scroll-indicator {
    display: none;
  }
}

@media print {
  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .before-after-mobile-connector {
    display: none;
  }

  .process-timeline {
    display: block;
    max-width: none;
  }

  .process-step {
    padding-left: 72px;
    padding-bottom: 24px;
    text-align: left;
  }

  .process-circle {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    background: transparent;
    border: 2px solid #333333;
    color: #333333;
    box-shadow: none;
  }

  .process-connector {
    left: 23px;
    top: 48px;
    bottom: 0;
    width: 2px;
    height: auto;
    right: auto;
    background: #333333;
  }

  .faq-item {
    display: block;
  }

  .faq-answer {
    grid-template-rows: 1fr !important;
    opacity: 1 !important;
  }

  .faq-answer-inner {
    padding-bottom: 16px !important;
  }

  .faq-icon {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  #hero-scroll-indicator {
    animation: none;
  }

  .struggle-card,
  .struggle-bridge {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .solution-item {
    transition: none !important;
    opacity: 1 !important;
  }

  .before-after-card,
  .before-after-reinforcement {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .plans-carousel {
    scroll-behavior: auto;
  }

  .testimonials-carousel {
    scroll-behavior: auto;
  }

  #plans-coupon-btn,
  .plan-cta {
    transition: none !important;
  }

  .testimonial-card {
    transition: none !important;
    opacity: 1 !important;
  }

  .process-step {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }

  .process-connector {
    transition: none !important;
    background: #4ade80 !important;
  }

  .final-primary-cta.play-pulse {
    animation: none !important;
  }

  #final-coupon-btn,
  .final-primary-cta,
  .final-secondary-cta,
  .final-trust-asterisk,
  #sticky-mobile-cta,
  #sticky-mobile-cta-link {
    transition: none !important;
  }

  .faq-summary,
  .faq-icon,
  .faq-answer {
    transition: none !important;
  }

  #coupon-copy-btn,
  #promo-close-btn,
  .logo-link,
  .navbar-cta,
  #hero-coupon-btn,
  .hero-primary-cta,
  .hero-secondary-cta,
  .trust-asterisk,
  #main-navbar,
  #promo-bar,
  #promo-spacer {
    transition: none;
  }
}

/* -------------------------------------------------------------------------- */
/* Reference Theme Palette Refresh (resumeaudit.zipresume.ca inspired)        */
/* -------------------------------------------------------------------------- */

:root {
  --ref-bg-app: #f6fbf8;
  --ref-bg-nav: rgba(255, 255, 255, 0.94);
  --ref-bg-hero-start: #2d6fe6;
  --ref-bg-hero-end: #255ad3;
  --ref-bg-s1: #fbf2dd;
  --ref-bg-s2: #ffffff;
  --ref-bg-s3: #eef5ff;
  --ref-bg-s4: #ffffff;
  --ref-bg-s5: #f6fbf8;
  --ref-bg-s6: #eef8f3;
  --ref-bg-s7: #ffffff;
  --ref-bg-final-start: #0b2450;
  --ref-bg-final-end: #071a3a;
  --ref-bg-footer: #041027;
  --ref-surface: #ffffff;
  --ref-surface-soft: #eef4ff;
  --ref-border: #d8e3f2;
  --ref-border-strong: #c3d4ec;
  --ref-ink: #0b1220;
  --ref-ink-muted: #445066;
  --ref-ink-soft: #6b7486;
  --ref-accent: #19b969;
  --ref-accent-hover: #12b76a;
  --ref-accent-pressed: #0ea75d;
  --ref-link: #2d6fe6;
  --ref-link-hover: #255ad3;
  --ref-gold: #ffd700;
  --ref-warn: #e05a2d;
  --ref-danger: #d93636;
}

html,
body {
  background: var(--ref-bg-app);
  color: var(--ref-ink);
}

#coupon-copy-btn:focus-visible,
#promo-close-btn:focus-visible,
.logo-link:focus-visible,
.navbar-cta:focus-visible,
#hero-coupon-btn:focus-visible,
.plan-cta:focus-visible,
#plans-coupon-btn:focus-visible,
#final-coupon-btn:focus-visible,
.hero-primary-cta:focus-visible,
.hero-secondary-cta:focus-visible,
.final-secondary-cta:focus-visible,
.trust-asterisk:focus-visible,
.final-trust-asterisk:focus-visible,
#sticky-mobile-cta-link:focus-visible,
.plans-footnote-link:focus-visible,
.testimonials-read-more:focus-visible,
.footer-link:focus-visible,
.footer-legal-link:focus-visible {
  outline-color: var(--ref-link);
}

#promo-bar {
  color: #ffffff;
  background: linear-gradient(90deg, var(--ref-bg-hero-start) 0%, var(--ref-bg-hero-end) 100%);
}

#coupon-copy-btn {
  background: #ffffff;
  color: var(--ref-link);
}

.copy-status {
  color: var(--ref-link);
}

#coupon-copy-btn:hover {
  background: #eef4ff;
}

#coupon-copy-btn:active,
#coupon-copy-btn.is-copied {
  background: #e6efff;
}

#coupon-copy-btn.is-copy-failed {
  background: #ffe9df;
}

#main-navbar {
  background: var(--ref-bg-nav);
}

#main-navbar.is-sticky {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--ref-border);
  box-shadow: 0 2px 20px rgba(11, 18, 32, 0.12);
}

.logo-link {
  color: var(--ref-ink);
}

.navbar-cta,
#hero-coupon-btn,
.hero-primary-cta,
.solution-cta-btn,
.process-cta-btn,
#final-coupon-btn,
#sticky-mobile-cta-link {
  background: var(--ref-accent);
  color: #07132b;
}

.navbar-cta:hover,
#hero-coupon-btn:hover,
.hero-primary-cta:hover,
#plans-coupon-btn:hover,
#final-coupon-btn:hover,
#sticky-mobile-cta-link:hover {
  background: var(--ref-accent-hover);
}

.navbar-cta:active,
#hero-coupon-btn:active,
.hero-primary-cta:active,
#sticky-mobile-cta-link:active,
#final-coupon-btn:active {
  background: var(--ref-accent-pressed);
}

#plans-coupon-btn,
.plan-cta-advanced {
  background: var(--ref-accent);
  color: #07132b;
}

.plan-cta-advanced:hover {
  background: var(--ref-accent-hover);
  box-shadow: 0 4px 20px rgba(25, 185, 105, 0.24);
}

.hero-section {
  background-color: var(--ref-bg-hero-end);
  background-image:
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 84% 68%, rgba(43, 212, 125, 0.16) 0%, transparent 48%),
    linear-gradient(160deg, var(--ref-bg-hero-start) 0%, var(--ref-bg-hero-end) 100%);
}

.hero-eyebrow {
  color: #d4f7e6;
}

#hero-title,
.hero-subheadline,
.hero-price-anchor,
.hero-coupon-instruction,
.hero-coupon-note,
.trust-item,
.trust-asterisk,
#hero-scroll-indicator {
  color: rgba(255, 255, 255, 0.88);
}

.hero-highlight,
.hero-secondary-cta,
.trust-check,
.trust-asterisk:hover {
  color: #2bd47d;
}

.hero-secondary-cta:hover {
  color: #d9fbe9;
}

.hero-coupon-card {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 20px 45px rgba(7, 20, 47, 0.25);
}

.hero-coupon-title {
  color: #fbf2dd;
}

#student-struggles {
  background: var(--ref-bg-s1);
}

#solution-section {
  background: var(--ref-bg-s2);
}

#before-after-section {
  background: var(--ref-bg-s3);
}

#plans-section {
  background: var(--ref-bg-s4);
}

#testimonials-section {
  background: var(--ref-bg-s5);
}

#process-section {
  background: var(--ref-bg-s6);
}

#faq {
  background: var(--ref-bg-s7);
}

.struggle-section::before {
  background: linear-gradient(180deg, #2b63d8 0%, var(--ref-bg-s1) 100%);
}

.solution-section::before {
  background: linear-gradient(180deg, var(--ref-bg-s1) 0%, var(--ref-bg-s2) 100%);
}

.before-after-section::before {
  background: linear-gradient(180deg, var(--ref-bg-s2) 0%, var(--ref-bg-s3) 100%);
}

.plans-section::before {
  background: linear-gradient(180deg, var(--ref-bg-s3) 0%, var(--ref-bg-s4) 100%);
}

.testimonials-section::before {
  background: linear-gradient(180deg, var(--ref-bg-s4) 0%, var(--ref-bg-s5) 100%);
}

.process-section::before {
  background: linear-gradient(180deg, var(--ref-bg-s5) 0%, var(--ref-bg-s6) 100%);
}

.faq-section::before {
  background: linear-gradient(180deg, var(--ref-bg-s6) 0%, var(--ref-bg-s7) 100%);
}

.final-cta-section::before {
  background: linear-gradient(180deg, var(--ref-bg-s7) 0%, var(--ref-bg-final-start) 100%);
}

.struggle-eyebrow {
  color: var(--ref-warn);
}

.solution-eyebrow,
.before-after-eyebrow,
.plans-eyebrow,
.process-eyebrow,
.faq-eyebrow,
.final-cta-eyebrow,
.bridge-highlight,
.before-after-highlight,
.solution-highlight,
.process-highlight {
  color: var(--ref-accent);
}

.testimonials-eyebrow {
  color: #f4b740;
}

#struggle-title,
#solution-title,
#before-after-title,
#plans-title,
#testimonials-title,
#process-title,
#faq-title,
.struggle-card-title,
.solution-item-title,
.before-after-card-title,
.plan-name,
.process-step-content h3,
.faq-summary,
.final-price-value {
  color: var(--ref-ink);
}

.struggle-subheadline,
.solution-subheadline,
.before-after-subheadline,
.plans-subheadline,
.testimonials-subheadline,
.process-subheadline,
.faq-subheadline,
.solution-item-desc,
.plan-best-for,
.plan-feature-list li,
.plan-price-original,
.plan-price-arrow,
.plan-price-note,
.process-step-content p,
.faq-answer p,
.faq-answer li,
.testimonial-card blockquote,
.testimonial-card footer p,
.solution-coupon-reminder,
.process-coupon-reminder,
.plans-footnote,
.solution-footnote,
.plan-feature-list-excluded li,
.plan-feature-icon.excluded,
.plan-muted-note {
  color: var(--ref-ink-muted);
}

.struggle-card,
.solution-item,
.before-after-card,
.plan-card,
.testimonial-card,
.faq-item {
  background: var(--ref-surface);
  border-color: var(--ref-border);
}

.struggle-card {
  border-left-color: var(--ref-danger);
}

@media (hover: hover) and (pointer: fine) {
  .struggle-card:hover {
    border-left-color: var(--ref-warn);
    background: #fff9ee;
  }
}

.solution-item {
  border-bottom-color: var(--ref-border);
}

.solution-icon-wrap {
  background: rgba(25, 185, 105, 0.1);
}

.solution-icon {
  stroke: var(--ref-accent);
}

.solution-footnote {
  border-top-color: var(--ref-border);
}

.solution-coupon-pill,
.inline-code-pill {
  background: var(--ref-surface-soft);
  color: var(--ref-link);
}

.before-card {
  border-color: var(--ref-danger);
}

.after-card {
  border-color: var(--ref-accent);
  box-shadow: 0 10px 30px rgba(25, 185, 105, 0.14);
}

.before-badge {
  background: var(--ref-danger);
}

.after-badge {
  background: var(--ref-accent);
  color: #07132b;
}

.before-after-list li {
  color: var(--ref-ink-muted);
}

.before-after-vs-circle {
  border-color: var(--ref-border-strong);
  background: #ffffff;
  color: var(--ref-ink-soft);
}

.before-after-reinforcement {
  color: var(--ref-ink);
}

.plans-coupon-block {
  border-color: rgba(25, 185, 105, 0.45);
  background: #eef8f3;
}

.plans-coupon-text {
  color: var(--ref-ink);
}

.plans-coupon-offer {
  color: var(--ref-accent);
}

.plan-card {
  border: 1px solid var(--ref-border);
}

.plan-price-discounted {
  color: var(--ref-ink);
}

.plan-card.is-highlighted {
  border-color: var(--ref-accent);
  box-shadow: 0 0 0 1px rgba(25, 185, 105, 0.15), 0 16px 36px rgba(25, 185, 105, 0.16);
}

.plan-card.is-highlighted .plan-price-discounted {
  color: var(--ref-accent);
}

.plans-dot {
  background: #ccd8ea;
}

.plans-dot.is-active {
  background: var(--ref-link);
}

.plans-footnote {
  border-top-color: var(--ref-border);
  color: var(--ref-ink-soft);
}

.plans-footnote-link,
.faq-link,
.testimonials-read-more {
  color: var(--ref-link);
}

.plans-footnote-link:hover,
.faq-link:hover,
.testimonials-read-more:hover {
  color: var(--ref-link-hover);
}

.testimonial-card {
  border-color: var(--ref-border);
}

.testimonial-card::before {
  color: rgba(45, 111, 230, 0.08);
}

.testimonial-card blockquote {
  color: #223049;
}

.testimonial-card cite {
  color: var(--ref-ink);
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover {
    border-color: var(--ref-link);
  }
}

.testimonial-dot {
  background: #ccd8ea;
}

.testimonial-dot.is-active {
  background: #f4b740;
}

.trust-badge {
  color: var(--ref-ink-soft);
}

.trust-badge span {
  color: var(--ref-accent);
}

.trust-badge:first-child span {
  color: #f4b740;
}

.process-connector {
  background: var(--ref-border-strong);
}

.process-circle {
  background: var(--ref-accent);
  color: #07132b;
  box-shadow: 0 0 20px rgba(25, 185, 105, 0.22);
}

.process-time-badge {
  border-color: #bdd4f3;
  background: #eaf4ff;
  color: var(--ref-link);
}

.js .process-step.is-visible .process-connector {
  background: var(--ref-accent);
}

.faq-item {
  border-bottom-color: var(--ref-border);
}

.faq-item:first-child {
  border-top-color: var(--ref-border);
}

.faq-icon,
.faq-item[open] .faq-summary {
  color: var(--ref-link);
}

.faq-summary:focus-visible {
  outline-color: var(--ref-link);
}

.faq-summary:active {
  background: #eef4ff;
}

@media (hover: hover) and (pointer: fine) {
  .faq-summary:hover {
    color: var(--ref-link);
    background: #f3f7ff;
  }
}

.faq-answer-inner,
.faq-answer ul li::before,
.faq-answer ol li::before {
  color: var(--ref-ink-muted);
}

.final-cta-section {
  background: linear-gradient(180deg, var(--ref-bg-final-start) 0%, var(--ref-bg-final-end) 100%);
}

.final-cta-section::after {
  background: radial-gradient(circle at 50% 60%, rgba(43, 212, 125, 0.12) 0%, transparent 55%);
}

#final-cta-title,
.final-price-value {
  color: #ffffff;
}

.final-cta-highlight,
.final-secondary-cta,
.final-trust-asterisk:hover {
  color: #2bd47d;
}

.final-cta-subheadline,
.final-coupon-instruction,
.final-coupon-note,
.final-price-anchor,
.final-trust-item,
.final-trust-asterisk {
  color: #c4d1ea;
}

.final-coupon-block {
  border-color: rgba(43, 212, 125, 0.55);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 40px rgba(43, 212, 125, 0.15);
}

.final-coupon-offer {
  color: var(--ref-gold);
}

#final-coupon-btn {
  background: #2bd47d;
  color: #07132b;
}

#final-coupon-btn:hover {
  background: #20c06f;
}

#final-coupon-btn:active {
  background: #15ab62;
}

.site-footer {
  background: var(--ref-bg-footer);
  border-top-color: #16345f;
}

.footer-brand {
  color: #ffffff;
}

.footer-tagline {
  color: #adc1e4;
}

.footer-link {
  color: #c2d0ea;
}

.footer-link:hover {
  color: #2bd47d;
}

.footer-legal-link,
.footer-copy,
.footer-canada {
  color: #9cb0d3;
}

.footer-legal-link:hover {
  color: #c2d0ea;
}

#sticky-mobile-cta {
  border-top-color: #16345f;
  background: rgba(4, 16, 39, 0.97);
  box-shadow: 0 -4px 20px rgba(3, 10, 24, 0.7);
}

@supports (backdrop-filter: blur(12px)) {
  #sticky-mobile-cta {
    background: rgba(4, 16, 39, 0.88);
  }
}

/* -------------------------------------------------------------------------- */
/* Final Navbar Priority Override                                             */
/* -------------------------------------------------------------------------- */

#main-navbar {
  padding: 12px 20px;
  background: linear-gradient(160deg, #2d6fe6 0%, #255ad3 100%) !important;
  backdrop-filter: none;
}

#main-navbar.is-sticky {
  background: linear-gradient(160deg, #2d6fe6 0%, #255ad3 100%) !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none;
}

.navbar-inner {
  max-width: 1280px;
  min-height: 76px;
  padding: 10px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(7, 26, 58, 0.44);
  box-shadow: 0 10px 30px rgba(3, 10, 24, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  gap: 18px;
}

#main-navbar.is-sticky .navbar-inner {
  background: rgba(7, 26, 58, 0.88);
  border-color: rgba(194, 208, 234, 0.22);
  box-shadow: 0 12px 28px rgba(3, 10, 24, 0.45);
}

.logo-link {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(7, 26, 58, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  display: block;
}

.logo-text-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}

.logo-text-main {
  font-size: 31px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.6px;
}

.logo-text-domain {
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  opacity: 0.92;
}

.navbar-menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.navbar-link {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.navbar-link:hover {
  color: #ffffff;
}

.navbar-link:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 3px;
  border-radius: 6px;
}

.navbar-cta {
  background: #2bd47d;
  color: #07132b;
  border-radius: 12px;
  font-size: 17px;
  padding: 14px 30px;
}

.navbar-cta:hover {
  background: #20c06f;
  box-shadow: 0 8px 24px rgba(43, 212, 125, 0.28);
}

.navbar-cta:active {
  background: #15ab62;
}

@media (max-width: 1399px) {
  .logo-text-main {
    font-size: 27px;
  }

  .navbar-menu {
    gap: 18px;
  }

  .navbar-link {
    font-size: 15px;
  }

  .navbar-cta {
    font-size: 15px;
    padding: 12px 22px;
  }
}

@media (max-width: 1100px) {
  .logo-text-main {
    font-size: 24px;
  }

  .logo-text-domain {
    font-size: 14px;
  }

  .navbar-menu {
    gap: 14px;
  }

  .navbar-link {
    font-size: 14px;
  }
}

@media (max-width: 1023px) {
  .navbar-menu {
    display: none;
  }

  .navbar-inner {
    min-height: 68px;
    padding: 10px 14px;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  #main-navbar {
    padding: 8px 14px;
  }

  .navbar-inner {
    min-height: 62px;
    border-radius: 12px;
  }

  .logo-mark-wrap {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .logo-mark {
    width: 24px;
    height: 24px;
  }

  .logo-text-main {
    font-size: 20px;
  }

  .logo-text-domain {
    font-size: 12px;
  }

  .navbar-cta {
    font-size: 13px;
    padding: 10px 14px;
    border-radius: 10px;
  }
}

/* -------------------------------------------------------------------------- */
/* Solution Section Premium Redesign                                          */
/* -------------------------------------------------------------------------- */

#solution-section {
  background:
    radial-gradient(circle at 20% 12%, rgba(45, 111, 230, 0.08) 0%, transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(25, 185, 105, 0.08) 0%, transparent 30%),
    #f5eddc;
}

.solution-section::before {
  background: linear-gradient(180deg, #f5eddc 0%, #f5eddc 100%);
}

.solution-inner {
  max-width: 1240px;
}

.solution-kicker {
  margin: 0 auto 12px;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #bfd0eb;
  background: rgba(255, 255, 255, 0.7);
  color: #2d6fe6;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.solution-kicker span {
  color: #f4b740;
}

.solution-eyebrow {
  color: #18a963;
}

#solution-title {
  color: #081a36;
  font-size: 56px;
  font-weight: 800;
  max-width: 980px;
  letter-spacing: -0.8px;
  margin-bottom: 14px;
}

.solution-highlight {
  color: #18b365;
}

.solution-subheadline {
  max-width: 760px;
  color: #445066;
  font-size: 22px;
  line-height: 1.55;
  margin-bottom: 46px;
}

.solution-list {
  counter-reset: solution-card;
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.solution-item {
  counter-increment: solution-card;
  position: relative;
  border: 1px solid #c7d7ee;
  border-bottom: 1px solid #c7d7ee;
  border-radius: 20px;
  padding: 24px 22px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(243, 248, 255, 0.92) 100%);
  box-shadow: 0 8px 24px rgba(11, 18, 32, 0.09);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.solution-item::after {
  content: "0" counter(solution-card);
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #8ea8cf;
}

.solution-item:last-child {
  border-bottom: 1px solid #c7d7ee;
}

.solution-icon-wrap {
  width: 52px;
  min-width: 52px;
  height: 52px;
  margin-right: 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, #4c86ee 0%, #2d6fe6 100%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 20px rgba(45, 111, 230, 0.24);
}

.solution-item:nth-child(even) .solution-icon-wrap {
  background: linear-gradient(145deg, #21bf74 0%, #17a860 100%);
  box-shadow: 0 10px 20px rgba(25, 185, 105, 0.24);
}

.solution-icon {
  width: 26px;
  height: 26px;
  stroke: #ffffff;
  stroke-width: 2;
}

.solution-item-title {
  color: #091a36;
  font-size: 21px;
  margin-bottom: 6px;
}

.solution-item-desc {
  color: #4c5870;
  font-size: 14px;
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  .solution-item:hover {
    transform: translateY(-6px);
    border-color: #9fb9e5;
    box-shadow: 0 16px 32px rgba(11, 18, 32, 0.15);
    background: linear-gradient(165deg, #ffffff 0%, #ecf4ff 100%);
  }
}

.solution-footnote {
  margin: 30px auto 0;
  max-width: 920px;
  border-top: 0;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #c7d7ee;
  background: rgba(255, 255, 255, 0.75);
  color: #445066;
  text-align: center;
  font-size: 13px;
}

.solution-cta-block {
  margin-top: 26px;
}

.solution-cta-btn {
  max-width: 430px;
  border-radius: 16px;
  font-size: 19px;
  font-weight: 800;
  padding: 18px 34px;
  box-shadow: 0 12px 28px rgba(25, 185, 105, 0.24);
}

.solution-coupon-reminder {
  margin-top: 13px;
  font-size: 14px;
  color: #2f3f58;
}

.solution-coupon-pill {
  background: #ecf4ff;
  color: #2d6fe6;
  border: 1px solid #bfd0eb;
  border-radius: 999px;
  padding: 2px 10px;
}

@media (min-width: 860px) {
  .solution-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1400px) {
  .solution-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1199px) {
  #solution-title {
    font-size: 44px;
  }

  .solution-subheadline {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  #solution-title {
    font-size: 31px;
    letter-spacing: -0.3px;
  }

  .solution-subheadline {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .solution-kicker {
    font-size: 12px;
    padding: 8px 14px;
  }

  .solution-item {
    border-radius: 16px;
    padding: 20px 16px;
  }

  .solution-item::after {
    top: 12px;
    right: 12px;
    font-size: 11px;
  }

  .solution-icon-wrap {
    width: 46px;
    min-width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-right: 12px;
  }

  .solution-icon {
    width: 22px;
    height: 22px;
  }

  .solution-item-title {
    font-size: 18px;
  }

  .solution-item-desc {
    font-size: 13px;
  }

  .solution-cta-btn {
    max-width: 100%;
    font-size: 17px;
    padding: 16px 22px;
    border-radius: 13px;
  }

  .solution-coupon-reminder {
    font-size: 13px;
  }
}

/* Final polish: center + premium style for "What You'll Get" pill */
.solution-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  margin: 0 auto 16px !important;
  padding: 11px 22px;
  border-radius: 999px;
  border: 1px solid #a9c2ea;
  background: linear-gradient(140deg, #ffffff 0%, #eef4ff 100%);
  color: #1e5fd8;
  box-shadow: 0 8px 20px rgba(45, 111, 230, 0.16);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.solution-kicker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(244, 183, 64, 0.2);
  color: #d4901d;
}

@media (max-width: 767px) {
  .solution-kicker {
    padding: 9px 16px;
    font-size: 12px;
    margin-bottom: 12px !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Struggle Cards Refresh (section 4)                                         */
/* -------------------------------------------------------------------------- */

#student-struggles {
  background: #f5eddc;
}

.struggle-inner {
  max-width: 1180px;
}

.struggle-eyebrow {
  color: #e05a2d;
}

#struggle-title {
  color: #091a36;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 12px;
}

.struggle-subheadline {
  max-width: 680px;
  color: #445066;
  font-size: 21px;
  line-height: 1.55;
  margin-bottom: 42px;
}

.struggle-grid {
  grid-template-columns: 1fr;
  gap: 20px;
}

.struggle-card {
  background: #ffffff;
  border: 1px solid #c8d8ee;
  border-left: 1px solid #c8d8ee;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 8px 22px rgba(11, 18, 32, 0.08);
}

.struggle-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  background: linear-gradient(145deg, #4f88ef 0%, #2d6fe6 100%);
  box-shadow: 0 8px 18px rgba(45, 111, 230, 0.25);
}

.struggle-card:nth-child(2) .struggle-icon,
.struggle-card:nth-child(5) .struggle-icon {
  background: linear-gradient(145deg, #19b969 0%, #12b76a 100%);
  box-shadow: 0 8px 18px rgba(25, 185, 105, 0.24);
}

.struggle-card:nth-child(3) .struggle-icon,
.struggle-card:nth-child(6) .struggle-icon {
  background: linear-gradient(145deg, #3f7de8 0%, #2d58d6 100%);
  box-shadow: 0 8px 18px rgba(45, 88, 214, 0.24);
}

.struggle-card-title {
  color: #091a36;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 10px;
}

.struggle-card-text {
  color: #4d5a70;
  font-size: 14px;
  line-height: 1.65;
}

@media (hover: hover) and (pointer: fine) {
  .struggle-card:hover {
    background: #ffffff;
    border-color: #9eb9e7;
    transform: translateY(-6px);
    box-shadow: 0 16px 30px rgba(11, 18, 32, 0.12);
  }
}

.struggle-note {
  max-width: 860px;
  margin: 30px auto 0;
  border: 1px solid #cad7eb;
  border-radius: 16px;
  background: #f9f7ef;
  padding: 16px 20px;
}

.struggle-note p {
  margin: 0;
  text-align: center;
  color: #2f3d56;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.45;
}

.struggle-note-icon {
  color: #f4b740;
  margin-right: 8px;
}

.struggle-cta-wrap {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.struggle-cta-btn {
  max-width: 360px;
  width: 100%;
  border-radius: 16px;
  font-size: 18px;
  font-weight: 800;
  padding: 18px 30px;
  box-shadow: 0 12px 26px rgba(25, 185, 105, 0.22);
}

.struggle-bridge {
  margin-top: 32px;
}

.struggle-bridge p {
  color: #17263f;
}

.bridge-highlight {
  color: #19b969;
}

@media (min-width: 768px) {
  .struggle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .struggle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  #struggle-title {
    font-size: 38px;
  }

  .struggle-subheadline {
    font-size: 18px;
  }

  .struggle-note p {
    font-size: 15px;
  }

  .struggle-cta-btn {
    font-size: 18px;
    padding: 16px 24px;
  }
}

@media (max-width: 767px) {
  #struggle-title {
    font-size: 30px;
  }

  .struggle-subheadline {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .struggle-card {
    padding: 20px;
    border-radius: 16px;
  }

  .struggle-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    font-size: 21px;
    margin-bottom: 12px;
  }

  .struggle-card-title {
    font-size: 16px;
  }

  .struggle-card-text {
    font-size: 13px;
  }

  .struggle-note {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .struggle-note p {
    font-size: 14px;
  }

  .struggle-cta-btn {
    max-width: 100%;
    font-size: 17px;
    padding: 15px 20px;
    border-radius: 13px;
  }
}

/* -------------------------------------------------------------------------- */
/* Hero Motion: right image + coupon card                                     */
/* -------------------------------------------------------------------------- */

.hero-side-image {
  will-change: transform, box-shadow, opacity;
  animation:
    hero-image-reveal 700ms ease-out both,
    hero-image-float 6s ease-in-out 800ms infinite;
}

.hero-coupon-card {
  will-change: transform, box-shadow, opacity;
  animation:
    hero-coupon-reveal 650ms ease-out both,
    hero-coupon-float 4.8s ease-in-out 700ms infinite;
}

@keyframes hero-image-reveal {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-image-float {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 18px 46px rgba(5, 14, 34, 0.45);
  }

  50% {
    transform: translateY(-8px);
    box-shadow: 0 26px 56px rgba(5, 14, 34, 0.52);
  }
}

@keyframes hero-coupon-reveal {
  0% {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-coupon-float {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.12);
  }

  50% {
    transform: translateY(-5px);
    box-shadow: 0 0 56px rgba(255, 255, 255, 0.2);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-side-image,
  .hero-coupon-card {
    animation: none !important;
    transform: none !important;
  }
}

/* -------------------------------------------------------------------------- */
/* Hero Two-Column Layout (left content + right image)                        */
/* -------------------------------------------------------------------------- */

.hero-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 84px;
}

.hero-layout {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 36px;
}

.hero-content {
  width: 100%;
  max-width: 700px;
}

.hero-media {
  width: 100%;
  max-width: 560px;
  justify-self: center;
}

.hero-side-picture {
  display: block;
  width: 100%;
}

.hero-side-image {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  box-shadow: 0 18px 46px rgba(5, 14, 34, 0.45);
}

@media (min-width: 1100px) {
  .hero-content {
    text-align: left;
  }

  .hero-content .hero-eyebrow {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-content #hero-title {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-content .hero-subheadline {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-content .hero-coupon-card {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-content .hero-primary-cta {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-content .hero-secondary-cta {
    text-align: left;
  }

  .hero-content .hero-trust-strip {
    justify-content: flex-start;
  }
}

@media (max-width: 1099px) {
  .hero-inner {
    max-width: 860px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-media {
    max-width: 460px;
  }
}

@media (max-width: 767px) {
  .hero-media {
    display: none;
  }

  .hero-inner {
    padding-bottom: 72px;
  }
}

/* -------------------------------------------------------------------------- */
/* Before/After Section Premium Redesign                                      */
/* -------------------------------------------------------------------------- */

#before-after-section {
  background:
    radial-gradient(circle at 18% 16%, rgba(45, 111, 230, 0.08) 0%, transparent 34%),
    radial-gradient(circle at 84% 12%, rgba(25, 185, 105, 0.08) 0%, transparent 32%),
    #eaf0fa;
}

.before-after-section::before {
  background: linear-gradient(180deg, #f5eddc 0%, #eaf0fa 100%);
}

.before-after-inner {
  max-width: 1180px;
}

.before-after-eyebrow {
  color: #17a860;
}

#before-after-title {
  color: #071a36;
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -0.7px;
  margin-bottom: 14px;
  max-width: 900px;
}

.before-after-subheadline {
  color: #445066;
  font-size: 20px;
  line-height: 1.55;
  max-width: 760px;
  margin-bottom: 42px;
}

.before-after-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.before-after-card {
  border-radius: 22px;
  padding: 28px 24px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 255, 0.92) 100%);
  border: 1px solid #c6d6ed;
  box-shadow: 0 10px 28px rgba(11, 18, 32, 0.1);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.before-card {
  border-color: rgba(217, 54, 54, 0.5);
  box-shadow: 0 10px 28px rgba(217, 54, 54, 0.12);
}

.after-card {
  border-color: rgba(25, 185, 105, 0.54);
  box-shadow: 0 12px 34px rgba(25, 185, 105, 0.16);
}

.before-after-badge {
  margin-bottom: 14px;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 10px;
  letter-spacing: 1.2px;
}

.before-badge {
  background: linear-gradient(145deg, #f46d6d 0%, #d93636 100%);
}

.after-badge {
  background: linear-gradient(145deg, #21bf74 0%, #17a860 100%);
  color: #ffffff;
}

.before-after-card-title {
  color: #081a36;
  font-size: 22px;
  margin-bottom: 16px;
}

.before-after-list li {
  position: relative;
  margin-bottom: 10px;
  padding: 8px 10px 8px 0;
  color: #42516a;
  font-size: 14px;
  line-height: 1.6;
  border-bottom: 1px dashed rgba(150, 170, 198, 0.35);
}

.before-after-list li:last-child {
  border-bottom: 0;
}

.before-after-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  margin-top: 0;
}

.before-card .before-after-icon {
  background: rgba(217, 54, 54, 0.14);
  color: #c92c2c;
}

.after-card .before-after-icon {
  background: rgba(25, 185, 105, 0.14);
  color: #129757;
}

.before-after-mobile-connector {
  height: 48px;
}

.before-after-vs-circle {
  width: 48px;
  height: 48px;
  border: 1px solid #b7c8e3;
  background: linear-gradient(160deg, #ffffff 0%, #eef4ff 100%);
  color: #4f668f;
  font-size: 12px;
  letter-spacing: 1.3px;
  box-shadow: 0 8px 18px rgba(11, 18, 32, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .before-after-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 34px rgba(11, 18, 32, 0.16);
    border-color: #9eb9e7;
  }

  .after-card:hover {
    border-color: rgba(25, 185, 105, 0.65);
    box-shadow: 0 18px 38px rgba(25, 185, 105, 0.2);
  }
}

.before-after-reinforcement {
  margin-top: 44px;
  max-width: 760px;
  color: #182a45;
  font-size: 24px;
  line-height: 1.45;
}

.before-after-highlight {
  color: #18b365;
}

@media (min-width: 900px) {
  .before-after-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .before-after-mobile-connector {
    display: none;
  }
}

@media (max-width: 1199px) {
  #before-after-title {
    font-size: 42px;
  }

  .before-after-subheadline {
    font-size: 18px;
  }

  .before-after-reinforcement {
    font-size: 21px;
  }
}

@media (max-width: 767px) {
  #before-after-title {
    font-size: 31px;
    letter-spacing: -0.3px;
  }

  .before-after-subheadline {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .before-after-card {
    border-radius: 16px;
    padding: 20px 16px;
  }

  .before-after-badge {
    padding: 5px 12px;
    font-size: 9px;
  }

  .before-after-card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .before-after-list li {
    font-size: 13px;
    margin-bottom: 8px;
    padding: 7px 4px 7px 0;
  }

  .before-after-icon {
    width: 22px;
    height: 22px;
    font-size: 13px;
  }

  .before-after-reinforcement {
    font-size: 17px;
    margin-top: 30px;
  }
}

/* -------------------------------------------------------------------------- */
/* Plans Section Premium Redesign                                             */
/* -------------------------------------------------------------------------- */

#plans-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(45, 111, 230, 0.08) 0%, transparent 34%),
    radial-gradient(circle at 86% 10%, rgba(25, 185, 105, 0.08) 0%, transparent 30%),
    #e6efec;
}

.plans-section::before {
  background: linear-gradient(180deg, #eaf0fa 0%, #e6efec 100%);
}

.plans-inner {
  max-width: 1280px;
}

.plans-kicker {
  margin: 0 auto 12px;
  width: fit-content;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #b8d6cc;
  background: rgba(255, 255, 255, 0.75);
  color: #2d5f55;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1px;
}

.plans-eyebrow {
  color: #16a45c;
}

#plans-title {
  color: #071a36;
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -0.7px;
  line-height: 1.15;
  max-width: 860px;
  margin-bottom: 14px;
}

.plans-subheadline {
  color: #445066;
  font-size: 20px;
  line-height: 1.55;
  max-width: 780px;
  margin-bottom: 26px;
}

.plans-coupon-block {
  max-width: 520px;
  margin-bottom: 34px;
  padding: 14px 22px;
  border: 1px solid #8ad5b0;
  border-radius: 14px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.94) 0%, rgba(229, 249, 239, 0.9) 100%);
  box-shadow: 0 8px 20px rgba(11, 18, 32, 0.08);
}

.plans-coupon-text {
  color: #22334f;
}

#plans-coupon-btn {
  background: #19b969;
  color: #071a36;
  border-radius: 8px;
  font-weight: 800;
}

#plans-coupon-btn:hover {
  background: #12b76a;
}

.plans-coupon-offer {
  color: #138e51;
}

.plans-carousel-region {
  overflow: visible;
}

.plans-carousel {
  gap: 16px;
}

.plan-card {
  position: relative;
  border-radius: 18px;
  border: 1px solid #c6d6ed;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 255, 0.92) 100%);
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.09);
  padding: 20px 18px 16px;
}

.plan-badge {
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 9px;
  letter-spacing: 1px;
  width: fit-content;
}

.plan-name {
  color: #081a36;
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 8px;
}

.plan-pricing {
  margin: 0 -18px 14px;
  padding: 12px 18px 10px;
  background: #0b2450;
}

.plan-pricing-line {
  justify-content: center;
  gap: 8px;
}

.plan-price-original,
.plan-price-arrow,
.plan-price-note {
  color: #c5d2e8;
}

.plan-price-discounted {
  color: #ffffff;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.6px;
}

.plan-price-note {
  display: block;
  text-align: center;
}

.plan-best-for {
  border-bottom-color: #cfddef;
  color: #4b5971;
  font-size: 12px;
  margin-bottom: 14px;
  padding-bottom: 12px;
}

.plan-feature-list li {
  color: #243552;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 7px;
}

.plan-feature-icon.included {
  color: #15aa61;
}

.plan-feature-list-excluded li,
.plan-feature-icon.excluded {
  color: #7e8aa0;
}

.plan-cta {
  margin-top: auto;
  border: 0 !important;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 800;
  padding: 13px 16px;
  color: #ffffff !important;
  background: #0b2450 !important;
  box-shadow: none;
}

.plan-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(11, 36, 80, 0.22);
}

.plan-cta-advanced {
  background: #19b969 !important;
  color: #071a36 !important;
}

.plan-cta-advanced:hover {
  background: #12b76a !important;
}

.plan-cta-presence,
.plan-cta-executive {
  background: #f3cb24 !important;
  color: #071a36 !important;
}

.plan-cta-presence:hover,
.plan-cta-executive:hover {
  background: #e6bf16 !important;
  box-shadow: 0 10px 20px rgba(230, 191, 22, 0.26);
}

.plan-card.is-highlighted {
  border-color: #76d4a6;
  box-shadow: 0 14px 30px rgba(25, 185, 105, 0.2);
}

.plan-card.is-highlighted .plan-price-discounted {
  color: #ffffff;
}

.plan-presence .plan-pricing,
.plan-executive .plan-pricing {
  background: #f3cb24;
}

.plan-presence .plan-price-original,
.plan-presence .plan-price-arrow,
.plan-presence .plan-price-note,
.plan-executive .plan-price-original,
.plan-executive .plan-price-arrow,
.plan-executive .plan-price-note {
  color: #665315;
}

.plan-presence .plan-price-discounted,
.plan-executive .plan-price-discounted {
  color: #111f35;
}

.plan-everything-note {
  color: #a97600;
}

.plans-dot {
  background: #b8c8df;
}

.plans-dot.is-active {
  background: #2d6fe6;
}

.plans-footnote {
  margin-top: 24px;
  border-top: 0;
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid #c6d6ed;
  background: rgba(255, 255, 255, 0.78);
  color: #45556f;
  font-size: 12px;
}

.plans-footnote-link {
  color: #2d6fe6;
}

.plans-trust-strip {
  margin: 18px auto 0;
  max-width: 900px;
  padding: 12px 16px;
  border: 1px solid #c8d8ee;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.plans-trust-strip span {
  color: #2f425f;
  font-size: 13px;
  font-weight: 600;
}

@media (min-width: 1024px) {
  .plans-carousel {
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
  }

  .plan-card {
    max-width: none;
    flex: initial;
    scroll-snap-align: none;
    grid-column: span 2;
    min-height: 735px;
  }

  .plan-card:last-child {
    margin-right: 0;
  }

  .plan-card:nth-child(4) {
    grid-column: 2 / span 2;
  }

  .plan-card:nth-child(5) {
    grid-column: 4 / span 2;
  }

  .plans-dots {
    display: none;
  }
}

@media (max-width: 1199px) {
  #plans-title {
    font-size: 43px;
  }

  .plans-subheadline {
    font-size: 18px;
  }

  .plan-name {
    font-size: 28px;
  }

  .plan-price-discounted {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .plans-kicker {
    font-size: 12px;
    padding: 8px 14px;
  }

  #plans-title {
    font-size: 31px;
    letter-spacing: -0.3px;
  }

  .plans-subheadline {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .plans-coupon-block {
    padding: 12px 14px;
    border-radius: 12px;
  }

  .plan-card {
    max-width: 350px;
    border-radius: 16px;
    padding: 18px 14px 14px;
  }

  .plan-name {
    font-size: 24px;
  }

  .plan-pricing {
    margin-left: -14px;
    margin-right: -14px;
    padding: 10px 14px;
  }

  .plan-price-discounted {
    font-size: 32px;
  }

  .plan-best-for {
    font-size: 11px;
  }

  .plan-feature-list li {
    font-size: 12px;
  }

  .plan-cta {
    font-size: 13px;
    padding: 12px 14px;
  }

  .plans-trust-strip {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .plans-trust-strip span {
    font-size: 12px;
  }
}

/* -------------------------------------------------------------------------- */
/* Testimonials Section Premium Redesign                                      */
/* -------------------------------------------------------------------------- */

#testimonials-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(45, 111, 230, 0.08) 0%, transparent 30%),
    radial-gradient(circle at 85% 12%, rgba(244, 183, 64, 0.08) 0%, transparent 28%),
    #e7efef;
}

.testimonials-section::before {
  background: linear-gradient(180deg, #e6efec 0%, #e7efef 100%);
}

.testimonials-inner {
  max-width: 1280px;
}

.testimonials-head {
  max-width: 860px;
  margin: 0 auto;
}

.testimonials-eyebrow {
  color: #d39018;
  font-size: 12px;
  letter-spacing: 2.6px;
  margin-bottom: 10px;
}

#testimonials-title {
  color: #071a36;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.7px;
  line-height: 1.15;
  max-width: 840px;
  margin-bottom: 14px;
}

.testimonials-subheadline {
  color: #435066;
  font-size: 20px;
  line-height: 1.55;
  max-width: 820px;
  margin-bottom: 34px;
}

.testimonials-carousel-region {
  overflow: visible;
}

.testimonials-carousel {
  gap: 18px;
}

.testimonial-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid #c8d8ee;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 255, 0.92) 100%);
  box-shadow: 0 10px 26px rgba(11, 18, 32, 0.09);
  padding: 24px 20px 18px;
  transition:
    transform 230ms ease,
    box-shadow 230ms ease,
    border-color 230ms ease,
    opacity 400ms ease;
}

.testimonial-card::before {
  content: "\201C";
  top: 12px;
  left: 14px;
  font-size: 110px;
  color: rgba(45, 111, 230, 0.08);
}

.testimonial-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(90deg, #2d6fe6 0%, #19b969 55%, #f4b740 100%);
  opacity: 0.95;
}

.testimonial-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  margin-bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(45, 111, 230, 0.08);
  color: #d39018;
  font-size: 15px;
  line-height: 1;
}

.testimonial-card blockquote {
  color: #32425d;
  font-size: 14px;
  line-height: 1.72;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-card footer {
  margin-top: auto;
  border-top: 1px solid rgba(162, 182, 209, 0.45);
  padding-top: 12px;
}

.testimonial-card cite {
  color: #081a36;
  font-size: 15px;
  font-weight: 800;
}

.testimonial-card footer p {
  color: #667692;
  font-size: 12px;
}

@media (hover: hover) and (pointer: fine) {
  .testimonial-card:hover {
    transform: translateY(-7px);
    border-color: #9db9e6;
    box-shadow: 0 18px 34px rgba(11, 18, 32, 0.14);
  }
}

.js .testimonial-card {
  transform: translateY(14px);
}

.js .testimonial-card.is-visible {
  transform: translateY(0);
}

.testimonial-dots {
  margin-top: 18px;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  background: #b9c9df;
}

.testimonial-dot.is-active {
  background: #2d6fe6;
}

.trust-badges {
  margin-top: 30px;
  gap: 12px;
}

.trust-badge {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid #c8d8ee;
  background: rgba(255, 255, 255, 0.72);
  color: #2f425e;
  font-size: 12px;
  font-weight: 700;
}

.trust-badge span {
  color: #16a45c;
}

.trust-badge:first-child span {
  color: #d39018;
}

.testimonials-read-more {
  margin-top: 16px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #b4c7e5;
  background: rgba(255, 255, 255, 0.78);
  color: #2d6fe6;
  font-weight: 700;
}

.testimonials-read-more:hover {
  color: #2255c6;
  border-color: #9eb8e2;
}

@media (min-width: 768px) {
  .testimonials-carousel {
    overflow: visible;
    scroll-snap-type: none;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    padding: 0 24px;
  }

  .testimonial-card {
    max-width: none;
    flex: initial;
    scroll-snap-align: none;
    min-height: 318px;
  }

  .testimonial-card:last-child {
    margin-right: 0;
  }

  .testimonial-dots {
    display: none;
  }
}

@media (min-width: 1120px) {
  .testimonials-carousel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    padding: 0;
  }

  .testimonial-card {
    min-height: 330px;
  }
}

@media (max-width: 1199px) {
  #testimonials-title {
    font-size: 42px;
  }

  .testimonials-subheadline {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  #testimonials-title {
    font-size: 31px;
    letter-spacing: -0.3px;
  }

  .testimonials-subheadline {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .testimonials-carousel {
    padding: 0 16px;
    gap: 12px;
  }

  .testimonial-card {
    max-width: 345px;
    border-radius: 16px;
    padding: 20px 16px 15px;
  }

  .testimonial-card::before {
    font-size: 88px;
    left: 10px;
  }

  .testimonial-card::after {
    border-radius: 16px 16px 0 0;
  }

  .testimonial-stars {
    font-size: 14px;
    padding: 5px 9px;
    margin-bottom: 12px;
  }

  .testimonial-card blockquote {
    font-size: 13px;
    line-height: 1.65;
  }

  .trust-badge {
    font-size: 11px;
    padding: 8px 10px;
  }
}

/* -------------------------------------------------------------------------- */
/* Process Section Premium Redesign                                           */
/* -------------------------------------------------------------------------- */

#process-section {
  background:
    radial-gradient(circle at 14% 10%, rgba(45, 111, 230, 0.08) 0%, transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(25, 185, 105, 0.08) 0%, transparent 28%),
    #e8f1ef;
}

.process-section::before {
  background: linear-gradient(180deg, #e7efef 0%, #e8f1ef 100%);
}

.process-inner {
  max-width: 1260px;
}

.process-eyebrow {
  color: #16a45c;
  letter-spacing: 2.8px;
}

#process-title {
  color: #071a36;
  font-size: 52px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.7px;
  max-width: 900px;
  margin-bottom: 14px;
}

.process-highlight {
  color: #18b365;
}

.process-subheadline {
  color: #425066;
  font-size: 20px;
  line-height: 1.55;
  max-width: 820px;
  margin-bottom: 40px;
}

.process-timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.process-step {
  padding: 22px 18px 18px 90px;
  border-radius: 20px;
  border: 1px solid #c6d6ed;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(243, 248, 255, 0.92) 100%);
  box-shadow: 0 10px 24px rgba(11, 18, 32, 0.09);
}

.process-step:last-child {
  padding-bottom: 18px;
}

.process-circle {
  left: 20px;
  top: 20px;
  width: 52px;
  height: 52px;
  font-size: 22px;
  background: linear-gradient(145deg, #23bf74 0%, #17a860 100%);
  color: #071a36;
  box-shadow: 0 10px 22px rgba(25, 185, 105, 0.24);
}

.process-connector {
  left: 45px;
  top: 72px;
  bottom: -18px;
  width: 2px;
  background: linear-gradient(180deg, #23bf74 0%, #7bd9ab 100%);
}

.process-step-content h3 {
  color: #071a36;
  font-size: 22px;
  margin-bottom: 10px;
}

.process-step-content p {
  color: #4a5870;
  font-size: 14px;
  line-height: 1.68;
}

.inline-code-pill {
  border-radius: 999px;
  border: 1px solid #bfd0eb;
  background: #edf4ff;
  color: #2d6fe6;
  padding: 2px 9px;
}

.process-time-badge {
  border: 1px solid #bfd0eb;
  background: #edf4ff;
  color: #2d6fe6;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.process-time-badge span {
  color: #2d6fe6;
}

@media (hover: hover) and (pointer: fine) {
  .process-step:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(11, 18, 32, 0.14);
    border-color: #9eb9e7;
  }
}

.process-cta-block {
  margin-top: 34px;
  text-align: center;
}

.process-cta-btn {
  max-width: 470px;
  border-radius: 16px;
  font-size: 19px;
  font-weight: 800;
  padding: 18px 30px;
  box-shadow: 0 12px 28px rgba(25, 185, 105, 0.24);
}

.process-coupon-reminder {
  margin-top: 12px;
  color: #2f425e;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
  }

  .process-step {
    min-height: 355px;
    padding: 78px 16px 18px;
    text-align: center;
  }

  .process-circle {
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
  }

  .process-connector {
    left: calc(50% + 26px);
    top: 35px;
    bottom: auto;
    width: calc(100% - 52px);
    height: 2px;
    background: linear-gradient(90deg, #23bf74 0%, #7bd9ab 100%);
  }

  .process-step:last-child .process-connector {
    display: none;
  }

  .process-step-content h3 {
    font-size: 20px;
  }

  .process-step-content p {
    font-size: 13px;
    line-height: 1.6;
  }
}

@media (max-width: 1199px) {
  #process-title {
    font-size: 42px;
  }

  .process-subheadline {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  #process-title {
    font-size: 31px;
    letter-spacing: -0.3px;
  }

  .process-subheadline {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .process-step {
    border-radius: 16px;
    padding: 18px 14px 16px 80px;
  }

  .process-circle {
    left: 16px;
    top: 16px;
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .process-connector {
    left: 38px;
    top: 62px;
    bottom: -16px;
  }

  .process-step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .process-step-content p {
    font-size: 13px;
  }

  .process-time-badge {
    font-size: 11px;
    padding: 4px 11px;
  }

  .process-cta-btn {
    max-width: 100%;
    font-size: 17px;
    padding: 16px 22px;
    border-radius: 13px;
  }

  .process-coupon-reminder {
    font-size: 13px;
  }
}

/* -------------------------------------------------------------------------- */
/* Process Section Cinematic Refresh (Final Override)                         */
/* -------------------------------------------------------------------------- */

#process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 8%, rgba(41, 111, 235, 0.13) 0%, transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(26, 195, 118, 0.14) 0%, transparent 34%),
    linear-gradient(180deg, #e7f0ef 0%, #e2eeec 56%, #dfebe8 100%);
}

#process-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -150px;
  bottom: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 191, 116, 0.14) 0%, rgba(35, 191, 116, 0) 68%);
  pointer-events: none;
}

.process-inner {
  max-width: 1280px;
  position: relative;
  z-index: 1;
}

.process-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #b9d3ee;
  background: rgba(255, 255, 255, 0.65);
  color: #178f53;
  letter-spacing: 2.4px;
  font-weight: 800;
}

#process-title {
  max-width: 920px;
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: #061834;
  margin-top: 12px;
}

.process-highlight {
  color: #16b86a;
  text-shadow: 0 6px 18px rgba(22, 184, 106, 0.14);
}

.process-subheadline {
  max-width: 760px;
  margin-bottom: 46px;
  color: #3f5168;
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.58;
}

.process-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}

.process-step {
  position: relative;
  isolation: isolate;
  border-radius: 24px;
  border: 1px solid #b8cdec;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 247, 255, 0.9) 100%);
  box-shadow: 0 14px 30px rgba(12, 23, 42, 0.1);
  padding: 24px 20px 20px 94px;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.process-step::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  border-radius: 24px 24px 0 0;
  background: linear-gradient(90deg, #2d70e8 0%, #1ec778 100%);
  opacity: 0.95;
}

.process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 36%);
  pointer-events: none;
  z-index: -1;
}

.process-step:last-child {
  padding-bottom: 20px;
}

.process-circle {
  left: 24px;
  top: 22px;
  width: 54px;
  height: 54px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  background: linear-gradient(145deg, #1fcf7a 0%, #16a35d 100%);
  color: #071a35;
  font-size: 23px;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(31, 207, 122, 0.3);
}

.process-connector {
  left: 50px;
  top: 78px;
  bottom: -20px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(180deg, #22c175 0%, #7adcae 100%);
}

.process-step-content h3 {
  color: #061834;
  font-size: 23px;
  line-height: 1.24;
  margin-bottom: 9px;
}

.process-step-content p {
  color: #42556f;
  font-size: 14px;
  line-height: 1.7;
}

#process-section .inline-code-pill {
  border-radius: 999px;
  border: 1px solid #afcbee;
  background: linear-gradient(180deg, #f2f7ff 0%, #e9f2ff 100%);
  color: #2564d4;
  padding: 2px 10px;
  font-weight: 800;
}

.process-time-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #b7ccef;
  background: linear-gradient(180deg, #f2f7ff 0%, #e9f2ff 100%);
  color: #295dca;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 12px;
  box-shadow: 0 8px 16px rgba(45, 111, 230, 0.14);
}

.process-time-badge span {
  color: #295dca;
}

@media (hover: hover) and (pointer: fine) {
  .process-step:hover {
    transform: translateY(-8px);
    border-color: #92b3e5;
    box-shadow: 0 20px 36px rgba(11, 24, 45, 0.16);
  }
}

.process-cta-block {
  margin-top: 44px;
  text-align: center;
}

.process-cta-btn {
  max-width: 520px;
  border-radius: 16px;
  font-size: 19px;
  font-weight: 800;
  padding: 18px 34px;
  background: linear-gradient(135deg, #22c172 0%, #1aaf64 100%);
  box-shadow: 0 16px 34px rgba(22, 175, 100, 0.34);
}

.process-coupon-reminder {
  margin-top: 14px;
  color: #304861;
  font-size: 14px;
}

@media (min-width: 1024px) {
  .process-timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
  }

  .process-timeline::before {
    content: "";
    position: absolute;
    top: 37px;
    left: calc(12.5% + 27px);
    right: calc(12.5% + 27px);
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, #2d70e8 0%, #20c577 100%);
    opacity: 0.5;
  }

  .process-step {
    min-height: 374px;
    text-align: center;
    padding: 88px 18px 20px;
  }

  .process-circle {
    left: 50%;
    top: 11px;
    transform: translateX(-50%);
  }

  .process-connector {
    left: calc(50% + 27px);
    top: 36px;
    bottom: auto;
    width: calc(100% - 54px);
    height: 3px;
    background: linear-gradient(90deg, #2d70e8 0%, #22c275 100%);
    opacity: 0.86;
  }

  .process-step:last-child .process-connector {
    display: none;
  }

  .process-step-content h3 {
    font-size: 21px;
  }

  .process-step-content p {
    font-size: 13px;
    line-height: 1.63;
  }
}

@media (max-width: 767px) {
  #process-title {
    font-size: 32px;
    letter-spacing: -0.35px;
  }

  .process-subheadline {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .process-step {
    border-radius: 18px;
    padding: 20px 14px 16px 82px;
  }

  .process-circle {
    left: 16px;
    top: 16px;
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .process-connector {
    left: 39px;
    top: 64px;
    bottom: -17px;
    width: 3px;
  }

  .process-step-content h3 {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .process-step-content p {
    font-size: 13px;
    line-height: 1.66;
  }

  .process-time-badge {
    font-size: 11px;
    padding: 4px 11px;
  }

  .process-cta-btn {
    max-width: 100%;
    font-size: 17px;
    padding: 16px 22px;
  }

  .process-coupon-reminder {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .process-step,
  .process-cta-btn {
    transition: none;
  }
}

/* -------------------------------------------------------------------------- */
/* FAQ Section Luxe Refresh (Final Override)                                  */
/* -------------------------------------------------------------------------- */

#faq.faq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(45, 111, 230, 0.11) 0%, transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(26, 195, 118, 0.1) 0%, transparent 30%),
    linear-gradient(180deg, #f3f8ff 0%, #edf5ff 44%, #e9f3ff 100%);
}

#faq.faq-section::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -130px;
  bottom: -170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 111, 230, 0.12) 0%, rgba(45, 111, 230, 0) 70%);
  pointer-events: none;
}

#faq .faq-inner {
  position: relative;
  z-index: 1;
  max-width: 980px;
}

#faq .faq-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #bfd3ef;
  background: rgba(255, 255, 255, 0.7);
  color: #168f52;
  font-weight: 800;
  letter-spacing: 2.6px;
}

#faq #faq-title {
  max-width: 760px;
  margin: 0 auto 12px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.7px;
  color: #071b38;
}

#faq .faq-subheadline {
  max-width: 760px;
  margin: 0 auto 36px;
  color: #3f536e;
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.62;
}

#faq .faq-link {
  color: #2b68db;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

#faq .faq-link:hover {
  color: #1f54bd;
}

#faq .faq-accordion {
  display: grid;
  gap: 12px;
}

#faq .faq-item {
  margin: 0;
  overflow: clip;
  border: 1px solid #c0d3ee;
  border-radius: 18px;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.96) 0%, rgba(240, 247, 255, 0.9) 100%);
  box-shadow: 0 10px 24px rgba(11, 24, 45, 0.08);
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms ease;
}

#faq .faq-item:first-child {
  border-top: 1px solid #c0d3ee;
}

#faq .faq-summary {
  padding: 20px 22px;
  color: #091d3b;
  background: transparent;
}

#faq .faq-question-text {
  padding-right: 14px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.42;
}

#faq .faq-icon {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #bcd0ee;
  background: linear-gradient(180deg, #f3f8ff 0%, #e7f1ff 100%);
  color: #2b68db;
  font-size: 14px;
  transform: rotate(0deg);
  transition: transform 280ms ease, background 240ms ease, color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

#faq .faq-item[open] {
  border-color: #8bb0e4;
  box-shadow: 0 18px 34px rgba(10, 26, 53, 0.13);
  transform: translateY(-2px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(232, 244, 255, 0.93) 100%);
}

#faq .faq-item[open] .faq-summary {
  color: #154fbc;
  background: linear-gradient(180deg, rgba(43, 104, 219, 0.08) 0%, rgba(43, 104, 219, 0) 100%);
}

#faq .faq-item[open] .faq-icon {
  transform: rotate(180deg);
  border-color: #25b66a;
  background: linear-gradient(145deg, #24c273 0%, #1cae65 100%);
  color: #07243f;
  box-shadow: 0 8px 18px rgba(28, 174, 101, 0.33);
}

#faq .faq-summary:focus-visible {
  outline: 2px solid #2b68db;
  outline-offset: 3px;
}

#faq .faq-summary:active {
  background: rgba(43, 104, 219, 0.08);
}

#faq .faq-answer {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(236, 244, 255, 0.58) 100%);
  border-top: 1px dashed #bfd1eb;
}

#faq .faq-answer-inner {
  padding: 0 22px 0;
}

#faq .faq-item[open] .faq-answer-inner {
  padding-bottom: 22px;
}

#faq .faq-answer p,
#faq .faq-answer li {
  color: #425873;
  font-size: 15px;
  line-height: 1.74;
}

#faq .faq-answer p + p {
  margin-top: 11px;
}

#faq .faq-answer ul,
#faq .faq-answer ol {
  margin: 14px 0;
}

#faq .faq-answer ul li,
#faq .faq-answer ol li {
  margin-bottom: 8px;
  padding-left: 20px;
}

#faq .faq-answer ul li::before {
  color: #1dad63;
  font-weight: 800;
}

#faq .faq-answer ol li::before {
  color: #2b68db;
  font-weight: 800;
}

@media (hover: hover) and (pointer: fine) {
  #faq .faq-item:hover {
    border-color: #9ab9e4;
    box-shadow: 0 16px 30px rgba(11, 24, 45, 0.12);
    transform: translateY(-2px);
  }

  #faq .faq-summary:hover {
    color: #1d59c6;
    background: rgba(43, 104, 219, 0.06);
  }
}

@media (max-width: 1023px) {
  #faq .faq-inner {
    max-width: 760px;
  }

  #faq .faq-question-text {
    font-size: 16px;
  }

  #faq .faq-answer p,
  #faq .faq-answer li {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  #faq #faq-title {
    font-size: 32px;
    letter-spacing: -0.35px;
  }

  #faq .faq-subheadline {
    margin-bottom: 30px;
    font-size: 15px;
  }

  #faq .faq-accordion {
    gap: 10px;
  }

  #faq .faq-item {
    border-radius: 14px;
  }

  #faq .faq-summary {
    padding: 16px 14px;
  }

  #faq .faq-question-text {
    font-size: 15px;
    padding-right: 10px;
  }

  #faq .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  #faq .faq-answer-inner {
    padding: 0 14px 0;
  }

  #faq .faq-item[open] .faq-answer-inner {
    padding-bottom: 16px;
  }

  #faq .faq-answer p,
  #faq .faq-answer li {
    font-size: 13px;
    line-height: 1.68;
  }
}

@media (prefers-reduced-motion: reduce) {
  #faq .faq-item,
  #faq .faq-summary,
  #faq .faq-icon,
  #faq .faq-answer {
    transition: none;
  }
}

/* FAQ Centering Hotfix */
#faq .faq-inner {
  text-align: center;
}

#faq .faq-eyebrow {
  display: flex;
  width: fit-content;
  margin: 0 auto 14px;
}

#faq .faq-subheadline {
  margin-left: auto;
  margin-right: auto;
}

#faq .faq-accordion {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* -------------------------------------------------------------------------- */
/* Global Motion System (All Sections)                                        */
/* -------------------------------------------------------------------------- */

.motion-item {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 760ms cubic-bezier(0.22, 0.61, 0.36, 1),
    transform 860ms cubic-bezier(0.22, 0.61, 0.36, 1),
    filter 760ms ease;
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, transform, filter;
}

.motion-item.motion-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-down {
  transform: translate3d(0, -30px, 0) scale(0.99);
}

.motion-left {
  transform: translate3d(-40px, 0, 0) scale(0.99);
}

.motion-right {
  transform: translate3d(40px, 0, 0) scale(0.99);
}

.motion-zoom {
  transform: scale(0.9);
}

.motion-pop {
  transform: translate3d(0, 24px, 0) scale(0.9);
}

.section-fx {
  position: relative;
  background-size: 100% 100%;
}

.section-fx-hero.section-active {
  background-size: 130% 130%;
  animation: fxHeroBgPan 18s ease-in-out infinite;
}

.section-fx-soft.section-active {
  background-size: 120% 120%;
  animation: fxSoftBgPan 24s ease-in-out infinite;
}

.section-fx-final.section-active {
  background-size: 135% 135%;
  animation: fxFinalBgPan 20s ease-in-out infinite;
}

.section-fx-footer.section-active .footer-inner {
  animation: fxFooterRise 1s ease-out both;
}

.section-fx-hero.section-active .hero-media {
  animation: fxHeroMediaFloat 6s ease-in-out infinite;
}

.section-fx-hero.section-active .hero-coupon-card {
  animation: fxHeroCouponGlow 3.8s ease-in-out infinite;
}

#plans-section.section-active .plan-card.is-highlighted {
  animation: fxFeaturedBob 3.9s ease-in-out infinite;
}

#plans-section.section-active .plans-coupon-block {
  animation: fxPanelBreathe 4.4s ease-in-out infinite;
}

#testimonials-section.section-active .testimonial-card.is-visible {
  animation: fxCardSpark 5.6s ease-in-out infinite;
}

#process-section.section-active .process-time-badge {
  animation: fxBadgePulse 3.4s ease-in-out infinite;
}

#faq.section-active .faq-item[open] {
  animation: fxFaqOpenGlow 2.8s ease-in-out infinite;
}

.section-active .hero-primary-cta,
.section-active .solution-cta-btn,
.section-active .process-cta-btn,
.section-active .final-primary-cta {
  animation: fxCtaBreathe 2.9s ease-in-out infinite;
}

@keyframes fxHeroBgPan {
  0% {
    background-position: 0% 40%;
  }

  50% {
    background-position: 100% 60%;
  }

  100% {
    background-position: 0% 40%;
  }
}

@keyframes fxSoftBgPan {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes fxFinalBgPan {
  0% {
    background-position: 20% 35%;
  }

  50% {
    background-position: 82% 65%;
  }

  100% {
    background-position: 20% 35%;
  }
}

@keyframes fxHeroMediaFloat {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fxHeroCouponGlow {
  0%,
  100% {
    box-shadow: 0 20px 45px rgba(7, 20, 47, 0.25);
  }

  50% {
    box-shadow: 0 26px 62px rgba(7, 20, 47, 0.34);
  }
}

@keyframes fxFeaturedBob {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 0 0 1px rgba(25, 185, 105, 0.15), 0 16px 36px rgba(25, 185, 105, 0.16);
  }

  50% {
    transform: translateY(-8px);
    box-shadow: 0 0 0 1px rgba(25, 185, 105, 0.2), 0 24px 48px rgba(25, 185, 105, 0.24);
  }
}

@keyframes fxPanelBreathe {
  0%,
  100% {
    box-shadow: 0 14px 30px rgba(17, 31, 58, 0.12);
  }

  50% {
    box-shadow: 0 20px 40px rgba(17, 31, 58, 0.2);
  }
}

@keyframes fxCardSpark {
  0%,
  100% {
    box-shadow: 0 12px 26px rgba(11, 24, 45, 0.1);
  }

  50% {
    box-shadow: 0 18px 36px rgba(11, 24, 45, 0.18);
  }
}

@keyframes fxBadgePulse {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}

@keyframes fxFaqOpenGlow {
  0%,
  100% {
    box-shadow: 0 18px 34px rgba(10, 26, 53, 0.13);
  }

  50% {
    box-shadow: 0 24px 42px rgba(10, 26, 53, 0.2);
  }
}

@keyframes fxCtaBreathe {
  0%,
  100% {
    transform: translateY(0);
    box-shadow: 0 14px 28px rgba(26, 175, 100, 0.28);
  }

  50% {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(26, 175, 100, 0.4);
  }
}

@keyframes fxFooterRise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-item {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }

  .section-fx-hero.section-active,
  .section-fx-soft.section-active,
  .section-fx-final.section-active,
  .section-fx-footer.section-active .footer-inner,
  .section-fx-hero.section-active .hero-media,
  .section-fx-hero.section-active .hero-coupon-card,
  #plans-section.section-active .plan-card.is-highlighted,
  #plans-section.section-active .plans-coupon-block,
  #testimonials-section.section-active .testimonial-card.is-visible,
  #process-section.section-active .process-time-badge,
  #faq.section-active .faq-item[open],
  .section-active .hero-primary-cta,
  .section-active .solution-cta-btn,
  .section-active .process-cta-btn,
  .section-active .final-primary-cta {
    animation: none !important;
  }
}

/* Process Header Center Fix */
#process-section .process-eyebrow {
  display: flex;
  width: fit-content;
  margin: 0 auto 14px;
}

#process-section #process-title {
  margin: 12px auto 14px;
  text-align: center;
}

#process-section .process-subheadline {
  margin: 0 auto 46px;
  text-align: center;
}

/* Process Cards Center Alignment */
@media (min-width: 1024px) {
  #process-section .process-timeline {
    max-width: 1040px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: repeat(4, minmax(220px, 250px));
    justify-content: center;
  }
}

/* Professional Plan Card Animation Highlight */
.plan-professional {
  overflow: hidden;
  border-color: #93adff;
}

.plan-professional::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -65%;
  width: 42%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(135, 167, 255, 0.18) 44%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: translateX(0) rotate(8deg);
  pointer-events: none;
  opacity: 0;
}

.plan-badge-professional {
  position: relative;
  isolation: isolate;
}

#plans-section.section-active .plan-professional {
  animation: professionalCardFloat 4.2s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(115, 144, 255, 0.18),
    0 18px 38px rgba(40, 68, 150, 0.18);
}

#plans-section.section-active .plan-professional::before {
  opacity: 1;
  animation: professionalSheen 4.8s ease-in-out infinite;
}

#plans-section.section-active .plan-professional .plan-badge-professional {
  animation: professionalBadgePulse 3.2s ease-in-out infinite;
}

#plans-section.section-active .plan-professional .plan-name {
  text-shadow: 0 6px 16px rgba(44, 85, 201, 0.18);
}

@keyframes professionalCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes professionalSheen {
  0%,
  60%,
  100% {
    transform: translateX(0) rotate(8deg);
  }

  30% {
    transform: translateX(470%) rotate(8deg);
  }
}

@keyframes professionalBadgePulse {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(137, 102, 243, 0);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(137, 102, 243, 0.2);
  }
}

@media (max-width: 1023px) {
  #plans-section.section-active .plan-professional {
    animation-duration: 4.8s;
  }
}

@media (prefers-reduced-motion: reduce) {
  #plans-section.section-active .plan-professional,
  #plans-section.section-active .plan-professional::before,
  #plans-section.section-active .plan-professional .plan-badge-professional {
    animation: none !important;
  }
}

/* Keep Advanced card static; Professional card stays animated */
#plans-section.section-active .plan-advanced.is-highlighted {
  animation: none !important;
  transform: none !important;
}

/* Process heading in one line on desktop */
@media (min-width: 1024px) {
  #process-section #process-title {
    max-width: none;
    white-space: nowrap;
  }

  #process-section #process-title .process-highlight {
    display: inline;
  }
}
