/* ============================================================
   RocketPros Marketing Website — Master Stylesheet
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
  --bg-dark:       #0f1117;
  --bg-card:       #1a1d27;
  --bg-card-hover: #1e2233;
  --bg-light:      #f8fafc;
  --bg-white:      #ffffff;

  --cyan:          #06b6d4;
  --cyan-light:    #22d3ee;
  --cyan-dark:     #0284c7;
  --violet:        #8b5cf6;
  --violet-light:  #a78bfa;

  --border-dark:   #2d3148;
  --border-light:  #e2e8f0;

  --text-on-dark:        #e2e8f0;
  --text-muted-dark:     #9ca3af;
  --text-on-light:       #0f172a;
  --text-muted-light:    #64748b;

  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;

  --shadow-card: 0 4px 24px rgba(0,0,0,0.18);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.28);

  --transition: 0.2s ease;
}

/* ── Reset & Base ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-dark);
  color: var(--text-on-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Typography ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; line-height: 1.3; }
p  { line-height: 1.7; }

.text-cyan   { color: var(--cyan); }
.text-violet { color: var(--violet); }
.text-muted  { color: var(--text-muted-dark); }

/* ── Container ── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section Spacing ── */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── Section Labels ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
}
.section-label.cyan {
  background: rgba(6,182,212,0.12);
  color: var(--cyan);
  border: 1px solid rgba(6,182,212,0.25);
}
.section-label.violet {
  background: rgba(139,92,246,0.12);
  color: var(--violet);
  border: 1px solid rgba(139,92,246,0.25);
}
.section-label.dark {
  background: rgba(255,255,255,0.06);
  color: var(--text-muted-dark);
  border: 1px solid var(--border-dark);
}
.section-label.muted {
  background: rgba(100,116,139,0.1);
  color: var(--text-muted-light);
  border: 1px solid var(--border-light);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  border: none;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(6,182,212,0.35);
}
.btn-primary:hover { box-shadow: 0 6px 24px rgba(6,182,212,0.45); }

.btn-outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 1.5px solid var(--border-dark);
}
.btn-outline:hover { border-color: var(--cyan); color: var(--cyan); }

.btn-outline-light {
  background: transparent;
  color: var(--text-on-light);
  border: 1.5px solid var(--border-light);
}
.btn-outline-light:hover { border-color: var(--cyan-dark); color: var(--cyan-dark); }

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.btn-full { width: 100%; justify-content: center; }

/* ── Cards ── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card:hover {
  border-color: rgba(6,182,212,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.card-light {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.card-light:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 24px rgba(6,182,212,0.1);
}

/* ── Icon Wrap ── */
.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.icon-circle.cyan   { background: rgba(6,182,212,0.14); color: var(--cyan); }
.icon-circle.violet { background: rgba(139,92,246,0.14); color: var(--violet); }
.icon-circle.amber  { background: rgba(245,158,11,0.14); color: #f59e0b; }
.icon-circle.green  { background: rgba(34,197,94,0.14);  color: #22c55e; }
.icon-circle.red    { background: rgba(239,68,68,0.14);   color: #ef4444; }
.icon-circle.blue   { background: rgba(59,130,246,0.14);  color: #3b82f6; }

.icon-circle svg { width: 24px; height: 24px; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(15,17,23,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(45,49,72,0.6);
  height: 64px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.06); }

.nav-cta {
  margin-left: 8px;
  padding: 9px 20px;
  font-size: 0.88rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border: none;
  background: none;
  cursor: pointer;
  margin-left: auto;
}
.nav-hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  border-radius: 2px;
  transition: all 0.2s;
  display: block;
}

/* Mobile drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border-dark);
  padding: 16px 24px 24px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}
.nav-drawer.open { display: flex; }
.nav-drawer .nav-link { width: 100%; padding: 12px 16px; }
.nav-drawer .btn-primary { margin-top: 8px; justify-content: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 64px;
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}

/* Decorative background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(6,182,212,0.12) 0%, transparent 70%);
  top: -100px; left: -100px;
}
.hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.1) 0%, transparent 70%);
  bottom: -50px; right: -50px;
}

/* Animated rings */
.hero-rings {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;
  pointer-events: none;
}
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(6,182,212,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ring-pulse 4s ease-in-out infinite;
}
.ring:nth-child(1) { width: 100%; height: 100%; animation-delay: 0s; }
.ring:nth-child(2) { width: 78%;  height: 78%;  animation-delay: 0.5s; border-color: rgba(139,92,246,0.12); }
.ring:nth-child(3) { width: 56%;  height: 56%;  animation-delay: 1s; border-color: rgba(6,182,212,0.2); }
.ring:nth-child(4) { width: 34%;  height: 34%;  animation-delay: 1.5s; background: rgba(6,182,212,0.06); }
.ring-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(6,182,212,0.2);
}
.ring-center img { width: 36px; height: 36px; border-radius: 10px; }

@keyframes ring-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.03); }
}

