/* ============================================================
   CallSpring — Stylesheet
   Modern, grounded, conversion-focused. Mobile-first.
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  --navy:        #0C1B2A;
  --navy-2:      #112a40;
  --navy-3:      #1b3a56;
  --blue:        #1B79D6;
  --blue-dark:   #1463b3;
  --aqua:        #4FD1D9;
  --aqua-soft:   #c7f0f3;
  --cta:         #FF7A3D;
  --cta-dark:    #ed6526;
  --ink:         #14202b;
  --ink-soft:    #4a5b6b;
  --ink-faint:   #7e8d9b;
  --bg:          #ffffff;
  --bg-soft:     #f4f8fb;
  --bg-aqua:     #eef9fa;
  --line:        #e3eaf0;
  --line-navy:   rgba(255, 255, 255, 0.12);

  --radius:      14px;
  --radius-lg:   20px;
  --shadow-sm:   0 2px 10px rgba(12, 27, 42, 0.06);
  --shadow:      0 14px 38px rgba(12, 27, 42, 0.10);
  --shadow-lg:   0 26px 60px rgba(12, 27, 42, 0.18);

  --maxw:        1180px;
  --font:        'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Fira Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 16px; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow { max-width: 820px; }

.section { padding: 96px 0; }
.section-soft { background: var(--bg-soft); }
.section-navy { background: var(--navy); color: #eaf1f7; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.18; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.logo, .logo-text { font-family: var(--font-display); }
.section-navy h1, .section-navy h2, .section-navy h3, .section-navy h4 { color: #ffffff; }

h2 { font-size: clamp(1.85rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.22rem; font-weight: 700; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 16px;
}
.eyebrow-dark { color: var(--blue); }

.text-aqua { color: var(--aqua); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-lead { color: var(--ink-soft); font-size: 1.08rem; margin-top: 18px; }
.section-lead-light { color: #b9c8d6; }
.section-lead-strong { color: var(--ink); font-weight: 700; margin-top: 12px; }

/* ---------- Icons ---------- */
.ico {
  width: 20px; height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 14px 26px;
  border-radius: 999px;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
  text-align: center;
}
.btn:active { transform: translateY(1px); }
.btn-sm  { padding: 10px 18px; font-size: 0.86rem; }
.btn-lg  { padding: 17px 34px; font-size: 1.04rem; }
.btn-block { display: flex; width: 100%; }

.btn-cta {
  background: var(--cta);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 122, 61, 0.32);
}
.btn-cta:hover { background: var(--cta-dark); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255, 122, 61, 0.4); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }

.btn-outline {
  background: #fff;
  color: var(--navy);
  border: 1.6px solid var(--line);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 120px;
  gap: 24px;
}
.logo-mark img { display: block; }
.logo {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 800;
  font-size: 1.86rem;
  letter-spacing: -0.03em;
  line-height: 1;
}
.logo-mark { display: flex; flex: none; }
.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.logo-text {
  display: block;
  line-height: 1;
  letter-spacing: 0.25px;
  transform: scale(1.21);
  transform-origin: left bottom;
}
.logo-text span { color: var(--blue); }
.logo-spring { color: var(--aqua) !important; }
.logo-tagline {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.logo-light { color: #fff; }
.logo-light .logo-text span { color: var(--aqua); }
.logo-light .logo-tagline { color: var(--aqua); }

.main-nav { display: flex; gap: 30px; }
.main-nav a {
  font-size: 0.96rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 4px 0;
  transition: color 0.15s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}
.main-nav a:hover { color: var(--navy); }
.main-nav a:hover::after { width: 100%; }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px 24px 24px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 600;
  color: var(--ink-soft);
  padding: 12px 4px;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border: none; margin-top: 10px; }
/* Mobile nav CTA — white text on orange button (overrides .mobile-nav a color) */
.mobile-nav a.btn-cta,
.mobile-nav a.btn-cta:hover { color: #fff; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  color: #eaf1f7;
  padding: 84px 0 96px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(620px 420px at 84% 12%, rgba(79, 209, 217, 0.22), transparent 70%),
    radial-gradient(560px 460px at 8% 90%, rgba(27, 121, 214, 0.28), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-size: clamp(2.3rem, 4.7vw, 3.5rem);
  color: #fff;
  margin-bottom: 22px;
}
.hero-sub { font-size: 1.18rem; color: #cdd9e4; margin-bottom: 16px; }
.hero-support {
  font-size: 0.98rem;
  color: #93a6b7;
  border-left: 3px solid var(--aqua);
  padding-left: 16px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}
.hero-trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #b6c5d3;
}
.hero-trust .ico { color: var(--aqua); width: 17px; height: 17px; }

/* Hero flow card */
.flow-card {
  background: linear-gradient(165deg, #15324c, #0e2236);
  border: 1px solid var(--line-navy);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: var(--shadow-lg);
}
.flow-card-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aqua);
  margin-bottom: 18px;
}
.flow-steps { display: flex; flex-direction: column; align-items: stretch; }
.flow-steps li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-navy);
  border-radius: 11px;
  padding: 12px 16px;
  font-weight: 600;
  color: #e7eef4;
  font-size: 0.98rem;
}
.flow-steps .flow-ico { font-size: 1.15rem; }
.flow-steps .flow-arrow {
  background: none;
  border: none;
  padding: 3px 0;
  justify-content: center;
  color: var(--aqua);
  font-size: 1rem;
}
.flow-steps .flow-final {
  background: rgba(79, 209, 217, 0.16);
  border-color: rgba(79, 209, 217, 0.5);
  color: #fff;
}

