/* ============================================================
   SoloFire Marketing Website — Design system from Solo Fire.fig
   Colors:  navy #004777 · ink #001628 · coral #EF476F
            teal #00C1C8 · green #0ECD94 · body #5B5B5F · muted #86878A
   Fonts:   Heebo (headings) · Roboto (body) · Manrope (labels)
   ============================================================ */

:root {
  --navy: #004777;
  --ink: #001628;
  --coral: #EF476F;
  --teal: #00C1C8;
  --green: #0ECD94;
  --body: #5B5B5F;
  --muted: #86878A;
  --bg-light: #F0F4F7;
  --line: rgba(0, 71, 119, 0.10);
  --tint-navy: rgba(0, 71, 119, 0.06);
  --tint-teal: rgba(0, 193, 200, 0.08);
  --tint-teal-10: rgba(0, 193, 200, 0.10);
  --tint-coral: rgba(239, 71, 111, 0.10);
  --tint-green: rgba(14, 205, 148, 0.14);
  --r-card: 24px;
  --r-sm: 16px;
  --font-head: 'Heebo', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --font-label: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color .2s, opacity .2s; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 500; color: var(--navy); line-height: 1.25; }
h1 { font-size: 40px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

.container { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; }

/* ---------- Badges ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid var(--coral); border-radius: 999px;
  padding: 4px 12px 4px 4px;
  font: 500 10px/1.6 var(--font-body);
  letter-spacing: .04em; text-transform: uppercase; color: var(--coral);
}
.badge .pill {
  background: var(--coral); color: #fff; border-radius: 999px;
  padding: 2px 10px; font-weight: 500;
}
.badge--plain { padding: 4px 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: 500 14px/1 var(--font-body);
  border-radius: 999px; padding: 16px 28px;
  border: none; cursor: pointer; white-space: nowrap;
  transition: transform .15s, box-shadow .15s, background .2s;
}
.btn:hover { transform: translateY(-1px); }
.btn--coral { background: var(--coral); color: #fff; }
.btn--coral:hover { box-shadow: 0 8px 20px rgba(239, 71, 111, .35); }
.btn--teal { background: var(--teal); color: #fff; }
.btn--teal:hover { box-shadow: 0 8px 20px rgba(0, 193, 200, .35); }
.btn--ghost { background: transparent; color: var(--coral); padding: 8px 0; }
.btn--ghost:hover { transform: none; opacity: .8; }

.link-more { display: inline-flex; align-items: center; gap: 6px; font: 500 14px/1 var(--font-body); color: var(--coral); }
.link-more:hover { gap: 10px; }

/* ---------- Header / Nav ---------- */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 88px; }
.nav-left { display: flex; align-items: center; gap: 40px; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo svg { height: 36px; width: auto; }
.logo img { height: 38px; width: auto; }
.logo-word { font: 600 19px/1 var(--font-head); letter-spacing: .22em; color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links > li { position: relative; }
.nav-links a { font-size: 14px; color: var(--ink); display: inline-flex; align-items: center; gap: 5px; padding: 8px 0; }
.nav-links a:hover { color: var(--coral); }
.nav-links a.active { color: var(--coral); font-weight: 500; }
.caret { width: 9px; height: 9px; border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted); transform: rotate(45deg) translateY(-2px); }
.dropdown {
  position: absolute; top: 100%; left: -16px; min-width: 240px;
  background: #fff; border: 1px solid var(--line); border-radius: 16px;
  padding: 10px; box-shadow: 0 16px 40px rgba(0, 22, 40, .12);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: all .2s;
}
.nav-links li:hover .dropdown, .nav-links li:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 10px 14px; border-radius: 10px; font-size: 14px; }
.dropdown a:hover { background: var(--tint-teal); color: var(--navy); }
.nav-right { display: flex; align-items: center; gap: 24px; }
.nav-right .login { font-size: 14px; color: var(--ink); }
.nav-right .btn { padding: 15px 24px; }