.hero-content { position: relative; z-index: 1; max-width: 620px; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 20px;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero h1 { margin-bottom: 24px; }
.hero h1 span {
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted-dark);
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note {
  margin-top: 32px;
  font-size: 0.82rem;
  color: var(--text-muted-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note svg { width: 14px; height: 14px; color: var(--cyan); flex-shrink: 0; }

/* ============================================================
   PROBLEM SECTION (light)
   ============================================================ */
.section-problem {
  background: var(--bg-light);
  color: var(--text-on-light);
}

.section-problem .section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-problem h2 { color: var(--text-on-light); }
.section-problem .lead {
  font-size: 1.05rem;
  color: var(--text-muted-light);
  max-width: 560px;
  margin: 16px auto 0;
}

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

.problem-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.problem-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  border-color: #cbd5e1;
}
.problem-card .icon-circle { margin-bottom: 20px; }
.problem-card h3 { color: var(--text-on-light); margin-bottom: 10px; }
.problem-card p { font-size: 0.93rem; color: var(--text-muted-light); }

/* ============================================================
   SOLUTION SECTION (dark)
   ============================================================ */
.section-solution {
  background: var(--bg-dark);
}

.solution-header {
  text-align: center;
  margin-bottom: 60px;
}
.solution-header h2 { margin-bottom: 16px; }
.solution-header p {
  font-size: 1.05rem;
  color: var(--text-muted-dark);
  max-width: 580px;
  margin: 0 auto;
}

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

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: border-color var(--transition);
}
.solution-card:hover { border-color: rgba(6,182,212,0.35); }
.solution-card .icon-circle { margin-bottom: 16px; }
.solution-card h3 { font-size: 1rem; margin-bottom: 8px; }
.solution-card p { font-size: 0.88rem; color: var(--text-muted-dark); }

/* ============================================================
   BENEFITS SECTION (light)
   ============================================================ */
.section-benefits {
  background: var(--bg-light);
  color: var(--text-on-light);
}

.benefits-header {
  text-align: center;
  margin-bottom: 56px;
}
.benefits-header h2 { color: var(--text-on-light); }
.benefits-header p { color: var(--text-muted-light); font-size: 1.05rem; max-width: 520px; margin: 16px auto 0; }

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

.benefit-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  border-color: var(--cyan-dark);
  box-shadow: 0 4px 20px rgba(6,182,212,0.12);
}
.benefit-card .icon-circle {
  margin: 0 auto 14px;
}
.benefit-card h3 { font-size: 0.95rem; color: var(--text-on-light); margin-bottom: 6px; }
.benefit-card p { font-size: 0.83rem; color: var(--text-muted-light); }

/* ============================================================
   HOW IT WORKS (dark)
   ============================================================ */
.section-how {
  background: var(--bg-card);
}

.how-header {
  text-align: center;
  margin-bottom: 64px;
}
.how-header h2 { margin-bottom: 16px; }
.how-header p { font-size: 1.05rem; color: var(--text-muted-dark); max-width: 520px; margin: 0 auto; }

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

/* Connecting line */
.how-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 1px;
  background: linear-gradient(to right, var(--cyan), var(--violet));
  opacity: 0.3;
}

.how-step {
  padding: 0 32px;
  text-align: center;
}