/* ============================================================
   PROBLEM
   ============================================================ */
.pain-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pain-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #d2e3ef; }
.pain-ico {
  font-size: 1.7rem;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-aqua);
  border-radius: 12px;
  margin-bottom: 16px;
}
.pain-card h3 { margin-bottom: 8px; }
.pain-card p { color: var(--ink-soft); font-size: 0.97rem; }

/* ============================================================
   SOLUTION — system loop
   ============================================================ */
.system-loop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 8px;
  margin-top: 12px;
}
.loop-node {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-navy);
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 1rem;
  color: #e7eef4;
}
.loop-node-accent {
  background: var(--aqua);
  border-color: var(--aqua);
  color: var(--navy);
}
.loop-sep { color: var(--aqua); font-weight: 800; font-size: 1.1rem; }

/* Animated cycling loop nodes */
.system-loop-animated .loop-node {
  transition: background 0.4s ease, border-color 0.4s ease, color 0.4s ease, transform 0.4s ease, box-shadow 0.4s ease;
  animation: loopGlow 7s infinite;
}
.system-loop-animated .loop-node:nth-child(1)  { animation-delay: 0s; }
.system-loop-animated .loop-node:nth-child(3)  { animation-delay: 1s; }
.system-loop-animated .loop-node:nth-child(5)  { animation-delay: 2s; }
.system-loop-animated .loop-node:nth-child(7)  { animation-delay: 3s; }
.system-loop-animated .loop-node:nth-child(9)  { animation-delay: 4s; }
.system-loop-animated .loop-node:nth-child(11) { animation-delay: 5s; }
.system-loop-animated .loop-node:nth-child(13) { animation-delay: 6s; }

@keyframes loopGlow {
  0%, 13% {
    background: var(--aqua);
    border-color: var(--aqua);
    color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(79, 209, 217, 0.35);
  }
  20%, 100% {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--line-navy);
    color: #e7eef4;
    transform: translateY(0);
    box-shadow: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .system-loop-animated .loop-node { animation: none; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: #cfe2f0; }
.service-ico {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--blue), var(--aqua));
  border-radius: 12px;
  margin-bottom: 16px;
}
.service-ico svg {
  width: 26px; height: 26px;
  fill: none;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card h3 { margin-bottom: 10px; }
.svc-what { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 10px; }
.svc-benefit {
  color: var(--blue-dark);
  font-size: 0.92rem;
  font-weight: 700;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
}

/* ============================================================
   TRADE CARDS
   ============================================================ */
.trade-cards-grid { gap: 28px; }
.trade-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all 0.24s ease;
  position: relative;
  overflow: hidden;
}
.trade-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--aqua));
}
.trade-card:hover {
  border-color: var(--aqua);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}
.trade-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.trade-ico {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-soft);
  border-radius: 14px;
  flex: none;
}
.trade-card h3 {
  font-size: 1.3rem;
  margin: 0;
}
.trade-card p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  flex: 1;
  margin-bottom: 16px;
}
.trade-cta {
  display: inline-block;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.95rem;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta-final {
  text-align: center;
  padding: 56px 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.cta-final h2 {
  margin-bottom: 12px;
  font-size: clamp(1.7rem, 3vw, 2.2rem);
}
.cta-final p {
  color: var(--ink-soft);
  font-size: 1.08rem;
  margin-bottom: 32px;
}
.cta-final-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FLAGSHIP OFFER
   ============================================================ */
.offer-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow);
}
.offer-head .section-lead { margin-top: 16px; }
.offer-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}
.offer-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
}
.offer-list .ico { color: var(--blue); margin-top: 2px; }

