/* ========================================
   HBN NETWORK – DESIGN SYSTEM
   ======================================== */

:root {
  --primary: #2563EB;
  --primary-dark: #1d4ed8;
  --primary-light: #dbeafe;
  --secondary: #7C3AED;
  --secondary-dark: #6d28d9;
  --secondary-light: #ede9fe;
  --accent: #22C55E;
  --accent-dark: #16a34a;
  --bg: #F8FAFC;
  --bg-soft: #F4F7FD;
  --bg-white: #ffffff;
  --text: #0F172A;
  --text-muted: #64748B;
  --border: #E2E8F0;
  --border-light: #f1f5f9;
  --gradient: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  --gradient-soft: linear-gradient(180deg, rgba(37, 99, 235, 0.05) 0%, rgba(124, 58, 237, 0.04) 100%);
  --card-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --card-shadow-hover: 0 18px 40px rgba(15, 23, 42, 0.10);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-lg: 24px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1180px;
  --header-height: 72px;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.72;
  color: var(--text);
  background: var(--bg-white);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: 'Manrope', sans-serif;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.02em;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-alt {
  padding: 100px 0;
  background: var(--bg);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  background: var(--primary-light);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.section-title {
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 800;
  line-height: 1.16;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.78;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.20);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(124, 58, 237, 0.22);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: #fff;
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}

.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1.5px solid rgba(37, 99, 235, 0.25);
}

.btn-outline:hover {
  background: rgba(37, 99, 235, 0.06);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 15px;
  border-radius: 18px;
}

.btn svg {
  width: 18px;
  height: 18px;
}

#shared-header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 19px;
}

.header-logo .logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.header-logo .logo-text {
  color: #C0392B;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  position: relative;
}

.header-nav a:hover,
.header-nav a.active {
  color: var(--text);
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  flex-direction: column;
  gap: 4px;
  animation: fadeSlideDown 0.25s ease;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: var(--bg);
  color: var(--primary);
}

.mobile-nav .btn {
  margin-top: 16px;
  width: 100%;
}

@keyframes fadeSlideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-weight: 800;
  font-size: clamp(34px, 4.6vw, 50px);
  line-height: 1.08;
  margin-bottom: 18px;
}

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.78;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-mockup {
  background: linear-gradient(180deg, #ffffff, var(--bg));
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 28px;
  box-shadow: var(--card-shadow);
  position: relative;
}

.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot:nth-child(1) { background: #ef4444; }
.mockup-dot:nth-child(2) { background: #f59e0b; }
.mockup-dot:nth-child(3) { background: #22c55e; }

.mockup-chart {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  height: 160px;
  padding: 0 8px;
}

.mockup-bar {
  flex: 1;
  border-radius: 6px 6px 0 0;
  transition: height 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 14px;
  border: 1px solid var(--border);
}

.stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.stat-value {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
}

.stat-change {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
}

.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  padding: 12px 18px;
  box-shadow: var(--card-shadow-hover);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

.float-badge.top-right {
  top: -16px;
  right: -16px;
}

.float-badge.bottom-left {
  bottom: -16px;
  left: -16px;
  animation-delay: 2s;
}

.float-badge .icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.float-badge .icon-circle.green {
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent);
}

.float-badge .icon-circle.blue {
  background: rgba(37, 99, 235, 0.1);
  color: var(--primary);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-centered {
  text-align: center;
  padding: 100px 0 80px;
}

.hero-centered .hero-title {
  max-width: 760px;
  margin: 0 auto 20px;
}

.hero-centered .hero-subtitle {
  max-width: 620px;
  margin: 0 auto 36px;
}

.hero-centered .hero-cta {
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 32px;
  transition: var(--transition);
  box-shadow: var(--card-shadow);
}

.card:hover {
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.card-icon.blue { background: var(--primary-light); color: var(--primary); }
.card-icon.purple { background: var(--secondary-light); color: var(--secondary); }
.card-icon.green { background: rgba(34, 197, 94, 0.1); color: var(--accent); }
.card-icon.orange { background: rgba(249, 115, 22, 0.1); color: #f97316; }

.card-title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.28;
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.timeline {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--secondary), var(--accent));
  border-radius: 2px;
}

.timeline-item {
  display: flex;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 1;
}

.timeline-content { padding-top: 12px; }

.timeline-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 6px;
}

.timeline-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

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

.cta-box {
  background: var(--gradient);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  inset: -35%;
  background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.10) 0%, transparent 44%);
  pointer-events: none;
}

.cta-title {
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 16px;
  position: relative;
  color: #fff;
}

.cta-text {
  font-size: 16px;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.cta-buttons .btn {
  background: #fff;
  color: var(--primary);
}

.cta-buttons .btn:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

.cta-buttons .btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.cta-buttons .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.24);
  color: #fff;
}

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--gradient);
  color: #fff;
  border-color: transparent;
}