.step-num-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--bg-dark);
  border: 2px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.how-step:hover .step-num-wrap {
  border-color: var(--cyan);
  box-shadow: 0 0 24px rgba(6,182,212,0.2);
}
.step-num {
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.how-step h3 { margin-bottom: 10px; }
.how-step p { font-size: 0.92rem; color: var(--text-muted-dark); }

/* ============================================================
   CARRIERS SECTION (light)
   ============================================================ */
.section-carriers {
  background: var(--bg-light);
  color: var(--text-on-light);
}

.carriers-header {
  text-align: center;
  margin-bottom: 48px;
}
.carriers-header h2 { color: var(--text-on-light); }
.carriers-header p { font-size: 1.05rem; color: var(--text-muted-light); max-width: 540px; margin: 16px auto 0; }

.carrier-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 40px;
}

.carrier-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--bg-white);
  border: 2px solid var(--border-light);
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-on-light);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.carrier-chip:hover {
  border-color: var(--cyan-dark);
  color: var(--cyan-dark);
  box-shadow: 0 4px 16px rgba(6,182,212,0.15);
}
.carrier-chip.active {
  background: var(--cyan-dark);
  border-color: var(--cyan-dark);
  color: #fff;
  box-shadow: 0 4px 16px rgba(2,132,199,0.35);
}
.carrier-chip .chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.6;
}

.carriers-pricing-note {
  max-width: 600px;
  margin: 0 auto;
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.carriers-pricing-note h3 { color: var(--text-on-light); margin-bottom: 10px; font-size: 1.05rem; }
.carriers-pricing-note p { font-size: 0.92rem; color: var(--text-muted-light); margin-bottom: 20px; }

/* ============================================================
   TRAINING SECTION (dark)
   ============================================================ */
.section-training {
  background: var(--bg-dark);
}

.training-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.training-content h2 { margin-bottom: 16px; }
.training-content .lead { font-size: 1.05rem; color: var(--text-muted-dark); margin-bottom: 32px; }

.training-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.training-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.training-item-dot {
  width: 8px;
  height: 8px;
  background: var(--cyan);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

.training-item p { font-size: 0.93rem; color: var(--text-muted-dark); }
.training-item strong { color: var(--text-on-dark); }

.training-card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.training-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: border-color var(--transition);
}
.training-card:hover { border-color: rgba(6,182,212,0.3); }
.training-card .icon-circle { flex-shrink: 0; }
.training-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.training-card p { font-size: 0.83rem; color: var(--text-muted-dark); }

/* ============================================================
   TRUST SECTION (light)
   ============================================================ */
.section-trust {
  background: var(--bg-light);
  color: var(--text-on-light);
}

.trust-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.trust-content h2 { color: var(--text-on-light); margin-bottom: 16px; }
.trust-content p { color: var(--text-muted-light); font-size: 1rem; margin-bottom: 24px; }

.trust-points {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-point-icon {
  width: 20px;
  height: 20px;
  background: rgba(6,182,212,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.trust-point-icon svg { width: 12px; height: 12px; color: var(--cyan-dark); }
.trust-point p { font-size: 0.93rem; color: var(--text-muted-light); }

.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-stat {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}
.trust-stat .stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan-dark);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
}
.trust-stat .stat-label {
  font-size: 0.83rem;
  color: var(--text-muted-light);
}

/* ============================================================
   FAQ SECTION (dark)
   ============================================================ */
.section-faq {
  background: var(--bg-card);
}

.faq-header {
  text-align: center;
  margin-bottom: 56px;
}
.faq-header h2 { margin-bottom: 12px; }
.faq-header p { font-size: 1.05rem; color: var(--text-muted-dark); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 8px;
  background: var(--bg-dark);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-on-dark);
  font-size: 0.98rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: background var(--transition);
}
.faq-question:hover { background: rgba(255,255,255,0.03); }

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  transition: transform 0.25s ease, background var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(6,182,212,0.15); color: var(--cyan); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.93rem;
  color: var(--text-muted-dark);
  line-height: 1.7;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.section-cta {
  background: linear-gradient(135deg, #0f1117 0%, #1a0e2e 50%, #0f1117 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.section-cta::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.section-cta h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.section-cta p { font-size: 1.1rem; color: var(--text-muted-dark); max-width: 520px; margin: 0 auto 40px; }
.section-cta .cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0a0c12;
  border-top: 1px solid rgba(45,49,72,0.5);
  padding: 48px 0 32px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo img { width: 28px; height: 28px; border-radius: 6px; }
.footer-tagline { font-size: 0.85rem; color: var(--text-muted-dark); line-height: 1.6; max-width: 220px; }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted-dark);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cyan); }