/* ============================================================
   REVENUE LEAK AUDIT
   ============================================================ */
.audit-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.audit-copy h2 { margin-bottom: 4px; }
.audit-copy .btn { margin-top: 26px; }
.audit-card {
  background: linear-gradient(165deg, #15324c, #0e2236);
  border: 1px solid var(--line-navy);
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-lg);
}
.audit-card h3 { color: #fff; margin-bottom: 18px; }
.audit-list { display: flex; flex-direction: column; gap: 13px; }
.audit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #d4e0ea;
}
.audit-list .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--aqua);
  flex: none;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.step-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 18px;
}
.step-card h3 { margin-bottom: 8px; }
.step-card p { color: var(--ink-soft); font-size: 0.96rem; }

/* ============================================================
   WHY CALLSPRING
   ============================================================ */
.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.why-list {
  display: grid;
  gap: 14px;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 15px 18px;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.why-list .ico { color: #fff; background: var(--blue); border-radius: 6px; padding: 2px; width: 22px; height: 22px; margin-top: 1px; }

/* ============================================================
   USE CASES
   ============================================================ */
.usecase-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.usecase-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.usecase-card h3 { margin-bottom: 16px; }
.uc-row { display: flex; gap: 12px; margin-bottom: 12px; }
.uc-row:last-child { margin-bottom: 0; }
.uc-row p { font-size: 0.95rem; color: var(--ink-soft); }
.uc-tag {
  flex: none;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 6px;
  height: fit-content;
  white-space: nowrap;
}
.uc-problem  { background: #fdece2; color: #b3531f; }
.uc-response { background: #e4f1fc; color: var(--blue-dark); }
.uc-outcome  { background: #e2f6ee; color: #1d8a5b; }

/* ============================================================
   PRICING
   ============================================================ */
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card-featured {
  border-color: var(--blue);
  border-width: 2px;
  box-shadow: var(--shadow);
}
.price-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.32rem; margin-bottom: 6px; }
.price-tag { color: var(--blue); font-weight: 800; font-size: 1.02rem; margin-bottom: 10px; }
.price-desc { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 20px; }
.price-features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; }
.price-features .ico { color: var(--blue); width: 18px; height: 18px; }
.price-card .btn { margin-top: auto; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 700;
  font-size: 1.04rem;
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  flex: none;
  position: relative;
  width: 18px; height: 18px;
}
.faq-icon::before, .faq-icon::after {
  content: "";
  position: absolute;
  background: var(--blue);
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.2s ease;
}
.faq-icon::before { top: 8px; left: 0; width: 18px; height: 2.6px; }
.faq-icon::after  { left: 8px; top: 0; width: 2.6px; height: 18px; }
.faq-item[open] .faq-icon::after { transform: rotate(90deg); opacity: 0; }
.faq-answer { padding: 0 22px 20px; }
.faq-answer p { color: var(--ink-soft); font-size: 0.99rem; }

/* ============================================================
   BOOKING / LEAD FORM
   ============================================================ */
.book-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.form-card, .embed-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.form-card h3, .embed-card h3 { font-size: 1.3rem; margin-bottom: 6px; }
.form-sub { color: var(--ink-soft); font-size: 0.96rem; margin-bottom: 22px; }

.lead-form { display: flex; flex-direction: column; gap: 16px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 0.86rem; font-weight: 700; color: var(--ink); }
.req { color: var(--cta); }
.field input, .field select {
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: #fbfdfe;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27, 121, 214, 0.14);
}
.field input.invalid, .field select.invalid {
  border-color: #e0573a;
  box-shadow: 0 0 0 3px rgba(224, 87, 58, 0.13);
}
.form-fineprint { font-size: 0.82rem; color: var(--ink-faint); text-align: center; }

/* SMS opt-in consent (required for Toll-Free verification) */
.field-consent {
  background: #f5f9fc;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
}
.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.5;
  cursor: pointer;
}
.consent-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--cta);
  cursor: pointer;
}
.consent-label a {
  color: var(--blue);
  text-decoration: underline;
}
.consent-label strong { color: var(--ink); }
.form-privacy-note {
  font-size: 0.78rem;
  color: var(--ink-faint);
  text-align: left;
  margin-top: -6px;
  line-height: 1.5;
}
.form-success {
  background: #e2f6ee;
  border: 1px solid #b6e4cd;
  color: #1d8a5b;
  font-weight: 600;
  font-size: 0.94rem;
  border-radius: 10px;
  padding: 14px 16px;
  text-align: center;
}