.footer-col-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

.flow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.flow-step {
  text-align: center;
  padding: 24px 20px;
  flex: 1;
  min-width: 180px;
}

.flow-step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  margin: 0 auto 14px;
}

.flow-step-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--text);
}

.flow-step p {
  font-size: 14px;
  line-height: 1.7;
}

.flow-arrow {
  font-size: 20px;
  color: var(--border);
  display: flex;
  align-items: center;
}

.pricing-card {
  background: #fff;
  border: 1px solid rgba(37, 99, 235, 0.16);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  max-width: 460px;
  margin: 0 auto;
  position: relative;
  box-shadow: var(--card-shadow);
}

.pricing-price {
  font-weight: 800;
  font-size: 38px;
  color: var(--text);
  line-height: 1.04;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  font-size: 14px;
}

.info-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(124, 58, 237, 0.04));
  border: 1px solid rgba(37, 99, 235, 0.12);
  border-radius: var(--radius);
  padding: 28px 32px;
  max-width: 700px;
  margin: 0 auto;
}

.info-box p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: var(--primary-light);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  transition: transform 0.3s ease;
  flex: 0 0 auto;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 1000px;
  padding-bottom: 22px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.72;
}

.program-card,
.feature-card,
.step-item,
.video-wrapper {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
}

.program-card {
  padding: 28px;
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.program-card .btn {
  margin-top: 20px;
}

.feature-card {
  padding: 24px;
  text-align: center;
}

.feature-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 14px;
}

.feature-card .title {
  font-weight: 700;
}

.video-wrapper {
  overflow: hidden;
  padding: 0;
  aspect-ratio: 16 / 9;
  max-width: 920px;
  margin: 0 auto 28px;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.steps-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.step-item {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.step-num {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-text {
  font-weight: 600;
  color: var(--text);
}

.fade-up {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   AFFILIATE PAGE
   ======================================== */
.affiliate-hero {
  background: linear-gradient(180deg, #fbfdff 0%, #f6f9ff 100%);
}

.hero-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 28px 0 34px;
}

.hero-checks li {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px 16px;
  font-weight: 600;
  color: #172338;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.04);
}

.hero-checks li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent);
  margin-right: 10px;
  font-size: 13px;
  font-weight: 800;
}

.cta-note {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 600;
}

.phone-lead {
  width: min(320px, 100%);
  margin: 0 auto;
  background: linear-gradient(180deg, #ffffff, #f6f9ff);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 18px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  position: relative;
}

.phone-lead-inner {
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 26px;
  padding: 18px;
}

.phone-pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.10);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.phone-income {
  margin: 16px 0 8px;
  font-size: 18px;
  color: var(--text-muted);
}

.phone-income strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 42px;
  line-height: 1;
  color: #081225;
  margin-top: 6px;
}

.phone-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.phone-mini-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
}

.phone-mini-card strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
  color: #081225;
}

.phone-mini-card span {
  font-size: 12px;
  color: var(--text-muted);
}

.phone-chart {
  height: 138px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
  padding: 14px 12px 0;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.phone-chart span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, rgba(37,99,235,0.78), rgba(124,58,237,0.95));
}

