/* =============================================
   RESET & BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #1e293b;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* =============================================
   VARIABLES
============================================= */
:root {
  --blue: #0488DB;
  --blue-dark: #0373bf;
  --blue-light: #e8f4fd;
  --green: #9ED36A;
  --green-dark: #6ab33a;
  --green-light: #f0fbea;
  --navy: #0d1b2a;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --bg-alt: #f8f9fa;
  --bg-blue: #f0f7ff;
  --bg-green: #f6fbf2;
  --border: #e2eeff;
  --shadow: 0 4px 30px rgba(0,0,0,0.06);
  --shadow-blue: 0 12px 50px rgba(4,136,219,0.12);
  --shadow-green: 0 12px 50px rgba(158,211,106,0.12);
}

/* =============================================
   TYPOGRAPHY
============================================= */
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 16px;
}
.section-heading {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  line-height: 1.75;
}
.divider {
  width: 56px;
  height: 4px;
  border-radius: 2px;
  background: linear-gradient(to right, var(--blue), var(--green));
  margin: 20px auto 0;
}

/* =============================================
   BUTTONS
============================================= */
.btn {
  display: inline-block;
  font-weight: 800;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  line-height: 1;
  white-space: nowrap;
}
.btn-blue {
  background: var(--blue);
  color: #fff;
  padding: 18px 44px;
  font-size: 17px;
  box-shadow: 0 4px 20px rgba(4,136,219,0.35);
}
.btn-blue:hover {
  background: #0370b8;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(4,136,219,0.5);
}
.btn-blue-lg {
  padding: 22px 56px;
  font-size: 19px;
}
.btn-green {
  background: var(--green);
  color: var(--navy);
  padding: 18px 44px;
  font-size: 17px;
  box-shadow: 0 4px 20px rgba(158,211,106,0.35);
}
.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(158,211,106,0.5);
}
.btn-green-sm {
  padding: 11px 24px;
  font-size: 14px;
}
.btn-green-lg {
  padding: 22px 56px;
  font-size: 19px;
}

/* =============================================
   LAYOUT
============================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 96px 24px; }

/* =============================================
   NAV
============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #0370b0;
  backdrop-filter: blur(12px);
  border-bottom: none;
  box-shadow: none;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { height: 44px; width: auto; }

/* =============================================
   HERO
============================================= */
.hero {
  background: #0370b0;
  padding: 160px 24px 100px;
  position: relative;
  overflow: hidden;
}
.hero-glow-1 {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(4,136,219,0.14) 0%, transparent 65%);
  pointer-events: none;
}
.hero-glow-2 {
  position: absolute; bottom: -150px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(158,211,106,0.09) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: none;
}
.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}
.hero-text { flex: 1; min-width: 0; }
.hero-illustration { flex-shrink: 0; width: 460px; }
.hero-h1 {
  font-size: 45px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 12px;
}
.hero-h1-accent { color: var(--green); }
.hero-h1-sub {
  font-size: clamp(17px, 2.2vw, 26px);
  font-weight: 700;
  color: rgba(255,255,255,0.8);
  line-height: 1.25;
  letter-spacing: -0.5px;
  margin-bottom: 32px;
}
.hero-lead {
  font-size: clamp(16px, 1.9vw, 20px);
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  margin: 0 0 18px;
}
.hero-italic {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.45);
  line-height: 1.85;
  margin: 0 0 50px;
  font-style: italic;
}
.hero-note {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
  font-weight: 500;
  margin-top: 14px;
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 60px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
  font-weight: 500;
}
.trust-check { color: var(--green); flex-shrink: 0; }

/* =============================================
   PROBLEM
============================================= */
.problem { background: #ffffff; }
.problem-text {
  font-size: clamp(17px, 1.9vw, 21px);
  color: #4b5563;
  line-height: 1.85;
  margin-top: 28px;
}
.problem-text + .problem-text { margin-top: 20px; }

/* =============================================
   SOLUTION
============================================= */
.solution { background: var(--bg-blue); }
.solution-intro {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 700px;
  margin: 20px auto 0;
}

/* Flowchart */
.flowchart-wrapper {
  margin-top: 56px;
}
.flowchart-labels {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.flowchart-label {
  flex: 1;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.flowchart-label-spacer { width: 72px; flex-shrink: 0; }

.flowchart-row {
  display: flex;
  align-items: stretch;
  gap: 0;
}
.phase-card {
  background: white;
  border-radius: 20px;
  padding: 44px 40px;
  position: relative;
  flex: 1;
}
.phase-card-blue {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-blue);
}
.phase-card-green {
  border: 2px solid var(--green);
  box-shadow: var(--shadow-green);
}
.phase-tag {
  position: absolute;
  top: -17px;
  left: 32px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 6px 18px;
  border-radius: 100px;
  white-space: nowrap;
}
.phase-tag-blue { background: var(--blue); color: white; }
.phase-tag-green { background: var(--green); color: var(--navy); }

.phase-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  line-height: 1.2;
  margin: 16px 0 6px;
}
.phase-subtitle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.phase-body {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Channel items */
.channel-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}
.channel-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.channel-icon-blue { background: var(--blue-light); }
.channel-icon-green { background: var(--green-light); }
.channel-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.channel-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }

/* Guarantee box */
.guarantee-box {
  background: linear-gradient(135deg, var(--blue), #0570c4);
  border-radius: 12px;
  padding: 18px 22px;
  color: white;
  margin-top: 28px;
}
.guarantee-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-bottom: 6px;
}
.guarantee-text { font-size: 14px; font-weight: 700; line-height: 1.55; }

/* Arrow connector */
.flow-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  flex-shrink: 0;
  padding: 0 12px;
}
.flow-connector-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.flow-line {
  width: 2px;
  height: 40px;
}
.flow-arrow-circle {
  width: 36px;
  height: 36px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Solution tagline */
.solution-tagline {
  text-align: center;
  margin-top: 48px;
  background: white;
  border-radius: 16px;
  padding: 28px 40px;
  box-shadow: var(--shadow);
}
.solution-tagline p {
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--text);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto;
}

/* =============================================
   EXCLUSIVITY
============================================= */
.exclusivity { background: #ffffff; }
.exclusivity-icon {
  width: 76px;
  height: 76px;
  background: linear-gradient(135deg, #e8f4fd, #d0eaff);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}
.exclusivity-body {
  font-size: clamp(17px, 1.9vw, 20px);
  color: #4b5563;
  line-height: 1.85;
  max-width: 660px;
  margin: 28px auto 36px;
}
.exclusivity-callout {
  display: inline-block;
  background: var(--green);
  border-radius: 14px;
  padding: 22px 44px;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 800;
  color: #000;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.exclusivity-callout:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(158,211,106,0.5);
}

/* =============================================
   HOW IT WORKS
============================================= */
.how-it-works { background: #f1f5f9; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  position: relative;
}
/* Connector line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(33.33% - 8px);
  right: calc(33.33% - 8px);
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--green));
  z-index: 0;
}
.step-card {
  background: white;
  border-radius: 20px;
  padding: 36px 28px;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow);
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  color: white;
  margin-bottom: 20px;
}
.step-title {
  font-size: 19px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.step-body { font-size: 15px; color: var(--text-muted); line-height: 1.75; }

/* =============================================
   NICHES
============================================= */
.niches { background: #ffffff; }
.niches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.niche-card {
  border: 2px solid var(--border);
  border-radius: 22px;
  padding: 36px 20px;
  text-align: center;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.niche-card:hover {
  border-color: var(--blue);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(4,136,219,0.12);
}
.niche-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e8f4fd, #d4eaff);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.niche-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.niche-sub { font-size: 13px; color: var(--text-light); }

/* =============================================
   ABOUT
============================================= */
.about { background: var(--bg-alt); }
.about-row {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  margin-top: 56px;
}
.about-photo-wrapper { flex-shrink: 0; }
.photo-placeholder {
  width: 230px;
  height: 295px;
  background: linear-gradient(135deg, #e8f4fd, #d0eaff);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue);
}
.photo-placeholder-text { font-size: 12px; font-weight: 600; opacity: 0.6; }
.about-bio { flex: 1; min-width: 280px; }
.about-name { font-size: 30px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
.about-role {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--blue);
  margin-bottom: 28px;
}
.about-p { font-size: 16px; color: #4b5563; line-height: 1.9; margin-bottom: 16px; }
.about-brands {
  background: white;
  border-radius: 14px;
  padding: 20px 24px;
  box-shadow: var(--shadow);
  margin-top: 28px;
}
.about-brands-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 12px;
}
.brand-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.brand-badge {
  font-size: 13px;
  font-weight: 700;
  color: #475569;
  background: #f1f5f9;
  padding: 6px 14px;
  border-radius: 6px;
}

/* =============================================
   FINAL CTA
============================================= */
.final-cta {
  background: #0370b0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 500px;
  background: radial-gradient(ellipse, rgba(4,136,219,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 100px;
  background: rgba(158,211,106,0.12);
  color: var(--green);
  border: 1px solid rgba(158,211,106,0.25);
  margin-bottom: 28px;
}
.cta-heading {
  font-size: clamp(32px, 5vw, 54px);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.cta-body {
  font-size: clamp(16px, 1.9vw, 20px);
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 44px;
}
.cta-checks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.cta-check-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
}

/* =============================================
   FOOTER
============================================= */
footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 48px 24px 32px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo-block { display: flex; flex-direction: column; gap: 10px; }
.footer-logo { height: 26px; width: auto; opacity: 0.75; }
.footer-address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}
.footer-address a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
}
.footer-address a:hover { color: rgba(255,255,255,0.75); }
.footer-links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer-link {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.75); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.28); }
.footer-domain { font-size: 12px; color: rgba(255,255,255,0.18); }

/* =============================================
   RESPONSIVE
============================================= */
@media (max-width: 1150px) {
  .nav-inner { padding-right: 24px; }
}

@media (max-width: 1144px) {
  .nav-inner { padding-left: 24px; }
}

@media (max-width: 900px) {
  .hero-inner { flex-direction: column; text-align: center; gap: 40px; }
  .hero-illustration { width: 100%; max-width: 480px; margin: 0 auto; }
  .hero-trust { justify-content: center; }
  .hero-lead, .hero-italic { margin-left: auto; margin-right: auto; max-width: 600px; }
  .flowchart-labels { display: none; }
  .flowchart-row {
    flex-direction: column;
    gap: 20px;
  }
  .flow-connector {
    width: 100%;
    height: 48px;
    padding: 0;
  }
  .flow-connector-inner {
    flex-direction: row;
    gap: 8px;
  }
  .flow-line {
    width: 40px;
    height: 2px;
  }
  /* Vertical arrow */
  .flow-connector-inner .flow-line:first-child {
    background: linear-gradient(to right, var(--blue), var(--green)) !important;
    height: 2px;
    width: 40px;
  }
  .flow-connector-inner .flow-line:last-child {
    background: linear-gradient(to right, var(--green), var(--green-dark)) !important;
    height: 2px;
    width: 40px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }
  .steps-grid::before { display: none; }

  .niches-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .about-photo-wrapper { width: 100%; display: flex; justify-content: center; }

  .footer-top { flex-direction: column; align-items: flex-start; gap: 24px; }
}

@media (max-width: 575px) {
  .nav-inner {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: auto;
    padding: 16px 0;
  }
  .nav-inner .btn { display: none; }
}

@media (max-width: 600px) {
  section { padding: 72px 20px; }
  .hero { padding: 130px 20px 80px; }
  .phase-card { padding: 36px 24px; }
  .niches-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .step-card { padding: 28px 22px; }
  .solution-tagline { padding: 24px 20px; }
  .cta-checks { gap: 16px; }
}

@media (max-width: 400px) {
  .niches-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PRICING SECTION
   ============================================================ */

.pricing {
  padding: 100px 24px;
  background: var(--bg, #0d1b2a);
}

/* ---- Grid ---- */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 980px;
  margin: 60px auto 0;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

/* ---- Cards ---- */
.pricing-card {
  background: white;
  border-radius: 16px;
  padding: 36px 32px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s ease;
}

.pricing-card-phase1 {
  border: 2px solid var(--blue);
  box-shadow: var(--shadow-blue);
}

.pricing-card-phase2 {
  border: 2px solid var(--green);
  box-shadow: var(--shadow-green);
}

/* ---- Phase badge ---- */
.pricing-phase-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 16px;
  width: fit-content;
}

.pricing-phase-badge-blue {
  background: rgba(4, 136, 219, 0.15);
  color: var(--blue, #0488DB);
}

.pricing-phase-badge-green {
  background: rgba(158, 211, 106, 0.15);
  color: var(--green, #9ED36A);
}

/* ---- Card text ---- */
.pricing-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.25;
}

.pricing-card-sub {
  font-size: 14.5px;
  color: var(--text-muted);
  margin: 0 0 24px;
  line-height: 1.6;
}

/* ---- Price ---- */
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}

.pricing-amount {
  font-size: 42px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}

.pricing-period {
  font-size: 15px;
  color: var(--text-muted);
  font-weight: 400;
}

/* ---- Guarantee line ---- */
.pricing-guarantee {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
  line-height: 1.4;
}

.pricing-guarantee svg {
  flex-shrink: 0;
}

/* ---- Feature list ---- */
.pricing-features {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  flex: 1;
}

.pricing-feature {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.pricing-feature strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}

.pricing-feature span {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

.pricing-check {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue, #0488DB);
}

.pricing-check-green {
  color: var(--green, #9ED36A);
}

/* ---- CTA button ---- */
.pricing-btn {
  display: block;
  text-align: center;
  width: 100%;
  margin-top: auto;
}

/* ---- Bottom note ---- */
.pricing-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 40px auto 0;
  line-height: 1.7;
}

.pricing-note strong {
  color: var(--text);
}
