/* ===== Nickell AI — Shared Styles ===== */

:root {
  --cream: #faf8f4;
  --cream-deep: #f0efe9;
  --white: #ffffff;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --gray: #6b6b6b;
  --gray-light: #999999;
  --border: #e6e0d4;
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-tint: #eafcf1;
  --blue: #2563eb;
  --blue-tint: #eaf1ff;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 10px 28px rgba(0,0,0,0.07);
  --shadow-lift: 0 16px 34px rgba(0,0,0,0.13);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Eyebrow tag ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.eyebrow.blue { color: var(--blue); background: var(--blue-tint); }
.eyebrow.green { color: var(--green-dark); background: var(--green-tint); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 15.5px;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn-primary { background: var(--ink); color: var(--white); }
.btn-primary:hover { background: var(--blue); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(37,99,235,0.3); background: #1d4ed8; }
.btn-green { background: var(--green); color: #0b1f13; }
.btn-green:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(34,197,94,0.35); }
.btn-outline { background: var(--white); color: var(--ink); border: 2px solid var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 500;
  background: rgba(250,248,244,0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -0.02em;
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.logo img {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: block;
}
.footer-brand .logo { color: var(--white); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.nav-links .nav-link {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 13.5px;
  font-family: inherit;
  white-space: nowrap;
  cursor: pointer;
}
.nav-links .nav-link:hover { color: var(--ink); }
.nav-links .nav-link.active { color: var(--ink); }

/* ---------- Services dropdown ---------- */
.nav-dropdown { position: relative; }
.dropdown-trigger { display: inline-flex; align-items: center; gap: 4px; cursor: pointer; }
.dropdown-caret { font-size: 10px; transition: transform 0.15s ease; }
.nav-dropdown.open .dropdown-caret,
.nav-dropdown:hover .dropdown-caret { transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lift);
  padding: 8px;
  min-width: 190px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
  z-index: 600;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 13.5px;
  padding: 10px 12px;
  border-radius: 10px;
}
.dropdown-item:hover { background: var(--cream-deep); }
.dropdown-item .dot { width: 8px; height: 8px; border-radius: 999px; flex: 0 0 auto; }
.dropdown-item.blue .dot { background: var(--blue); }
.dropdown-item.green .dot { background: var(--green); }
.nav-cta-group { display: flex; align-items: center; gap: 10px; }
.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 999px;
  border: 2px solid var(--border);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.btn-nav-call:hover { border-color: var(--ink); transform: translateY(-1px); }
.btn-nav-call .phone-icon { color: var(--green); font-size: 15px; }
@media (max-width: 1040px) {
  .nav-link { display: none; }
  .btn-nav-call span.call-label { display: none; }
}

/* ---------- Section basics ---------- */
section { padding: 88px 0; }
.section-white { background: var(--white); }
.section-cream { background: var(--cream); }
.section-dark { background: var(--ink); color: var(--white); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-head h2 {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.section-head p { font-size: 16px; color: var(--gray); margin: 0; }

/* ---------- Hero (dramatic dark) ---------- */
.hero {
  position: relative;
  background: #0a0c10;
  color: var(--white);
  padding: 120px 0 100px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(34,197,94,0.16), transparent 45%),
    radial-gradient(circle at 82% 75%, rgba(37,99,235,0.16), transparent 50%);
  z-index: -1;
}
.hero .eyebrow {
  background: rgba(34,197,94,0.14);
  color: #4ade80;
}
.hero h1 {
  font-size: 66px;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.03;
  margin: 0 0 22px;
  color: var(--white);
}
.hero h1 .accent { color: var(--green); }
.hero .sub {
  font-size: 18.5px;
  color: #b9bcc4;
  max-width: 580px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.hero .hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero .btn-outline-dark {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
}
.hero .btn-outline-dark:hover { border-color: var(--white); transform: translateY(-2px); }

@media (max-width: 700px) {
  .hero h1 { font-size: 40px; }
  .hero { padding: 90px 0 70px; }
}

/* Live call visual */
.hero-visual { margin-top: 70px; display: flex; justify-content: center; }
.live-call-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  padding: 30px 30px 26px;
  backdrop-filter: blur(6px);
  text-align: left;
}
.live-call-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.live-call-badge { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 700; color: #4ade80; }
.live-dot-hero { width: 8px; height: 8px; border-radius: 999px; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.6); animation: pulseDot 1.6s infinite; }
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
.live-call-answered { font-size: 12px; color: #888; }

.ring-phone-wrap { display: flex; align-items: center; justify-content: center; margin: 6px 0 24px; position: relative; height: 90px; }
.ring-pulse {
  position: absolute;
  width: 70px; height: 70px;
  border-radius: 999px;
  border: 2px solid rgba(34,197,94,0.5);
  animation: ringExpand 2.2s ease-out infinite;
}
.ring-pulse.delay { animation-delay: 0.7s; }
.ring-pulse.delay2 { animation-delay: 1.4s; }
@keyframes ringExpand {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(2.4); opacity: 0; }
}
.ring-phone-center {
  position: relative;
  width: 66px; height: 66px;
  border-radius: 999px;
  background: var(--ink);
  color: #0b1f13;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  z-index: 2;
  overflow: hidden;
}
.ring-logo { width: 42px; height: 42px; object-fit: contain; border-radius: 10px; }

.hero-ticker { min-height: 22px; text-align: center; font-size: 13.5px; font-weight: 600; color: #d7d9de; margin-bottom: 20px; }
.hero-ticker .cursor { display: inline-block; width: 1px; background: #4ade80; margin-left: 2px; animation: blink 1s step-end infinite; }
@keyframes blink { 50% { opacity: 0; } }

.live-stats-row { display: flex; justify-content: space-between; border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px; }
.live-stat { text-align: center; flex: 1; }
.live-stat .num { font-size: 19px; font-weight: 800; color: var(--white); }
.live-stat .lbl { font-size: 10.5px; color: #888; text-transform: uppercase; letter-spacing: 0.05em; margin-top: 2px; }

/* ---------- Value prop cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.value-card {
  background: var(--cream-deep);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.value-card .check {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 15px;
}
.value-card span.label { font-weight: 700; font-size: 15px; }

/* ---------- Handles Every Call ---------- */
.hec-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 860px) { .hec-grid { grid-template-columns: 1fr; } }
.hec-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-soft);
}
.hec-card h3 { font-size: 21px; font-weight: 800; margin: 0 0 10px; }
.hec-card p { font-size: 14.5px; color: var(--gray); line-height: 1.6; margin: 0 0 26px; max-width: 420px; }
.hec-visual { flex: 1; position: relative; display: flex; align-items: center; justify-content: center; }

.appt-stack { position: relative; width: 100%; max-width: 320px; height: 210px; }
.appt-card { position: absolute; width: 260px; border-radius: 14px; box-shadow: 0 10px 24px rgba(0,0,0,0.08); background: var(--white); overflow: hidden; }
.appt-card.back { transform: rotate(6deg); right: 0; top: 10px; opacity: 0.85; }
.appt-card.front { transform: rotate(-4deg); left: 0; top: 0; }
.appt-row { padding: 12px 16px; border-left: 4px solid; }
.appt-row + .appt-row { border-top: 1px solid #eee; }
.appt-row .time { font-size: 11px; font-weight: 700; opacity: 0.7; }
.appt-row .what { font-size: 13.5px; font-weight: 800; }
.c-blue { border-color: var(--blue); background: var(--blue-tint); color: #1e3a68; }
.c-peach { border-color: #f59e0b; background: #fff4e5; color: #7a4a00; }
.c-pink { border-color: #ef4444; background: #fdeeee; color: #7a1f1f; }

.chat { width: 100%; max-width: 340px; display: flex; flex-direction: column; gap: 10px; }
.chat-row { display: flex; align-items: center; gap: 8px; }
.chat-row.right { justify-content: flex-end; }
.avatar { width: 28px; height: 28px; border-radius: 999px; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; font-size: 13px; flex: 0 0 auto; }
.avatar.dark { background: var(--ink); color: var(--blue); }
.bubble { padding: 9px 14px; border-radius: 14px; font-size: 13px; font-weight: 600; }
.bubble.gray { background: var(--cream-deep); color: #333; }
.bubble.black { background: var(--ink); color: #fff; }

.cluster { position: relative; width: 220px; height: 220px; }
.ring { position: absolute; border-radius: 999px; border: 1px solid #dddddd; }
.ring.r1 { inset: 0; } .ring.r2 { inset: 30px; } .ring.r3 { inset: 60px; }
.node { position: absolute; width: 34px; height: 34px; border-radius: 999px; display: flex; align-items: center; justify-content: center; font-size: 15px; color: #fff; font-weight: 800; box-shadow: 0 4px 10px rgba(0,0,0,0.15); }
.node.center { width: 56px; height: 56px; background: var(--ink); color: var(--blue); font-size: 22px; top: 82px; left: 82px; overflow: hidden; }
.node-logo { width: 34px; height: 34px; object-fit: contain; }
.node.n1 { background: var(--blue); top: 4px; left: 90px; }
.node.n2 { background: #f59e0b; top: 90px; left: 4px; }
.node.n3 { background: #ef4444; top: 90px; left: 176px; }
.node.n4 { background: var(--green); top: 176px; left: 90px; }

.stat-card { width: 100%; max-width: 300px; background: var(--white); border-radius: 14px; box-shadow: 0 10px 24px rgba(0,0,0,0.08); padding: 20px; }
.stat-label { font-size: 12px; color: #888; font-weight: 700; margin-bottom: 6px; }
.stat-number { font-size: 30px; font-weight: 900; margin-bottom: 14px; }
.stat-bars { display: flex; align-items: flex-end; gap: 6px; height: 50px; }
.stat-bars div { flex: 1; background: var(--ink); border-radius: 4px 4px 0 0; }

/* ---------- See It In Action full section ---------- */
.action-section {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 70px 40px;
  text-align: center;
}
.action-section h2 { font-size: 34px; font-weight: 900; margin: 0 0 14px; }
.action-section p { color: #cfcfcf; font-size: 16.5px; line-height: 1.6; max-width: 560px; margin: 0 auto 30px; }
.action-number { font-size: 30px; font-weight: 800; margin-bottom: 22px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.action-number .phone-icon { color: var(--green); font-size: 26px; }
.action-disclaimer { font-size: 13px; color: #999; margin-top: 18px; }

/* ---------- Included features ---------- */
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover { background: var(--ink); transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.feature-card .check { flex: 0 0 auto; width: 28px; height: 28px; border-radius: 999px; background: var(--green); color: #ffffff; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; }
.feature-card span.label { font-weight: 700; font-size: 14.5px; transition: color 0.18s ease; }
.feature-card:hover span.label { color: var(--white); }

/* ---------- Industries flip cards ---------- */
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) { .industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industries-grid { grid-template-columns: 1fr; } }
.flip { perspective: 1000px; height: 220px; }
.flip-inner { position: relative; width: 100%; height: 100%; transition: transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1); transform-style: preserve-3d; cursor: pointer; }
.flip:hover .flip-inner, .flip.flipped .flip-inner { transform: rotateY(180deg) scale(1.02); }
.flip-face { position: absolute; inset: 0; backface-visibility: hidden; border-radius: 22px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; box-shadow: 0 6px 18px rgba(0,0,0,0.06); }
.flip-front { background: var(--white); border: 1px solid var(--border); }
.flip-front .icon-wrap { width: 60px; height: 60px; border-radius: 999px; background: var(--blue-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 28px; }
.flip-front h3 { font-size: 15.5px; font-weight: 800; margin: 0; text-align: center; }
.flip-front .hint { font-size: 11px; color: var(--gray-light); margin-top: 8px; font-weight: 600; }
.flip-back { background: var(--blue-tint); border: 1px solid #d9e6ff; transform: rotateY(180deg); align-items: flex-start; justify-content: center; }
.flip-back h4 { color: var(--blue); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 10px; }
.flip-back ul { margin: 0; padding: 0; list-style: none; width: 100%; }
.flip-back li { color: #1e3a68; font-size: 13px; font-weight: 600; line-height: 1.75; padding-left: 16px; position: relative; }
.flip-back li::after { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 999px; background: var(--blue); }

/* ---------- Done for you ---------- */
.dfy-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 24px; text-align: left; }
@media (max-width: 860px) { .dfy-layout { grid-template-columns: 1fr; } }
.dfy-steps { display: flex; flex-direction: column; gap: 16px; }
.dfy-step { background: var(--cream-deep); border-radius: var(--radius-md); padding: 22px 24px; cursor: pointer; position: relative; transition: background 0.2s ease, box-shadow 0.2s ease; }
.dfy-step.active { background: var(--white); border: 1px solid var(--border); box-shadow: var(--shadow-soft); }
.dfy-step.active::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; border-radius: var(--radius-md) var(--radius-md) 0 0; background: var(--blue); }
.dfy-step h3 { font-size: 17px; font-weight: 800; margin: 0 0 6px; }
.dfy-step p { font-size: 14px; color: var(--gray); line-height: 1.55; margin: 0; }

.dfy-panel-wrap { position: relative; min-height: 250px; }
.dfy-panel { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-lift); padding: 28px 30px; display: none; animation: fadeUp 0.25s ease; }
.dfy-panel.active { display: block; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.dfy-panel-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid #eee; margin-bottom: 20px; }
.dfy-panel-title { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 16px; }
.dfy-panel-title .icn { width: 32px; height: 32px; border-radius: 9px; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; font-size: 15px; }
.live-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 700; color: var(--green-dark); background: var(--green-tint); padding: 5px 12px; border-radius: 999px; }
.live-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--green); }
.sync-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; color: var(--blue); background: var(--blue-tint); padding: 4px 10px; border-radius: 999px; }
.line-row { background: var(--cream); border-radius: 12px; padding: 16px 18px; display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.line-label { font-size: 12px; color: #888; margin-bottom: 4px; }
.line-number { font-size: 20px; font-weight: 800; }
.line-value { font-size: 15px; font-weight: 700; }
.toggle { width: 42px; height: 24px; border-radius: 999px; background: var(--green); position: relative; flex: 0 0 auto; }
.toggle::after { content: ""; position: absolute; top: 3px; right: 3px; width: 18px; height: 18px; border-radius: 999px; background: #fff; }
.forward-row { display: flex; align-items: center; gap: 12px; }
.forward-icon { width: 40px; height: 40px; border-radius: 999px; background: var(--ink); color: var(--green); display: flex; align-items: center; justify-content: center; font-size: 17px; }
.forward-title { font-weight: 800; font-size: 14.5px; }
.forward-sub { font-size: 13px; color: #888; }
.greeting-box { background: var(--cream); border-radius: 12px; padding: 16px 18px; font-size: 13.5px; color: #444; line-height: 1.6; margin-bottom: 14px; font-style: italic; }

/* ---------- Pricing clarity ---------- */
.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: var(--shadow-soft);
}
.pricing-card p { font-size: 16px; color: var(--gray); line-height: 1.65; margin: 0 0 30px; }

/* ---------- Booking ---------- */
.booking-embed { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-soft); border: 1px solid var(--border); }
.booking-embed iframe { width: 100%; height: 680px; border: none; display: block; }

/* ---------- Inline calculator ---------- */
.calc-inline-card {
  position: relative;
  background: #0a0c10;
  border-radius: var(--radius-lg);
  padding: 56px 50px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 30px 70px rgba(0,0,0,0.35);
}
.calc-inline-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(37,99,235,0.22), transparent 45%),
    radial-gradient(circle at 88% 88%, rgba(34,197,94,0.2), transparent 50%);
  z-index: -1;
}
.calc-inline-head { text-align: center; max-width: 620px; margin: 0 auto 40px; }
.calc-inline-head h2 { font-size: 36px; font-weight: 900; letter-spacing: -0.02em; margin: 0 0 12px; color: var(--white); }
.calc-inline-head p { color: #b9bcc4; font-size: 15.5px; margin: 0; }
.calc-inline-head .eyebrow { background: rgba(37,99,235,0.18); color: #7ab0ff; }
.calc-inline-body { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 800px) { .calc-inline-body { grid-template-columns: 1fr; } }
.calc-inline-sliders .calc-row label { color: #d7d9de; }
.calc-inline-sliders .calc-row label span.val { color: var(--white); }
.calc-inline-sliders input[type=range] { accent-color: var(--green); }
.calc-inline-result {
  background: linear-gradient(160deg, #14181f, #0e1116);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 40px 34px;
  text-align: center;
  box-shadow: 0 0 0 1px rgba(34,197,94,0.15), 0 0 40px rgba(34,197,94,0.12);
}
.calc-inline-result .lbl { font-size: 12.5px; text-transform: uppercase; letter-spacing: 0.06em; color: #999; font-weight: 700; margin-bottom: 12px; }
.calc-inline-result .amount-big {
  font-size: 54px;
  font-weight: 900;
  margin-bottom: 10px;
  background: linear-gradient(90deg, #4ade80, #7ab0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.calc-inline-note { font-size: 12.5px; color: #777; }

@media (max-width: 600px) {
  .calc-inline-card { padding: 34px 22px; }
  .calc-inline-head h2 { font-size: 26px; }
  .calc-inline-result { padding: 26px 18px; }
  .calc-inline-result .amount-big { font-size: 34px; word-break: break-word; }
}

/* ---------- Final CTA ---------- */
.final-cta { text-align: center; }
.final-cta h2 { font-size: 38px; font-weight: 900; margin: 0 0 26px; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: #cfcfcf;
  padding: 56px 0 30px;
}
.footer-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { color: var(--white); }
.footer-brand p { color: #999; font-size: 14px; max-width: 280px; margin-top: 10px; }
.footer-col h4 { color: var(--white); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; margin: 0 0 14px; }
.footer-col a { display: block; color: #bbb; text-decoration: none; font-size: 14px; margin-bottom: 10px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid #333; padding-top: 24px; font-size: 13px; color: #888; text-align: center; }

/* ---------- Floating widgets (calculator + call) ---------- */
.fab {
  position: fixed;
  bottom: 24px;
  z-index: 999999;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  border: none;
}
#calc-btn { right: 24px; background: var(--ink); color: var(--white); }
#calc-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,0.3); }
#call-btn { left: 24px; background: var(--white); color: var(--ink); border: 2px solid var(--ink); display: inline-flex; align-items: center; gap: 8px; }
#call-btn:hover { transform: translateY(-2px); background: var(--ink); color: var(--white); }
#call-btn .phone-icon { color: var(--green); font-size: 18px; }

.overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 1000000; align-items: center; justify-content: center; padding: 20px; }
.overlay.open { display: flex; }
.modal-card { background: var(--white); border-radius: 20px; max-width: 460px; width: 100%; padding: 36px 32px 32px; position: relative; box-shadow: 0 24px 64px rgba(0,0,0,0.35); }
.modal-close { position: absolute; top: 18px; right: 18px; background: none; border: none; font-size: 22px; line-height: 1; cursor: pointer; color: #888; }
.modal-close:hover { color: var(--ink); }
.modal-card h2 { font-size: 22px; font-weight: 700; margin: 0 0 8px; }
.modal-card p.sub { font-size: 14px; color: var(--gray); margin: 0 0 24px; line-height: 1.5; }

.calc-row { margin-bottom: 22px; }
.calc-row label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: #333; margin-bottom: 8px; }
.calc-row label span.val { color: var(--ink); font-weight: 700; }
.calc-row input[type=range] { width: 100%; accent-color: var(--ink); height: 4px; }
.calc-result { background: var(--cream-deep); border-radius: 14px; padding: 20px; text-align: center; margin: 24px 0; }
.calc-result .lbl { font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; color: #777; font-weight: 600; margin-bottom: 6px; }
.calc-result .amount { font-size: 34px; font-weight: 800; }

.call-number { font-size: 30px; font-weight: 800; letter-spacing: 0.02em; margin-bottom: 22px; text-align: center; }
.call-disclaimer { font-size: 12px; color: #999; line-height: 1.5; text-align: center; margin-top: 16px; }

/* ---------- Legal / About / Contact page basics ---------- */
.page-hero { padding: 70px 0 30px; text-align: center; }
.page-hero h1 { font-size: 44px; font-weight: 900; letter-spacing: -0.02em; margin: 0 0 14px; }
.page-hero p { color: var(--gray); font-size: 16px; max-width: 560px; margin: 0 auto; }

.prose { max-width: 760px; margin: 0 auto; font-size: 15.5px; color: var(--ink-soft); line-height: 1.75; }
.prose h2 { font-size: 22px; font-weight: 800; color: var(--ink); margin: 40px 0 14px; }
.prose p { margin: 0 0 16px; }
.prose ul { margin: 0 0 16px; padding-left: 22px; }

.founder-card {
  display: flex;
  gap: 32px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-soft);
  max-width: 760px;
  margin: 50px auto 0;
}
.founder-card img { width: 150px; height: 150px; border-radius: 999px; object-fit: cover; object-position: center 15%; flex: 0 0 auto; }
.founder-card h3 { font-size: 19px; font-weight: 800; margin: 0 0 4px; }
.founder-card .role { font-size: 13px; color: var(--green-dark); font-weight: 700; margin-bottom: 12px; }
.founder-card p { font-size: 14.5px; color: var(--gray); line-height: 1.6; margin: 0; }
@media (max-width: 600px) { .founder-card { flex-direction: column; text-align: center; } }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; max-width: 1000px; margin: 0 auto; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-soft); }
.contact-info-card h3 { font-size: 18px; font-weight: 800; margin: 0 0 20px; }
.contact-line { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contact-line .icn { width: 36px; height: 36px; border-radius: 999px; background: var(--cream-deep); display: flex; align-items: center; justify-content: center; font-size: 16px; }
.contact-line a { text-decoration: none; font-weight: 700; font-size: 15px; }

/* ---------- Offer overview (home blend section) ---------- */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 760px) { .offer-grid { grid-template-columns: 1fr; } }
.offer-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.offer-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--cream-deep);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.offer-card h3 { font-size: 21px; font-weight: 800; color: var(--ink); margin: 0 0 10px; }
.offer-card p { font-size: 14.5px; color: var(--gray); line-height: 1.6; margin: 0 0 20px; }
.offer-link { font-size: 14px; font-weight: 700; color: var(--blue); }

/* ---------- Bold "What We Offer" section ---------- */
.section-offer-bold {
  background: var(--cream-deep);
  padding: 90px 0;
}
.section-offer-bold .section-head h2 { color: var(--ink); font-size: 40px; }
.section-offer-bold .section-head p { color: var(--gray); }
.offer-grid-bold { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 760px) { .offer-grid-bold { grid-template-columns: 1fr; } }
.offer-card-bold {
  display: block;
  text-decoration: none;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.offer-card-bold.theme-blue { border-top: 6px solid var(--blue); }
.offer-card-bold.theme-green { border-top: 6px solid var(--green); }
.offer-card-bold:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); }
.offer-icon-bold {
  width: 62px; height: 62px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin-bottom: 22px;
}
.offer-card-bold.theme-blue .offer-icon-bold { background: var(--blue-tint); }
.offer-card-bold.theme-green .offer-icon-bold { background: var(--green-tint); }
.offer-card-bold h3 { font-size: 26px; font-weight: 900; color: var(--ink); margin: 0 0 10px; }
.offer-card-bold > p { font-size: 15px; color: var(--gray); line-height: 1.6; margin: 0 0 22px; }
.offer-bullets { list-style: none; margin: 0 0 26px; padding: 0; }
.offer-bullets li { color: var(--ink-soft); font-size: 14px; font-weight: 600; padding: 7px 0 7px 24px; position: relative; }
.offer-bullets li::before { content: "✓"; position: absolute; left: 0; font-weight: 800; }
.offer-card-bold.theme-blue .offer-bullets li::before { color: var(--blue); }
.offer-card-bold.theme-green .offer-bullets li::before { color: var(--green-dark); }
.offer-link-bold { font-size: 14.5px; font-weight: 800; }
.offer-card-bold.theme-blue .offer-link-bold { color: var(--blue); }
.offer-card-bold.theme-green .offer-link-bold { color: var(--green-dark); }

/* ---------- Service banners (clear section dividers) ---------- */
.service-banner {
  padding: 60px 0;
  position: relative;
}
.service-banner.theme-blue { background: var(--blue-tint); border-top: 3px solid var(--blue); border-bottom: 3px solid var(--blue); }
.service-banner.theme-green { background: var(--green-tint); border-top: 3px solid var(--green); border-bottom: 3px solid var(--green); }
.service-banner-inner { display: flex; align-items: center; gap: 30px; max-width: 760px; margin: 0 auto; text-align: left; }
@media (max-width: 640px) { .service-banner-inner { flex-direction: column; text-align: center; gap: 14px; } }
.service-num {
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 auto;
}
.theme-blue .service-num { color: rgba(37,99,235,0.28); }
.theme-green .service-num { color: rgba(34,197,94,0.32); }
.service-banner h2 { font-size: 32px; font-weight: 900; margin: 8px 0 8px; color: var(--ink); }
.service-banner p { font-size: 15px; color: var(--ink-soft); margin: 0; line-height: 1.6; }
.service-banner .eyebrow { margin-bottom: 4px !important; }

/* ---------- Spotlight sections (Industries, Pricing — shared by both services) ---------- */
.section-spotlight {
  background: #f5f2ea;
  position: relative;
}
.section-spotlight::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

/* ---------- Growth Suite page ---------- */
.flow-row { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; }
.flow-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  text-align: center;
  min-width: 150px;
}
.flow-step .flow-icon { font-size: 26px; margin-bottom: 8px; }
.flow-step .flow-label { font-size: 13px; font-weight: 700; color: var(--white); }
.flow-arrow { color: var(--green); font-size: 20px; }

.funnel-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 860px) { .funnel-steps { grid-template-columns: 1fr; } }
.funnel-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  text-align: left;
}
.funnel-num {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px;
  margin-bottom: 16px;
}
.funnel-step h3 { font-size: 16.5px; font-weight: 800; margin: 0 0 8px; }
.funnel-step p { font-size: 13.5px; color: var(--gray); line-height: 1.6; margin: 0; }

/* ---------- Growth Suite alternating rows ---------- */
.growth-row {
  display: flex;
  align-items: center;
  gap: 56px;
  padding: 46px 0;
  border-bottom: 1px solid var(--border);
}
.growth-row:last-child { border-bottom: none; }
.growth-row.reverse { flex-direction: row-reverse; }
@media (max-width: 800px) {
  .growth-row, .growth-row.reverse { flex-direction: column; gap: 28px; padding: 32px 0; }
}
.growth-text { flex: 1; }
.growth-visual-col { flex: 1; display: flex; justify-content: center; }
.growth-step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 999px;
  background: var(--green-tint); color: var(--green-dark);
  font-size: 12.5px; font-weight: 800; margin-bottom: 14px;
}
.growth-text h3 { font-size: 23px; font-weight: 800; margin: 0 0 10px; }
.growth-text p { font-size: 14.5px; color: var(--gray); line-height: 1.65; margin: 0; max-width: 420px; }

/* ---------- Pricing toggle + plan cards ---------- */
.pricing-toggle-wrap { display: flex; justify-content: center; margin-bottom: 44px; }
.pricing-toggle {
  display: inline-flex;
  background: var(--cream-deep);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
}
.pricing-toggle button {
  border: none;
  background: transparent;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--gray);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.pricing-toggle button.active { background: var(--ink); color: var(--white); }
.save-badge {
  background: var(--green-tint);
  color: var(--green-dark);
  font-size: 11px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 999px;
}
.pricing-toggle button.active .save-badge { background: rgba(34,197,94,0.25); color: #bff7d3; }

.plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
@media (max-width: 900px) { .plans-grid { grid-template-columns: 1fr; } }

.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan-card.featured {
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-lift);
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-name { font-size: 19px; font-weight: 800; margin: 0 0 6px; }
.plan-tagline { font-size: 13.5px; color: var(--gray); margin: 0 0 22px; min-height: 34px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.plan-price .amount { font-size: 40px; font-weight: 900; color: var(--ink); }
.plan-price .period { font-size: 14px; color: var(--gray); font-weight: 600; }
.plan-usage-note { font-size: 12.5px; color: var(--gray-light); margin-bottom: 24px; }
.plan-features { list-style: none; margin: 0 0 28px; padding: 0; flex: 1; }
.plan-features li { font-size: 13.5px; color: var(--ink-soft); padding: 8px 0 8px 24px; position: relative; border-top: 1px solid var(--cream-deep); }
.plan-features li:first-child { border-top: none; }
.plan-features li::before { content: "✓"; position: absolute; left: 0; top: 8px; color: var(--green-dark); font-weight: 800; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
}
.testimonial-card .stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-card .quote { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; margin: 0 0 24px; flex: 1; }
.testimonial-card .reviewer { display: flex; align-items: center; gap: 12px; }
.avatar-circle {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 800; flex: 0 0 auto;
}
.reviewer-name { font-weight: 800; font-size: 14px; color: var(--ink); }
.reviewer-biz { font-size: 12.5px; color: var(--gray); }

/* ---------- Intake form ---------- */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 16px; }
@media (max-width: 460px) { .form-row { grid-template-columns: 1fr; } }
.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: #333;
  margin-bottom: 6px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--border);
  background: var(--cream);
  border-radius: 10px;
  padding: 11px 13px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--ink);
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}

.calendar-step { display: none; }
.calendar-step.visible { display: block; animation: fadeUp 0.35s ease; }

/* ---------- Mission statement ---------- */
.mission-section { text-align: center; }
.mission-kicker {
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 18px;
}
.mission-section h2 {
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
}
.mission-divider { width: 56px; height: 3px; background: var(--ink); border-radius: 999px; margin: 0 auto 30px; }
.mission-section p.mission-text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.mission-section p.mission-text strong { color: var(--ink); }