.phone-chart span:nth-child(1) { height: 38%; opacity: .45; }
.phone-chart span:nth-child(2) { height: 52%; opacity: .55; }
.phone-chart span:nth-child(3) { height: 44%; opacity: .5; }
.phone-chart span:nth-child(4) { height: 72%; }
.phone-chart span:nth-child(5) { height: 60%; opacity: .8; }
.phone-chart span:nth-child(6) { height: 88%; }

.float-chip {
  position: absolute;
  background: rgba(255,255,255,0.95);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.10);
  min-width: 160px;
}

.float-chip strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  color: #081225;
}

.float-chip span {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
}

.float-chip-a { top: 42px; left: -26px; transform: rotate(-5deg); }
.float-chip-b { top: 86px; right: -34px; }
.float-chip-c { bottom: 38px; right: -24px; transform: rotate(5deg); }

.pain-banner {
  max-width: 920px;
  margin: 30px auto 0;
  text-align: center;
  padding: 24px 28px;
  background: linear-gradient(180deg, #ffffff, #f7faff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  font-size: 18px;
  font-weight: 700;
  color: #10203b;
}

/* Arrow label pointing down to cards */
.arrow-label {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.arrow-label-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--text);
  margin-bottom: 16px;
}

.arrow-label-line {
  width: 2px;
  height: 40px;
  background: var(--border);
  margin: 0 auto;
}

.arrow-label-branches {
  display: flex;
  justify-content: center;
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  height: 32px;
}

.arrow-label-branches::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: var(--border);
}

.arrow-label-branches span {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background: var(--border);
}

.arrow-label-branches span::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid var(--primary);
}

.arrow-label-branches span:nth-child(1) { left: 12.5%; }
.arrow-label-branches span:nth-child(2) { left: 37.5%; }
.arrow-label-branches span:nth-child(3) { left: 62.5%; }
.arrow-label-branches span:nth-child(4) { left: 87.5%; }

@media (max-width: 720px) {
  .arrow-label-branches {
    display: none;
  }
  .arrow-label-line {
    height: 30px;
  }
  .arrow-label-line::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid var(--primary);
    margin: 0 auto;
  }
}

.opportunity-grid,
.results-grid,
.anxiety-grid,
.testimonial-grid,
.compare-grid {
  display: grid;
  gap: 24px;
}

.opportunity-grid { grid-template-columns: repeat(3, 1fr); }
.results-grid { grid-template-columns: repeat(4, 1fr); }
.anxiety-grid { grid-template-columns: repeat(4, 1fr); }
.testimonial-grid { grid-template-columns: repeat(3, 1fr); }
.compare-grid { grid-template-columns: repeat(2, 1fr); }

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.stat-strip-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 16px;
  text-align: center;
  box-shadow: var(--card-shadow);
}

.stat-strip-item strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 24px;
  color: #081225;
}

.stat-strip-item span {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.testimonial-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--card-shadow);
}

.testimonial-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.testimonial-card strong {
  display: block;
  font-size: 16px;
}

.testimonial-card small {
  display: block;
  color: var(--text-muted);
  font-weight: 600;
}

.testimonial-card p {
  color: #213047;
}

.result-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(34, 197, 94, 0.10);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 13px;
}

.compare-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--card-shadow);
}

.compare-card.bad {
  background: linear-gradient(180deg, #fff, #fff8f8);
}

.compare-card.good {
  background: linear-gradient(180deg, #fff, #f7fbff);
}

.compare-card h3 {
  margin-bottom: 16px;
  font-size: 26px;
}

.compare-list {
  display: grid;
  gap: 12px;
}

.compare-list li {
  padding: 13px 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  font-weight: 600;
  color: #1b2638;
}

.compare-card.bad .compare-list li::before {
  content: '×';
  color: #dc2626;
  font-weight: 900;
  margin-right: 10px;
}

.compare-card.good .compare-list li::before {
  content: '✓';
  color: var(--accent-dark);
  font-weight: 900;
  margin-right: 10px;
}

.partner-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.partner-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--card-shadow);
}

.partner-card h3 {
  font-size: 30px;
  margin-bottom: 14px;
}

.partner-card p {
  color: var(--text-muted);
  margin-bottom: 12px;
}