.footer-bottom {
  border-top: 1px solid rgba(45,49,72,0.4);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-copy { font-size: 0.8rem; color: #4b5563; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8rem; color: #4b5563; transition: color var(--transition); }
.footer-legal a:hover { color: var(--text-muted-dark); }

/* ============================================================
   FORMS (contact.html / onboarding.html)
   ============================================================ */
.form-page {
  min-height: 100vh;
  padding-top: 64px;
  background: var(--bg-dark);
}

.form-hero {
  padding: 64px 0 48px;
  text-align: center;
}
.form-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 14px; }
.form-hero p { font-size: 1.05rem; color: var(--text-muted-dark); max-width: 520px; margin: 0 auto; }

.form-body {
  padding-bottom: 96px;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.form-section-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan);
  margin-bottom: 20px;
  margin-top: 32px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-dark);
}
.form-section-title:first-child { margin-top: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group:last-child { margin-bottom: 0; }

label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-on-dark);
}
label .req { color: var(--cyan); margin-left: 2px; }
label .opt { color: var(--text-muted-dark); font-weight: 400; font-size: 0.8rem; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.93rem;
  color: var(--text-on-dark);
  font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
input::placeholder,
textarea::placeholder { color: #4b5563; }

input:focus,
select:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(6,182,212,0.1);
}

input.error,
select.error,
textarea.error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

.field-error {
  font-size: 0.8rem;
  color: #ef4444;
  display: none;
}
.field-error.show { display: block; }
.field-hint {
  font-size: 0.78rem;
  color: #6b7280;
  margin-top: 4px;
  display: block;
  line-height: 1.5;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
select option { background: var(--bg-card); }

textarea { resize: vertical; min-height: 100px; }

/* Checkbox groups */
.checkbox-group,
.radio-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.checkbox-row,
.radio-row {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.checkbox-row input[type="checkbox"],
.radio-row input[type="radio"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border-dark);
  border-radius: 4px;
  background: var(--bg-dark);
  accent-color: var(--cyan);
  cursor: pointer;
  flex-shrink: 0;
}
.checkbox-row span,
.radio-row span {
  font-size: 0.9rem;
  color: var(--text-on-dark);
}

/* Carrier chips in form */
.carrier-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.carrier-check-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border: 1.5px solid var(--border-dark);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.carrier-check-chip input[type="checkbox"] {
  width: 0; height: 0;
  opacity: 0;
  position: absolute;
}
.carrier-check-chip:has(input:checked) {
  background: rgba(6,182,212,0.12);
  border-color: var(--cyan);
  color: var(--cyan);
}
.carrier-check-chip:hover { border-color: var(--cyan); color: var(--cyan); }

/* Help chips */
.help-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.help-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted-dark);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}
.help-chip input[type="checkbox"] {
  width: 0; height: 0;
  opacity: 0;
  position: absolute;
}
.help-chip:has(input:checked) {
  background: rgba(139,92,246,0.12);
  border-color: var(--violet);
  color: var(--violet-light);
}
.help-chip:hover { border-color: var(--violet); color: var(--violet-light); }

/* Consent */
.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(6,182,212,0.05);
  border: 1px solid rgba(6,182,212,0.15);
  border-radius: var(--radius-md);
}
.consent-row input[type="checkbox"] {
  width: 18px; height: 18px;
  border: 1.5px solid var(--border-dark);
  border-radius: 4px;
  flex-shrink: 0;
  margin-top: 1px;
  accent-color: var(--cyan);
}
.consent-row span { font-size: 0.88rem; color: var(--text-muted-dark); line-height: 1.5; }