/* dark nav variant (navy hero pages) */
.site-header--dark { background: var(--navy); border-bottom-color: rgba(255,255,255,.12); }
.site-header--dark .nav-links a, .site-header--dark .nav-right .login, .site-header--dark .logo-word { color: #fff; }
.site-header--dark .nav-links a:hover { color: #ffd6e0; }
.site-header--dark .caret { border-color: rgba(255,255,255,.7); }
.site-header--dark .dropdown a { color: var(--ink); }

.mobile-menu { display: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; }
.site-header--dark .nav-toggle span { background: #fff; }

/* ---------- Hero (homepage) ---------- */
.hero { padding: 24px 0 0; }
.hero-banner {
  position: relative; border-radius: var(--r-card); overflow: hidden;
  background: linear-gradient(105deg, #F1F5F8 0%, #EDF3F6 45%, #DFF3F2 75%, #E4F6E9 100%);
  padding: 72px 64px;
  display: grid; grid-template-columns: 540px 1fr; gap: 48px; align-items: center;
}
.hero-copy h1 { margin: 18px 0 14px; }
.hero-copy p { max-width: 520px; }
.email-capture {
  margin-top: 28px; display: flex; align-items: center;
  background: #fff; border-radius: 999px; padding: 8px 8px 8px 24px;
  max-width: 540px; box-shadow: 0 10px 30px rgba(0, 22, 40, .08);
}
.email-capture input {
  flex: 1; border: none; outline: none; font: 400 14px var(--font-body); color: var(--ink); background: transparent; min-width: 0;
}
.email-capture input::placeholder { color: var(--muted); }
.hero-media { position: relative; }
.hero-media .shot { border-radius: var(--r-card); box-shadow: 0 30px 60px rgba(0, 22, 40, .18); }

/* ---------- Hero with feature switcher (Option B) ---------- */
.hero-banner--switch {
  grid-template-columns: 500px 1fr;
  grid-template-areas: "copy stage" "strip strip" "caption caption";
  column-gap: 48px; row-gap: 26px;
  padding: 56px 64px;
}
.hero-banner--switch .hero-copy { grid-area: copy; }
.hero-banner--switch .hero-stage { grid-area: stage; }
.hero-banner--switch .fswitch-strip-wrap { grid-area: strip; }
.hero-banner--switch .fswitch-caption-row { grid-area: caption; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.hero-banner--switch .fswitch-caption { margin-top: 0; max-width: 720px; }
.hero-banner--switch .watch-demo--inline { position: static; left: auto; bottom: auto; margin: 0; flex: none; }
.hero-banner--switch .email-capture { margin-top: 24px; }

.watch-demo--inline {
  position: static; margin-top: 18px;
  display: inline-flex; padding: 8px 20px 8px 8px;
  box-shadow: 0 8px 22px rgba(0,22,40,.12);
}
.watch-demo--inline .play-btn { width: 38px; height: 38px; }
.watch-demo--inline .play-btn::after { border-left-width: 10px; border-top-width: 7px; border-bottom-width: 7px; }

.hero-stage { position: relative; aspect-ratio: 16/10; }

.strip-hint { font: 600 22px var(--font-head); color: var(--navy); margin: 0 0 4px; text-align: center; }
.strip-sub { font: 400 14px var(--font-body); color: var(--muted); margin: 0 0 14px; text-align: center; }
.fswitch-strip {
  display: grid; grid-template-columns: repeat(8, 1fr); gap: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 10px; box-shadow: 0 12px 34px rgba(0,22,40,.10);
}
.fswitch-strip button {
  background: #fff; border: 1px solid transparent; border-radius: 12px; cursor: pointer;
  padding: 12px 4px; text-align: center;
  font: 500 12px var(--font-head); color: var(--navy);
  display: flex; flex-direction: column; align-items: center; gap: 7px;
  transition: background .2s, color .2s;
}
.fswitch-strip button svg { width: 22px; height: 22px; stroke: currentColor; }
.fswitch-strip button:hover { background: var(--tint-navy); }
.fswitch-strip button.active { background: var(--navy); color: #fff; }

@media (max-width: 1080px) {
  .hero-banner--switch {
    grid-template-columns: 1fr;
    grid-template-areas: "copy" "stage" "strip" "caption";
    padding: 48px 32px;
  }
  .fswitch-strip { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 560px) {
  .fswitch-strip { grid-template-columns: repeat(2, 1fr); }
  .strip-hint, .strip-sub { text-align: left; }
}
.watch-demo {
  position: absolute; left: -24px; bottom: -20px;
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.92); backdrop-filter: blur(6px);
  border-radius: 999px; padding: 10px 22px 10px 10px;
  box-shadow: 0 12px 30px rgba(0,22,40,.15);
  font: 500 14px var(--font-label); color: var(--coral);
}
.play-btn {
  width: 48px; height: 48px; border-radius: 50%; background: var(--green);
  display: inline-flex; align-items: center; justify-content: center; flex: none;
}
.play-btn::after { content: ''; border-left: 12px solid #fff; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 3px; }

/* ---------- Logo strip ---------- */
.logo-strip { text-align: center; }
.logo-strip .container { text-align: center; }
.logo-strip .badge { margin-bottom: 28px; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 24px 48px; }
.logo-row img { height: auto; max-height: 40px; max-width: 160px; object-fit: contain; filter: grayscale(1) opacity(.65); transition: filter .2s; }
.logo-row img:hover { filter: none; }

/* ---------- Tabbed showcase ---------- */
.showcase { display: grid; grid-template-columns: 200px 1fr; gap: 40px; }
.showcase-tabs { border-left: 2px solid #F5F5F6; display: flex; flex-direction: column; }
.showcase-tabs button {
  text-align: left; background: none; border: none; cursor: pointer;
  font: 400 14px/1.4 var(--font-body); color: var(--muted);
  padding: 10px 0 10px 18px; margin-left: -2px; border-left: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.showcase-tabs button.active { color: var(--green); font-weight: 500; border-left-color: var(--green); }
.showcase-panel {
  background: var(--tint-teal); border-radius: var(--r-card);
  padding: 56px;
}
.showcase-panel .panel-copy h2 { margin-bottom: 14px; }
.showcase-panel .panel-copy .btn { margin-top: 26px; }
.showcase-panel .shot { border-radius: 12px; box-shadow: 0 24px 48px rgba(0,22,40,.16); }
.showcase-pane { display: none; }
.showcase-pane.active { display: grid; grid-template-columns: 323px 1fr; gap: 48px; align-items: center; }

/* ---------- Feature switcher ---------- */
.fswitch { position: relative; border-radius: var(--r-card); background: var(--tint-teal); padding: 48px; }
.fswitch-stage { position: relative; max-width: 900px; aspect-ratio: 16/10; }
.fswitch-stage img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top left; border-radius: 14px; box-shadow: 0 24px 48px rgba(0,22,40,.16); opacity: 0; transition: opacity .3s; }
.fswitch-stage img.active { opacity: 1; }
.fswitch-card {
  position: absolute; right: 48px; top: 50%; transform: translateY(-50%);
  background: #fff; border-radius: 20px; padding: 14px;
  box-shadow: 0 24px 60px rgba(0,22,40,.18); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px; width: 360px; z-index: 2;
}
.fswitch-card button {
  background: #fff; border: 1px solid transparent; border-radius: 14px; cursor: pointer;
  padding: 18px 10px; text-align: center;
  font: 500 13px var(--font-head); color: var(--teal);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  transition: background .2s, color .2s;
}
.fswitch-card button svg { width: 26px; height: 26px; stroke: currentColor; }
.fswitch-card button:hover { background: var(--tint-teal); }
.fswitch-card button.active { background: var(--tint-green); color: var(--navy); }
.fswitch-caption { margin-top: 24px; max-width: 620px; }
.fswitch-caption > div { display: none; }
.fswitch-caption > div.active { display: block; }
.fswitch-caption h3 { margin-bottom: 6px; }
.fswitch-caption p { font-size: 15px; }
.fswitch-caption .link-more { margin-top: 8px; }
@media (max-width: 1080px) {
  .fswitch { padding: 24px; }
  .fswitch-card { position: static; transform: none; width: 100%; grid-template-columns: repeat(3, 1fr); margin-top: 16px; }
  .fswitch-stage { max-width: none; }
}

/* ---------- Section headers ---------- */
.section-head { max-width: 680px; margin: 0 auto 40px; text-align: center; }
.section-head .badge { margin-bottom: 16px; }
.section-head h2 { margin-bottom: 14px; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; max-width: none; text-align: left; margin-left: 0; margin-right: 0; }
.section-head--row > div { max-width: 780px; }

/* ---------- Workflow icons ---------- */
.workflow { display: flex; flex-wrap: wrap; gap: 40px 56px; justify-content: center; padding: 16px 0 8px; }
.workflow .step { text-align: center; width: 114px; }
.workflow .step .disc {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 12px;
  display: flex; align-items: center; justify-content: center;
}
.workflow .step .disc svg { width: 36px; height: 36px; }
.workflow .step span { font: 500 14px var(--font-head); color: var(--navy); display: block; }
.disc--teal { background: var(--teal); } .disc--coral { background: var(--coral); } .disc--green { background: var(--green); }

/* ---------- Feature cards ---------- */
.cards-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.feature-card {
  background: var(--tint-navy); border-radius: var(--r-card);
  padding: 48px 48px 0; overflow: hidden;
  display: flex; flex-direction: column; gap: 32px;
}
.feature-card h2 { font-size: 28px; margin-bottom: 12px; }
.feature-card .btn, .feature-card .link-more { margin-top: 20px; align-self: flex-start; }
.feature-card .shot { border-radius: 12px 12px 0 0; box-shadow: 0 -12px 40px rgba(0,22,40,.10); margin-top: auto; }

/* ---------- Blog ---------- */
.post-wrap { max-width: 800px; }
.post-meta { color: var(--muted); font-size: 15px; }
.post-hero { width: 100%; border-radius: 16px; margin-bottom: 32px; }
.post-body { font-size: 17px; line-height: 1.75; }
.post-body h2 { margin: 40px 0 14px; }
.post-body h3 { margin: 28px 0 10px; }
.post-body p { margin-bottom: 18px; }
.post-body ul, .post-body ol { margin: 0 0 18px 24px; }
.post-body li { margin-bottom: 10px; }
.post-body img { max-width: 100%; height: auto; border-radius: 12px; margin: 12px 0; }
.post-body a { color: var(--coral); }
.post-body blockquote { border-left: 3px solid var(--teal); padding-left: 18px; color: var(--muted); margin: 0 0 18px; }
.blog-card .date { display: block; margin-top: 12px; color: var(--muted); font-size: 13px; }

/* ---------- Bento grid ---------- */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
.bento-col { display: flex; flex-direction: column; gap: 24px; }
.bento-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tile { border-radius: var(--r-card); padding: 32px; }
.tile--navy { background: var(--tint-navy); }
.tile--teal { background: var(--tint-teal-10); }
.tile--coral { background: var(--tint-coral); }
.tile--green { background: var(--tint-green); }
.tile h3 { margin-bottom: 10px; }
.tile .stat-lg { font: 500 32px var(--font-head); color: var(--navy); }
.tile .btn { margin-top: 20px; }
.tile.center { display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }

/* ---------- Stats band ---------- */
.stats-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stat-card { background: var(--tint-teal); border-radius: var(--r-card); padding: 40px; }
.stat-card .num { font: 500 clamp(38px, 4vw, 56px)/1.1 var(--font-head); color: var(--navy); display: block; margin-bottom: 12px; }

/* stat tiles (doc pages) */
.stat-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; }
.stat-tile { background: var(--tint-teal); border-radius: var(--r-sm); padding: 28px; }
.stat-tile .num { font: 500 40px/1 var(--font-head); color: var(--navy); display: block; margin-bottom: 10px; }
.stat-tile .src { display: block; margin-top: 8px; font-size: 12px; color: var(--muted); }

/* ---------- Testimonials ---------- */
.quote-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-sm);
  padding: 28px; display: flex; flex-direction: column; gap: 20px;
  box-shadow: 0 6px 24px rgba(0,22,40,.05);
}
.quote-card p { font-size: 15px; flex: 1; }
.quote-card .who strong { font: 500 17px var(--font-head); color: var(--navy); display: block; }
.quote-card .who span { font-size: 13px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative; border-radius: 60px; overflow: hidden;
  background: linear-gradient(100deg, rgba(0,22,40,.88), rgba(0,71,119,.72)), url('/assets/img/cta-bg-1.jpg') center/cover;
  padding: 96px 64px; text-align: center; color: #fff;
}
.cta-banner h2 { color: #fff; font-size: 36px; margin-bottom: 14px; }
.cta-banner p { color: #E6E6E7; max-width: 620px; margin: 0 auto 32px; }
.cta-banner .actions { display: flex; gap: 20px; justify-content: center; align-items: center; flex-wrap: wrap; }
.cta-banner .watch { display: inline-flex; align-items: center; gap: 12px; color: #fff; font: 500 14px var(--font-body); }

/* ---------- Blog cards ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--tint-navy); border-radius: var(--r-sm); padding: 24px; transition: transform .2s, box-shadow .2s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,22,40,.10); }
.blog-card img { border-radius: 12px; width: 100%; height: 216px; object-fit: cover; margin-bottom: 20px; }
.blog-card h4 { margin-bottom: 10px; }
.blog-card p { font-size: 15px; }

/* ---------- FAQ ---------- */
.faq-wrap { background: var(--navy); border-radius: var(--r-card); padding: 64px; color: #fff; }
.faq-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; margin-bottom: 40px; }
.faq-head h2, .faq-item h4 { color: #fff; }
.faq-head p { color: #E6E6E7; }
.faq-item { border: 1px solid rgba(255,255,255,.25); border-radius: var(--r-card); margin-bottom: 16px; overflow: hidden; }
.faq-item button {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 26px 28px; text-align: left;
  font: 500 20px var(--font-head); color: #fff;
}
.faq-item.open button { color: var(--teal); }
.faq-item .chev {
  flex: none; width: 40px; height: 40px; border-radius: 50%; background: var(--teal);
  display: flex; align-items: center; justify-content: center; transition: transform .25s;
}
.faq-item .chev::after { content: ''; width: 10px; height: 10px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg) translate(-1px,-1px); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-item .answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item .answer div { padding: 0 28px 26px; color: #E6E6E7; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-copy h2 { margin: 16px 0 18px; }
.checklist { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; }
.checklist .tick {
  flex: none; width: 22px; height: 22px; border-radius: 50%; margin-top: 2px;
  background: var(--teal);
  display: inline-flex; align-items: center; justify-content: center;
}
.checklist .tick::after { content: ''; width: 6px; height: 10px; border-right: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(45deg) translateY(-1px); }
.contact-form { background: var(--bg-light); border-radius: var(--r-card); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font: 500 14px var(--font-label); color: var(--ink); }
.form-field input, .form-field textarea {
  border: 1px solid transparent; border-radius: 999px; background: #fff;
  padding: 14px 20px; font: 300 14px var(--font-body); color: var(--ink); outline: none;
  transition: border-color .2s;
}
.form-field textarea { border-radius: 14px; min-height: 140px; resize: vertical; }
.form-field input:focus, .form-field textarea:focus { border-color: var(--teal); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { background: var(--navy); color: #fff; padding: 72px 0; }
.page-hero .grid { display: grid; grid-template-columns: 540px 1fr; gap: 56px; align-items: center; }
.page-hero h1 { color: #fff; margin: 16px 0 14px; }
.page-hero p { color: #E6E6E7; }
.page-hero .shot { border-radius: 10px; box-shadow: 0 30px 60px rgba(0,0,0,.35); }
.page-hero .email-capture { box-shadow: none; }
.page-hero--simple { text-align: center; }
.page-hero--simple .inner { max-width: 760px; margin: 0 auto; }

/* ---------- Icon feature grid ---------- */
.icon-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.icon-card { background: var(--tint-navy); border-radius: var(--r-sm); padding: 32px; }
.icon-card .disc { width: 64px; height: 64px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.icon-card .disc svg { width: 28px; height: 28px; }
.icon-card h4 { margin-bottom: 8px; }
.icon-card p { font-size: 15px; }

/* content-type chips (navy panel) */
.dark-panel { background: var(--navy); border-radius: var(--r-card); padding: 64px; color: #fff; display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: center; }
.dark-panel h2 { color: #fff; margin: 16px 0 14px; }
.dark-panel p { color: #E6E6E7; }
.chip-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px 16px; margin-top: 36px; }
.chip { text-align: center; }
.chip .disc { width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 10px; display: flex; align-items: center; justify-content: center; }
.chip .disc svg { width: 32px; height: 32px; }
.chip span { font: 500 14px var(--font-head); color: #fff; }

/* ---------- Comparison table ---------- */
.compare { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--line); border-radius: var(--r-sm); overflow: hidden; }
.compare th, .compare td { padding: 16px 20px; text-align: left; font-size: 15px; border-bottom: 1px solid var(--line); }
.compare th { background: var(--tint-navy); font: 500 15px var(--font-head); color: var(--navy); }
.compare tr:last-child td { border-bottom: none; }
.compare td.yes { color: var(--green); font-weight: 500; }
.compare td.no { color: var(--muted); }
.compare td.partial { color: #C99A2E; }
.compare--detail th:first-child, .compare--detail td:first-child { font-weight: 500; color: var(--navy); white-space: nowrap; }
.compare--detail td.win { background: var(--tint-green); }
.compare--detail td { vertical-align: top; font-size: 14.5px; line-height: 1.55; }

/* two-col plain */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.panel { border-radius: var(--r-card); padding: 40px; }
.panel h3 { margin-bottom: 8px; }
.panel .sub { font-size: 15px; margin-bottom: 18px; }
.panel ul { display: flex; flex-direction: column; gap: 12px; }
.panel ul li { padding-left: 26px; position: relative; font-size: 15px; }
.panel ul li::before {
  content: ''; position: absolute; left: 0; top: 7px; width: 6px; height: 10px;
  border-right: 2px solid var(--teal); border-bottom: 2px solid var(--teal); transform: rotate(45deg);
}
.panel ul li strong { color: var(--navy); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.step-card { background: var(--tint-teal); border-radius: var(--r-sm); padding: 28px; counter-increment: step; }
.step-card::before {
  content: counter(step);
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--navy); color: #fff;
  font: 500 18px var(--font-head); margin-bottom: 16px;
}
.step-card h4 { margin-bottom: 8px; }
.step-card p { font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-light); margin-top: 72px; padding: 48px 0 32px; }
.footer-top { display: grid; grid-template-columns: auto 1fr auto; gap: 40px; align-items: center; padding-bottom: 36px; }
.footer-top .blurb h4 { margin-bottom: 4px; }
.footer-top .blurb p { font-size: 15px; }
.newsletter { display: flex; align-items: center; background: #fff; border-radius: 999px; padding: 6px 6px 6px 22px; min-width: 340px; }
.newsletter input { flex: 1; border: none; outline: none; background: none; font: 500 14px var(--font-label); color: var(--ink); min-width: 0; }
.newsletter button { width: 40px; height: 40px; border-radius: 50%; background: var(--coral); border: none; cursor: pointer; color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.footer-rule { height: 1px; background: rgba(0,71,119,.10); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; padding: 40px 0; }
.footer-cols h4 { margin-bottom: 18px; font-size: 20px; }
.footer-cols li { margin-bottom: 12px; }
.footer-cols a { color: var(--muted); font-size: 15px; }
.footer-cols a:hover { color: var(--coral); }
.footer-contact p { color: var(--muted); font: 500 15px var(--font-label); margin-bottom: 16px; }
.footer-contact p strong { display: block; font: 500 16px var(--font-head); color: var(--navy); margin-bottom: 2px; }
.socials { display: flex; gap: 16px; margin-top: 8px; }
.socials a { color: var(--coral); }
.socials svg { width: 24px; height: 24px; fill: currentColor; }
.footer-bottom { border-top: 1px solid rgba(0,71,119,.10); padding-top: 24px; font-size: 15px; color: var(--muted); text-align: center; }

/* ---------- Integration brand chips ---------- */
.chip-rows { display: flex; flex-direction: column; gap: 16px; margin: 32px 0 8px; text-align: center; }
.chip-row-label { font: 500 12px var(--font-label); letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.brand-chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.brand-chip {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; background: #fff;
  font: 600 14px var(--font-head); color: var(--navy);
  box-shadow: 0 2px 8px rgba(0,22,40,.04);
}
.brand-chip--crm { border-color: rgba(0,193,200,.4); }

/* IdP logo wall (dark-panel right column) */
.idp-wall { display: flex; flex-direction: column; gap: 16px; }
.idp-wall-label { font: 500 12px var(--font-label); letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.6); margin: 0; }
.idp-logos { display: flex; flex-wrap: wrap; gap: 12px; }
.idp-logos .brand-chip { gap: 8px; }
.idp-logos .brand-chip img { display: inline-block; }
.idp-wall-note { font: 400 13px var(--font-body); color: rgba(255,255,255,.72); margin: 0; }

/* mini workflow (de-emphasized) */
.day-band { background: linear-gradient(180deg, var(--tint-teal), var(--tint-navy)); }
.disc--navy { background: var(--navy); }
.workflow--day { gap: 40px 64px; }
.workflow--day .step { position: relative; }
.workflow--day .step .num {
  position: absolute; top: -6px; right: 8px; z-index: 1;
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--coral); color: #fff;
  font: 600 13px/26px var(--font-head); text-align: center;
  box-shadow: 0 2px 6px rgba(0,22,40,.18);
}
.workflow--day .step > span:last-child { font-size: 15px; }
.workflow--mini { gap: 12px 40px; padding: 0; flex-wrap: wrap; }
.workflow--mini .step { width: auto; display: flex; align-items: center; gap: 8px; }
.workflow--mini .step .disc { width: 34px; height: 34px; margin: 0; background: #EDF2F6; }
.workflow--mini .step .disc svg { width: 16px; height: 16px; stroke: var(--muted); }
.workflow--mini .step > span:last-child { font: 400 13px var(--font-body); color: var(--muted); }
.brand-chips--lg .brand-chip { padding: 12px 24px; font-size: 15px; gap: 8px; }
.brand-chips--lg .brand-chip img { display: inline-block; }

/* ---------- Scheduler modal ---------- */
.sched-modal { position: fixed; inset: 0; background: rgba(0,22,40,.6); display: none; align-items: center; justify-content: center; z-index: 300; padding: 24px; }
.sched-modal.open { display: flex; }
.sched-box { position: relative; background: #fff; border-radius: 20px; width: min(900px, 100%); height: min(720px, 92vh); overflow: hidden; box-shadow: 0 40px 90px rgba(0,22,40,.4); }
.sched-box iframe { width: 100%; height: 100%; border: 0; }
.sched-close { position: absolute; top: 10px; right: 14px; background: none; border: none; font-size: 30px; color: var(--muted); cursor: pointer; z-index: 2; }
#inline-scheduler iframe { width: 100%; height: 680px; border: 0; border-radius: var(--r-sm); }

/* ---------- Video lightbox ---------- */
.video-modal { position: fixed; inset: 0; background: rgba(0,22,40,.78); display: none; align-items: center; justify-content: center; z-index: 320; padding: 24px; }
.video-modal.open { display: flex; }
.video-box { position: relative; width: min(960px, 100%); }
.video-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: 16px; overflow: hidden; box-shadow: 0 40px 90px rgba(0,22,40,.5); }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-close { position: absolute; top: -16px; right: -16px; width: 42px; height: 42px; border-radius: 50%; background: #fff; border: none; font-size: 26px; line-height: 1; color: var(--ink); cursor: pointer; box-shadow: 0 6px 20px rgba(0,22,40,.35); z-index: 2; }
@media (max-width: 640px){ .video-close { top: -48px; right: 0; } }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .hero-banner { grid-template-columns: 1fr; padding: 48px 32px; }
  .showcase { grid-template-columns: 1fr; }
  .showcase-tabs { flex-direction: row; flex-wrap: wrap; border-left: none; border-bottom: 2px solid #F5F5F6; gap: 4px; }
  .showcase-tabs button { border-left: none; border-bottom: 2px solid transparent; margin: 0 0 -2px; padding: 10px 14px; }
  .showcase-tabs button.active { border-bottom-color: var(--green); }
  .showcase-pane.active { grid-template-columns: 1fr; }
  .showcase-panel { padding: 36px; }
  .cards-2, .bento, .stats-band, .contact-grid, .two-col, .dark-panel { grid-template-columns: 1fr; }
  .quote-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .page-hero .grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav-links, .nav-right .login { display: none; }
  .nav-toggle { display: block; }
  .mobile-menu { position: absolute; top: 88px; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--line); padding: 16px 24px 24px; box-shadow: 0 20px 40px rgba(0,22,40,.10); }
  .mobile-menu.open { display: block; }
  .mobile-menu a { display: block; padding: 12px 0; font-size: 16px; color: var(--ink); border-bottom: 1px solid var(--line); }
  h1 { font-size: 32px; } h2 { font-size: 26px; }
  .section { padding: 40px 0; }
  .quote-grid { grid-template-columns: 1fr; }
  .cta-banner { border-radius: var(--r-card); padding: 56px 24px; }
  .faq-wrap, .dark-panel { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .email-capture { flex-direction: column; gap: 10px; border-radius: 24px; padding: 16px; align-items: stretch; }
  .email-capture input { padding: 8px 4px; }
}


/* ---------- Integrations hero logo art ---------- */
.int-hero-art { position: relative; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 24px; padding: 44px 36px; display: flex; flex-direction: column; align-items: center; gap: 26px; }
.int-hero-hub { width: 92px; height: 92px; border-radius: 24px; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 18px 44px rgba(0,0,0,.28); }
.int-hero-ring { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; max-width: 520px; }
.int-chip { display: inline-flex; align-items: center; gap: 9px; background: #fff; color: var(--navy); font: 500 14px var(--font-head); border-radius: 999px; padding: 9px 18px 9px 12px; box-shadow: 0 10px 26px rgba(0,0,0,.22); animation: chip-float 4.5s ease-in-out infinite; animation-delay: var(--d, 0s); }
.int-chip img { display: block; }
@keyframes chip-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@media (prefers-reduced-motion: reduce) { .int-chip { animation: none; } }