.partner-points {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.partner-points li {
  border-radius: 16px;
  padding: 14px 16px;
  background: #f8fbff;
  border: 1px solid var(--border);
  font-weight: 600;
}

.partner-points li::before {
  content: '✓';
  color: var(--accent-dark);
  font-weight: 900;
  margin-right: 10px;
}

.pricing-card.full-height {
  max-width: none;
  height: 100%;
}

.subtle-note {
  margin-top: 18px;
  color: var(--text-muted);
  text-align: center;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 50;
  background: rgba(8, 18, 37, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.28);
  display: none;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta-text {
  min-width: 0;
}

.sticky-cta-text strong {
  display: block;
  color: #fff;
  font-size: 14px;
  line-height: 1.3;
}

.sticky-cta-text span {
  display: block;
  color: rgba(255,255,255,0.72);
  font-size: 12px;
  margin-top: 3px;
}

.sticky-cta .btn {
  padding: 14px 16px;
  border-radius: 14px;
  width: 100%;
  text-align: center;
}

@media (max-width: 1080px) {
  .hero-grid,
  .grid-4,
  .results-grid,
  .anxiety-grid,
  .partner-wrap,
  .testimonial-grid,
  .stat-strip,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3,
  .opportunity-grid,
  .compare-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid,
  .partner-wrap {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-visual {
    order: -1;
  }

  .flow-arrow {
    display: none;
  }
}

@media (max-width: 860px) {
  .header-nav,
  .header-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    padding: 64px 0 80px;
  }
}

@media (max-width: 720px) {
  .container {
    padding: 0 18px;
  }

  .section,
  .section-alt,
  .cta-section {
    padding: 74px 0;
  }

  .hero-centered {
    padding: 74px 0 56px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .hero-grid,
  .hero-checks,
  .opportunity-grid,
  .results-grid,
  .anxiety-grid,
  .testimonial-grid,
  .compare-grid,
  .stat-strip,
  .partner-wrap,
  .footer-grid,
  .phone-mini-grid {
    grid-template-columns: 1fr;
  }

  .flow-steps {
    flex-direction: column;
  }

  .hero-title {
    font-size: clamp(30px, 8vw, 42px);
  }

  .hero-subtitle,
  .section-subtitle {
    font-size: 15px;
  }

  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .btn-lg,
  .cta-buttons .btn {
    width: 100%;
  }

  .float-badge,
  .float-chip {
    position: static;
    transform: none;
    margin-top: 12px;
    width: 100%;
  }

  .phone-lead {
    width: 100%;
  }

  .cta-box {
    padding: 42px 22px;
  }

  .pricing-card,
  .partner-card,
  .card,
  .program-card,
  .testimonial-card {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 90px;
  }
}

.proof-slider{
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 10px;
}

.proof-track-wrap{
  overflow: hidden;
  width: 100%;
}

.proof-track{
  display: flex;
  transition: transform 0.4s ease;
  will-change: transform;
}

.proof-slide{
  min-width: calc((100% - 32px) / 3);
  margin-right: 16px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-slide img{
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 500px;
  display: block;
  margin: 0 auto;
  border: 1px solid var(--border);
  box-shadow: var(--card-shadow);
  background: #0f172a;
  padding: 6px;
  border-radius: 15px;
}

.proof-arrow{
  width: 46px;
  height: 46px;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  flex: 0 0 auto;
  box-shadow: 0 10px 24px rgba(37,99,235,0.2);
  transition: all 0.25s ease;
}

.proof-arrow:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(124,58,237,0.24);
}

.proof-arrow:disabled{
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@media (max-width: 991px){
  .proof-slide{
    min-width: calc((100% - 16px) / 2);
  }

  .proof-slide img{
    max-height: 380px;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
  }
}

@media (max-width: 640px){
  .proof-slider{
    gap: 10px;
  }

  .proof-slide{
    min-width: 100%;
    margin-right: 0;
  }

  .proof-slide img{
    border-radius: 12px;
    max-height: 360px;
    max-width: 100%;
    width: auto;
    margin: 0 auto;
  }

  .proof-track{
    gap: 0;
  }

  .proof-arrow{
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}