/* Form submit area */
.form-submit { margin-top: 32px; }

/* Error banner */
.error-banner {
  display: none;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #fca5a5;
  margin-bottom: 24px;
}
.error-banner.show { display: block; }

/* Honeypot — hidden */
.hp-field { display: none !important; position: absolute; left: -9999px; }

/* ============================================================
   THANK YOU PAGE
   ============================================================ */
.thankyou-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 64px 24px;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.thankyou-page::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(6,182,212,0.09) 0%, transparent 65%);
  pointer-events: none;
}

.checkmark-wrap {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: rgba(6,182,212,0.1);
  border: 2px solid rgba(6,182,212,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  animation: pop-in 0.5s cubic-bezier(0.18, 0.89, 0.32, 1.28) both;
}
@keyframes pop-in {
  0%   { transform: scale(0.5); opacity: 0; }
  100% { transform: scale(1);   opacity: 1; }
}

.checkmark-wrap svg { width: 44px; height: 44px; color: var(--cyan); }

.thankyou-page h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 14px; }
.thankyou-page .lead { font-size: 1.1rem; color: var(--text-muted-dark); max-width: 520px; margin: 0 auto 40px; }

.next-steps {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  max-width: 560px;
  width: 100%;
  text-align: left;
  margin: 0 auto 40px;
}
.next-steps h3 { font-size: 1rem; margin-bottom: 20px; color: var(--cyan); }
.next-steps ol {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.next-steps ol li {
  display: flex;
  gap: 14px;
  font-size: 0.93rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}
.next-steps ol li strong { color: var(--text-on-dark); }
.next-step-num {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(6,182,212,0.12);
  border: 1px solid rgba(6,182,212,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--cyan);
  flex-shrink: 0;
  margin-top: 1px;
}

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

/* ── RPS Callout ── */
.rps-callout {
  max-width: 860px;
  margin: 32px auto 0;
}
.rps-callout-inner {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--bg-white);
  border: 1.5px solid var(--cyan-dark);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(2,132,199,0.08);
}
.rps-callout-icon {
  width: 44px; height: 44px;
  background: rgba(2,132,199,0.1);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--cyan-dark);
  flex-shrink: 0;
}
.rps-callout-icon svg { width: 22px; height: 22px; }
.rps-callout-content h3 { font-size: 1rem; color: var(--text-on-light); margin-bottom: 8px; }
.rps-callout-content p  { font-size: 0.9rem; color: var(--text-muted-light); line-height: 1.7; }
.rps-callout-content strong { color: var(--cyan-dark); }

@media (max-width: 640px) {
  .rps-callout-inner { flex-direction: column; padding: 20px; }
  .carrier-chip { font-size: 0.82rem; padding: 10px 14px; }
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.animate-fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .solution-grid,
  .problem-grid    { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .how-steps       { grid-template-columns: 1fr; gap: 40px; }
  .how-steps::before { display: none; }
  .training-inner,
  .trust-inner     { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner    { grid-template-columns: 1fr 1fr; }
  .hero-rings      { display: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 640px)
   ============================================================ */
@media (max-width: 640px) {
  .section         { padding: 64px 0; }
  .section-sm      { padding: 48px 0; }

  .nav-links,
  .nav-cta         { display: none; }
  .nav-hamburger   { display: flex; }

  h1 { font-size: 2rem; }

  .hero-buttons { flex-direction: column; }
  .btn-lg       { padding: 14px 24px; }

  .problem-grid,
  .solution-grid   { grid-template-columns: 1fr; }
  .benefits-grid   { grid-template-columns: repeat(2, 1fr); }
  .form-row        { grid-template-columns: 1fr; }
  .form-card       { padding: 28px 20px; }
  .footer-inner    { grid-template-columns: 1fr; }
  .footer-bottom   { flex-direction: column; text-align: center; }
  .trust-stats     { grid-template-columns: 1fr 1fr; }
  .next-steps      { padding: 24px 20px; }
  .thankyou-buttons { flex-direction: column; align-items: center; }
  .cta-buttons     { flex-direction: column; align-items: center; }
}