.book-side { display: flex; flex-direction: column; gap: 24px; }
.embed-card p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 16px; }
.placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 32px 20px;
  background: var(--bg-soft);
}
.placeholder-video { aspect-ratio: 16 / 9; justify-content: center; }
.ph-ico { font-size: 1.8rem; }
.placeholder strong { color: var(--navy); font-size: 1rem; }
.ph-note { font-size: 0.84rem; color: var(--ink-faint); max-width: 260px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--navy); color: #aebccb; padding: 64px 0 28px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
}
.footer-brand .logo { margin-bottom: 14px; }
.footer-tagline { color: var(--aqua); font-weight: 700; margin-bottom: 14px; }
.footer-promise { font-size: 0.93rem; color: #8497a8; max-width: 420px; }

/* Emphasized contact block — moved up directly under the tagline */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.footer-contact p { margin: 0; }
.footer-contact a {
  display: inline-block;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.15s ease;
}
.footer-contact a:hover { color: var(--aqua); }
.footer-contact-phone a {
  font-size: 1.32rem;
  letter-spacing: 0.01em;
}
.footer-contact-email { margin-top: -10px; }
.footer-contact-email a { color: #ffffff !important; }
.footer-contact-email a:hover { color: var(--aqua); }
.footer-icon {
  display: inline !important;
  vertical-align: -2px;
  margin-right: 6px;
  flex-shrink: 0;
}
.footer-contact a .footer-icon { color: var(--aqua); }

/* Business address line — required for toll-free carrier verification */
.footer-address {
  display: block;
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 500;
  color: #8497a8;
  letter-spacing: 0.02em;
  margin-top: 10px;
}

/* Compact top section used on Privacy / Terms / Thank-you pages */
.footer-simple-top {
  padding-bottom: 12px;
  margin-bottom: 8px;
}
.footer-simple-top .footer-tagline { margin-bottom: 12px; }
.footer-simple-top .footer-contact { margin-bottom: 0; }

/* ============================================================
   ABOUT THE FOUNDER PAGE
   ============================================================ */
.page-hero-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 720px;
  margin-top: 18px;
  line-height: 1.6;
}

.founder-section { padding: 64px 0 88px; }

.founder-layout {
  display: grid;
  grid-template-columns: minmax(260px, 320px) 1fr;
  gap: 56px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.founder-photo {
  position: sticky;
  top: 140px;
}
.founder-img,
.founder-photo .photo-placeholder {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.founder-photo .photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--aqua);
}
.photo-monogram {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 4px 18px rgba(79, 209, 217, 0.45);
}
.founder-name {
  margin-top: 18px;
  font-weight: 800;
  font-size: 1.12rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.founder-title {
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

.founder-bio { color: var(--ink-soft); }
.founder-bio p {
  font-size: 1.04rem;
  line-height: 1.75;
  margin-bottom: 20px;
}
.founder-lead {
  font-size: 1.14rem !important;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px !important;
}
.founder-bio strong { color: var(--ink); font-weight: 700; }

.founder-callout {
  font-size: 1.22rem !important;
  font-weight: 700;
  color: var(--ink);
  border-left: 4px solid var(--cta);
  padding: 8px 0 8px 20px;
  margin: 32px 0 28px !important;
  line-height: 1.4 !important;
}

.founder-section-h {
  margin-top: 44px;
  margin-bottom: 16px;
  font-size: 1.24rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.founder-list {
  margin: 0 0 28px 0;
  padding: 0;
  list-style: none;
}
.founder-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
.founder-list li:last-child { border-bottom: none; }
.founder-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 10px;
  color: var(--cta);
  font-weight: 800;
  font-size: 1rem;
}

.founder-signature {
  margin-top: 28px !important;
  font-style: italic;
  color: var(--ink);
  font-weight: 600;
}

.founder-cta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.founder-cta .btn { min-width: 240px; }

@media (max-width: 860px) {
  .founder-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .founder-photo {
    position: static;
    max-width: 280px;
    margin: 0 auto;
    text-align: center;
  }
  .founder-section { padding: 48px 0 72px; }
}
@media (max-width: 480px) {
  .founder-callout { font-size: 1.1rem !important; padding-left: 16px; }
  .founder-cta .btn { width: 100%; min-width: 0; }
}

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col h4 { color: #fff; font-size: 0.96rem; margin-bottom: 14px; }
.footer-col a {
  display: block;
  font-size: 0.92rem;
  color: #9aabbb;
  padding: 5px 0;
  transition: color 0.15s ease;
}
.footer-col a:hover { color: var(--aqua); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 40px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line-navy);
  font-size: 0.84rem;
  color: #748595;
}
.footer-bottom-left, .footer-bottom-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 540px;
  min-width: 0;
  flex: 1 1 auto;
}
.footer-bottom-left { text-align: left; }
.footer-bottom-right { text-align: right; flex: 0 0 auto; }
.footer-bottom-left p, .footer-bottom-right p {
  margin: 0;
}
.footer-bottom-left .footer-promise {
  font-size: 0.92rem;
  color: #8497a8;
  max-width: 540px;
  margin: 0;
}
.footer-bottom-right a {
  color: #748595;
  text-decoration: none;
}
.footer-bottom-right a:hover {
  color: var(--ink);
  text-decoration: underline;
}

/* ============================================================
   LEGAL + THANK-YOU PAGES
   ============================================================ */
.page-hero {
  background: var(--navy);
  color: #eaf1f7;
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p { color: #b9c8d6; margin-top: 12px; }

.legal { padding: 64px 0 96px; }
.legal h2 { font-size: 1.4rem; margin: 36px 0 12px; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { list-style: disc; padding-left: 22px; }
.legal a { color: var(--blue); font-weight: 600; }
.legal .updated { color: var(--ink-faint); font-size: 0.9rem; font-style: italic; }

.thanks {
  padding: 96px 0;
  text-align: center;
}
.thanks .check {
  width: 76px; height: 76px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #e2f6ee;
  display: flex; align-items: center; justify-content: center;
}
.thanks .check svg {
  width: 38px; height: 38px;
  fill: none; stroke: #1d8a5b; stroke-width: 3;
  stroke-linecap: round; stroke-linejoin: round;
}
.thanks h1 { font-size: clamp(2rem, 4vw, 2.7rem); }
.thanks p { color: var(--ink-soft); max-width: 540px; margin: 16px auto 0; }
.thanks .btn { margin-top: 30px; }

/* ============================================================
   STICKY MOBILE CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  left: 16px; right: 16px;
  bottom: 16px;
  z-index: 90;
  background: var(--cta);
  color: #fff;
  font-weight: 800;
  font-size: 0.98rem;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(255, 122, 61, 0.45);
}

/* ============================================================
   SCROLL REVEAL ANIMATION
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-7 { grid-template-columns: repeat(4, 1fr); }
  .offer-wrap, .audit-wrap, .why-wrap, .book-wrap { grid-template-columns: 1fr; }
  .offer-wrap { padding: 36px; }
}

@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .container { padding: 0 18px; }

  .main-nav { display: none; }
  .header-actions .btn-cta { display: none; }
  .nav-toggle { display: flex; }

  .grid-2, .grid-3, .grid-4, .grid-7 { grid-template-columns: 1fr; }
  .loop-arrow { display: none; }
  .trade-card-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cta-final-actions { flex-direction: column; }
  .cta-final-actions .btn { width: 100%; }

  .hero { padding: 56px 0 76px; }
  .hero-actions .btn { width: 100%; }
  .field-row { grid-template-columns: 1fr; }
  .offer-list { grid-template-columns: 1fr; }
  .offer-wrap, .form-card, .embed-card, .audit-card { padding: 26px 22px; }

  /* Mobile: stack the About CallSpring system loop vertically with down-arrows */
  .system-loop {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 8px;
  }
  .system-loop .loop-node {
    width: auto;
    min-width: 180px;
    text-align: center;
  }
  .system-loop .loop-sep {
    display: block;
    transform: rotate(90deg);
    font-size: 1.4rem;
    line-height: 1;
    margin: 2px 0;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: stretch; }
  .footer-bottom-right { text-align: left; margin-left: 0; }

  .sticky-cta { display: block; }
  /* keep content clear of the sticky bar */
  .site-footer { padding-bottom: 92px; }
}

@media (max-width: 420px) {
  .footer-cols { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .pain-card, .service-card, .usecase-card, .price-card { transition: none; }
}
