/* B2B Systems Group. Light theme, navy structure, teal accent. */

:root {
  --navy-900: #0b1f3a;
  --navy-800: #102a4c;
  --navy-700: #1c3a63;
  --navy: #14315a;
  --teal-600: #0c7d76;
  --teal-500: #0f9b91;
  --teal-400: #16b3a6;
  --ink: #1b2733;
  --ink-soft: #475569;
  --line: #e4e9f0;
  --line-soft: #eef2f7;
  --bg: #ffffff;
  --bg-soft: #f6f8fb;
  --bg-tint: #eef4f8;
  --white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(11, 31, 58, .06), 0 2px 8px rgba(11, 31, 58, .05);
  --shadow-md: 0 10px 30px rgba(11, 31, 58, .10), 0 2px 8px rgba(11, 31, 58, .06);
  --shadow-lg: 0 24px 60px rgba(11, 31, 58, .16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --maxw: 1160px;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3 { color: var(--navy-900); font-weight: 800; line-height: 1.12; letter-spacing: -.02em; margin: 0 0 .5em; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.2rem; letter-spacing: -.01em; }
p { margin: 0 0 1rem; }
a { color: var(--teal-600); text-decoration: none; }
a:hover { color: var(--teal-500); }
img { max-width: 100%; height: auto; display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section-narrow { max-width: 800px; margin: 0 auto; }

/* Focus + skip link */
:focus-visible { outline: 3px solid var(--teal-500); outline-offset: 2px; border-radius: 4px; }
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy-900); color: #fff; padding: 10px 16px; border-radius: 8px;
  border: 0; font: inherit; font-weight: 600; cursor: pointer;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; color: #fff; }
#main:focus { outline: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: .5em; justify-content: center;
  font-weight: 600; font-size: 1rem; padding: 14px 24px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn-primary { background: var(--teal-600); color: #fff; box-shadow: 0 6px 20px rgba(12, 125, 118, .3); }
.btn-primary:hover { background: var(--teal-500); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 28px rgba(12, 125, 118, .4); }
.btn-ghost { background: #fff; color: var(--navy-900); border-color: var(--line); }
.btn-ghost:hover { color: var(--navy-900); border-color: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-sm { padding: 10px 18px; font-size: .95rem; }
.btn-block { width: 100%; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin: 1.4rem 0 .6rem; }
.icon { width: 24px; height: 24px; flex: none; }
.icon-sm { width: 18px; height: 18px; }
.link-arrow { display: inline-flex; align-items: center; gap: .4em; font-weight: 600; color: var(--teal-600); }
.link-arrow:hover .icon { transform: translateX(3px); }
.link-arrow .icon { transition: transform .2s var(--ease); }

.support-line { color: var(--ink-soft); font-size: .92rem; margin: .3rem 0 0; }
.support-line.on-dark { color: rgba(255, 255, 255, .82); }

.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 600;
  color: var(--teal-600); margin: 0 0 1rem;
}
.lede { font-size: clamp(1.1rem, 2vw, 1.32rem); color: var(--ink-soft); margin-bottom: .4rem; max-width: 46ch; }
.big-body { font-size: 1.15rem; color: var(--ink-soft); }
.section-head { max-width: 720px; margin: 0 0 2.4rem; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }

/* Header */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .85); backdrop-filter: saturate(160%) blur(12px); border-bottom: 1px solid var(--line-soft); transition: box-shadow .2s var(--ease); }
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }
.site-header__inner { display: flex; align-items: center; gap: 20px; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy-900); font-weight: 800; letter-spacing: -.02em; }
.brand:hover { color: var(--navy-900); }
.brand-logo { height: 30px; width: auto; display: block; }
.brand--footer .brand-logo { height: 34px; filter: brightness(0) invert(1); }
.brand-mark { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: linear-gradient(135deg, var(--navy-800), var(--teal-600)); color: #fff; font-size: .82rem; font-weight: 800; letter-spacing: -.03em; }
.brand-text { font-size: 1.05rem; }
.site-nav { margin-left: auto; }
.nav-list { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.nav-item > a { display: inline-block; padding: 8px 14px; color: var(--ink); font-weight: 600; font-size: .96rem; border-radius: 8px; }
.nav-item > a:hover, .nav-item > a[aria-current="page"] { color: var(--navy-900); background: var(--bg-soft); }
.nav-has-dropdown { position: relative; }
.nav-dropdown-toggle { display: none; }
.nav-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 240px; list-style: none; margin: 0; padding: 8px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav-has-dropdown:hover .nav-dropdown, .nav-has-dropdown:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 10px 12px; border-radius: 8px; color: var(--ink); font-weight: 600; font-size: .95rem; }
.nav-dropdown a:hover { background: var(--bg-soft); color: var(--navy-900); }
.header-actions { display: flex; align-items: center; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 10px; cursor: pointer; margin-left: auto; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-900); border-radius: 2px; transition: transform .2s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { border-top: 1px solid var(--line-soft); background: #fff; padding: 16px 24px 28px; }
.mobile-nav__list { list-style: none; margin: 0 0 16px; padding: 0; }
.mobile-nav__list > li > a { display: block; padding: 12px 4px; font-weight: 700; color: var(--navy-900); font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
.mobile-nav__list ul { list-style: none; margin: 0 0 8px; padding: 4px 0 8px 12px; }
.mobile-nav__list ul a { display: block; padding: 8px 4px; color: var(--ink-soft); font-weight: 600; }
.mobile-nav__cta .btn { width: 100%; }

/* Hero */
.hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); }
.hero-bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 78% 18%, rgba(22, 179, 166, .14), transparent 60%),
    radial-gradient(55% 60% at 12% 0%, rgba(28, 58, 99, .12), transparent 55%),
    linear-gradient(180deg, #fff 0%, var(--bg-soft) 100%);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--line-soft) 1px, transparent 1px), linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 40px 40px; opacity: .5; -webkit-mask-image: radial-gradient(70% 60% at 50% 20%, #000, transparent 80%); mask-image: radial-gradient(70% 60% at 50% 20%, #000, transparent 80%);
}
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero__copy h1 { margin-bottom: .35em; }
.hero__visual { position: relative; aspect-ratio: 56 / 46; }

/* Scroll-driven 3D hero scene */
.hero__visual--3d { aspect-ratio: auto; min-height: 440px; display: grid; place-items: center; perspective: 1200px; overflow: visible; }
.hero__visual--3d::before {
  content: ""; position: absolute; inset: -6% -4% 0; z-index: -1; border-radius: 50%;
  background: radial-gradient(50% 50% at 60% 40%, rgba(22, 179, 166, .22), transparent 70%);
  filter: blur(10px);
}
.hero-3d { position: relative; width: 100%; max-width: 440px; transform-style: preserve-3d; --rx: 14deg; --ry: -20deg; }
.hero-3d__stage { position: relative; transform-style: preserve-3d; transform: rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .25s var(--ease); }
.hero-3d__panel { position: relative; transform-style: preserve-3d; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); overflow: hidden; }
.hero-3d__bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.hero-3d__bar > span { width: 10px; height: 10px; border-radius: 50%; background: #d7deea; }
.hero-3d__bar > span:nth-child(1) { background: #f3a59b; }
.hero-3d__bar > span:nth-child(2) { background: #f4d08a; }
.hero-3d__bar > span:nth-child(3) { background: #a7e0b6; }
.hero-3d__url { margin-left: 8px; flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 5px 11px; font-size: .76rem; color: var(--ink-soft); }
.hero-3d__body { padding: 18px; display: flex; flex-direction: column; gap: 14px; }
.hero-3d__tiles { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.hero-3d__tile { display: flex; align-items: center; gap: 10px; padding: 14px; background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: 12px; font-weight: 700; color: var(--navy-900); font-size: .9rem; }
.hero-3d__rows { display: grid; gap: 8px; }
.hero-3d__rowitem { display: flex; align-items: center; gap: 10px; padding: 10px 12px; border: 1px solid var(--line-soft); border-radius: 10px; font-size: .84rem; color: var(--ink-soft); font-weight: 600; }
.hero-3d__rowitem .feature-icon { background: var(--bg-tint); }
.hero-3d__dot { margin-left: auto; width: 8px; height: 8px; border-radius: 50%; background: var(--teal-500); }
.hero-3d__chip { position: absolute; display: inline-flex; align-items: center; gap: 8px; padding: 11px 15px; background: #fff; border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow-md); font-weight: 700; color: var(--navy-900); font-size: .84rem; white-space: nowrap; transform: translateZ(var(--z, 60px)); animation: heroFloat 5s var(--ease) infinite; }
.hero-3d__chip .feature-icon { background: var(--bg-tint); flex: none; }
.hero-3d__stars { color: #f6b73c; letter-spacing: 1px; }
.hero-3d__chip--review { top: -22px; right: clamp(-30px, -3vw, -10px); animation-delay: -1s; }
.hero-3d__chip--book { bottom: 64px; left: clamp(-44px, -4vw, -12px); animation-delay: -2.5s; }
.hero-3d__chip--pay { bottom: -20px; right: 18px; animation-delay: -3.7s; }
@keyframes heroFloat { 0%, 100% { transform: translateZ(var(--z, 60px)) translateY(0); } 50% { transform: translateZ(var(--z, 60px)) translateY(-7px); } }

/* Stat strip */
.stat-strip { background: var(--navy-900); color: #fff; }
.stat-strip__list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; list-style: none; margin: 0; padding: 26px 24px; }
.stat-strip li { text-align: center; padding: 4px 8px; border-right: 1px solid rgba(255, 255, 255, .12); }
.stat-strip li:last-child { border-right: 0; }
.stat-value { display: block; font-weight: 800; font-size: 1.25rem; color: #fff; letter-spacing: -.02em; }
.stat-label { display: block; font-size: .82rem; color: rgba(255, 255, 255, .7); margin-top: 2px; }

/* Bands */
.band { padding: clamp(48px, 7vw, 88px) 0; }
.band--soft { background: var(--bg-soft); }
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 48px; align-items: center; }
.page-hero { padding: clamp(48px, 7vw, 84px) 0 clamp(28px, 4vw, 48px); background: linear-gradient(180deg, #fff, var(--bg-soft)); }
.page-hero--tight { padding-bottom: 12px; }

/* Cards: pillars / leads */
.pillar-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.pillar-grid--2 { grid-template-columns: repeat(2, 1fr); }
.pillar-card {
  display: flex; flex-direction: column; gap: 12px; padding: 26px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.pillar-card:hover { box-shadow: var(--shadow-md); border-color: #d4dde9; color: var(--ink); }
.pillar-card__tag { font-weight: 800; color: var(--navy-900); font-size: 1.1rem; }
.pillar-card--lg { padding: 32px; }
.pillar-card--lg h2 { font-size: 1.4rem; }
.pillar-card .link-arrow { margin-top: auto; }

.lead-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.lead-grid--3 { grid-template-columns: repeat(3, 1fr); }
.lead-card {
  display: flex; flex-direction: column; gap: 10px; padding: 28px; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.lead-card:hover { box-shadow: var(--shadow-md); color: var(--ink); }
.lead-card h2, .lead-card h3 { font-size: 1.25rem; margin: 0; }
.lead-card .link-arrow { margin-top: auto; }
.lead-card p { color: var(--ink-soft); margin: 0; }

/* Feature cards (service pages) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px;
  box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  display: flex; flex-direction: column; gap: 8px;
}
.feature-card:hover { box-shadow: var(--shadow-md); }
.feature-card h3 { margin: 6px 0 0; }
.feature-card p { color: var(--ink-soft); margin: 0; }
.feature-icon { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 12px; background: var(--bg-tint); color: var(--teal-600); }
.feature-icon--sm { width: 30px; height: 30px; border-radius: 8px; flex: none; }
.feature-icon--sm .icon { width: 18px; height: 18px; }

/* AI callout / context */
.ai-callout, .context-callout {
  display: flex; gap: 18px; align-items: flex-start; margin-top: 36px; padding: 26px 28px;
  background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #fff; border-radius: var(--radius);
}
.ai-callout p, .context-callout p { color: rgba(255, 255, 255, .9); margin: 0; }
.ai-callout strong { color: #fff; }
.ai-callout .feature-icon, .context-callout .feature-icon { background: rgba(255, 255, 255, .12); color: #fff; }
.context-callout { background: #fff; color: var(--ink); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.context-callout p { color: var(--ink-soft); }
.context-callout .feature-icon { background: var(--bg-tint); color: var(--teal-600); }

/* Lists */
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: center; gap: 12px; font-weight: 600; color: var(--navy-900); }
.guarantee-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.guarantee-list li { display: flex; align-items: center; gap: 14px; padding: 18px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); font-weight: 600; color: var(--navy-900); }

/* Chips */
.chip, .chip--static { display: inline-block; padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--line); font-size: .9rem; font-weight: 600; color: var(--navy-700); }
a.chip:hover { border-color: var(--teal-500); color: var(--teal-600); }
.chip--static { background: var(--bg-soft); color: var(--ink-soft); }
.county-chips, .chip-wrap, .sibling-row, .quiet-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.county-chips { margin-top: 1.4rem; }
.quiet-row { margin-top: 28px; }
.quiet-row__label, .sibling-row__label { font-weight: 600; color: var(--ink-soft); font-size: .92rem; }
.sibling-row { margin-top: 24px; }

/* Quotes */
.quote-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); margin: 0; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.quote-card:hover { box-shadow: var(--shadow-md); }
.quote-stars { color: #f6b73c; letter-spacing: 2px; margin-bottom: 12px; }
.quote-card blockquote { margin: 0 0 18px; font-size: 1.08rem; color: var(--ink); }
.quote-name { display: block; font-weight: 800; color: var(--navy-900); }
.quote-role { display: block; color: var(--ink-soft); font-size: .92rem; }

/* Portfolio */
.portfolio-shot { margin: 0 0 22px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); background: #fff; }
.portfolio-shot img { width: 100%; }
.portfolio-shot figcaption { padding: 14px 20px; color: var(--ink-soft); font-size: .92rem; background: #fff; }
.portfolio-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.portfolio-placeholder { margin: 0; aspect-ratio: 16 / 10; display: grid; place-items: center; border-radius: var(--radius); border: 1px dashed var(--line); background: var(--bg-soft); color: var(--ink-soft); font-weight: 600; }

/* FAQ */
.faq { display: grid; 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 24px; font-weight: 700; color: var(--navy-900); cursor: pointer; list-style: none; font-size: 1.05rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item .chevron { transition: transform .2s var(--ease); color: var(--teal-600); transform: rotate(90deg); }
.faq-item[open] .chevron { transform: rotate(-90deg); }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { color: var(--ink-soft); margin: 0; }

/* Pricing footer */
.pricing-footer { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding: 26px 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.pricing-footer p { margin: 0; flex: 1 1 300px; color: var(--ink-soft); font-weight: 600; }
.why-block .big-body { margin-bottom: 0; }

/* Plans */
.plan-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan-card { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.plan-card:hover { box-shadow: var(--shadow-md); }
.plan-card--popular { border-color: var(--teal-500); box-shadow: 0 16px 40px rgba(12, 125, 118, .16); }
.plan-badge { position: absolute; top: -13px; left: 28px; background: var(--teal-600); color: #fff; font-size: .76rem; font-weight: 700; padding: 6px 12px; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase; }
.plan-name { font-size: 1.4rem; margin: 0 0 8px; }
.plan-price { display: flex; align-items: baseline; gap: 6px; flex-wrap: wrap; margin: 0 0 14px; }
.plan-price__pre { font-size: .85rem; color: var(--ink-soft); font-weight: 600; width: 100%; }
.plan-price__num { font-size: 2.6rem; font-weight: 800; color: var(--navy-900); letter-spacing: -.03em; }
.plan-price__per { color: var(--ink-soft); font-weight: 600; }
.plan-blurb { color: var(--ink-soft); font-size: .96rem; }
.plan-features { list-style: none; margin: 18px 0 24px; padding: 0; display: grid; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: .96rem; color: var(--ink); }
.plan-card .btn { margin-top: auto; }

/* Configurator */
.configurator { display: grid; grid-template-columns: 1.4fr .85fr; gap: 28px; align-items: start; }
.config-base { display: flex; align-items: center; gap: 16px; padding: 20px 22px; background: var(--bg-tint); border-radius: var(--radius); margin-bottom: 20px; }
.config-base > div { display: flex; flex-direction: column; }
.config-base > div span { color: var(--ink-soft); font-size: .9rem; }
.config-base__price { margin-left: auto; font-weight: 800; color: var(--navy-900); white-space: nowrap; }
.config-group { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; margin: 0 0 18px; }
.config-group legend { font-weight: 700; color: var(--navy-900); padding: 0 8px; font-size: .95rem; }
.config-opt { position: relative; display: flex; align-items: center; gap: 12px; padding: 10px 8px; border-radius: 10px; cursor: pointer; }
.config-opt:hover { background: var(--bg-soft); }
.config-opt input { position: absolute; opacity: 0; width: 0; height: 0; }
.config-opt__box { display: inline-grid; place-items: center; width: 24px; height: 24px; border: 1.5px solid var(--line); border-radius: 7px; color: transparent; flex: none; transition: all .15s var(--ease); }
.config-opt__box .icon { width: 16px; height: 16px; }
.config-opt input:checked + .config-opt__box { background: var(--teal-600); border-color: var(--teal-600); color: #fff; }
.config-opt input:focus-visible + .config-opt__box { outline: 3px solid var(--teal-500); outline-offset: 2px; }
.config-opt__label { font-weight: 600; color: var(--ink); }
.config-opt__price { margin-left: auto; font-size: .82rem; color: var(--ink-soft); font-weight: 600; }
.config-summary { position: sticky; top: 92px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 26px; box-shadow: var(--shadow-md); }
.config-total { display: flex; flex-direction: column; padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.config-total--accent .config-total__value { color: var(--teal-600); }
.config-total__label { font-size: .9rem; color: var(--ink-soft); font-weight: 600; }
.config-total__value { font-size: 1.9rem; font-weight: 800; color: var(--navy-900); letter-spacing: -.02em; }
.config-total__pre { font-size: .8rem; color: var(--ink-soft); font-weight: 600; }
.config-total__per { font-size: 1rem; color: var(--ink-soft); }
.config-summary .btn { margin-top: 20px; }
.note-line { text-align: center; color: var(--ink-soft); font-weight: 600; }

/* Side cards / industry / location */
.side-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.side-card h2, .side-card h3 { margin-top: 0; }
.local-line { margin-top: 16px; color: var(--ink-soft); font-weight: 600; font-size: .95rem; }

/* Founders */
.founder-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 360px)); gap: 24px; justify-content: center; }
.founder-card { text-align: center; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.founder-card:hover { box-shadow: var(--shadow-md); }
.founder-photo { width: 96px; height: 96px; margin: 0 auto 18px; border-radius: 50%; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy-800), var(--teal-600)); color: #fff; font-weight: 800; font-size: 1.5rem; }
.founder-role { color: var(--teal-600); font-weight: 700; margin: 0 0 8px; }
.founder-bio:empty { display: none; }
.founder-socials { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.social-btn { display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; font-size: .9rem; color: var(--navy-700); }
.social-btn:hover { border-color: var(--teal-500); color: var(--teal-600); }
.social-btn .icon { width: 18px; height: 18px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: start; }
.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; box-shadow: var(--shadow-md); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 700; color: var(--navy-900); margin-bottom: 6px; font-size: .95rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font: inherit; color: var(--ink); background: #fff; transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 3px rgba(15, 155, 145, .18); }
.field textarea { resize: vertical; }
.field-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 14px; padding: 12px 16px; border-radius: 10px; font-weight: 600; }
.form-status.is-success { background: #e6f6f1; color: #0c5e4f; }
.form-status.is-error { background: #fdecec; color: #a12626; }
.contact-aside h2 { margin-top: 0; }
.contact-direct { font-size: 1.1rem; font-weight: 600; color: var(--navy-900); margin: 0 0 8px; }
.contact-aside .check-list { margin-top: 24px; }

/* CTA band */
.cta-band { background: linear-gradient(120deg, var(--navy-900), var(--navy-700)); color: #fff; text-align: center; }
.cta-band__inner { max-width: 720px; margin: 0 auto; }
.cta-band__title { color: #fff; }
.cta-band .cta-actions { justify-content: center; }

/* Breadcrumb */
.breadcrumb { padding-top: 22px; }
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; font-size: .88rem; color: var(--ink-soft); }
.breadcrumb a { color: var(--ink-soft); font-weight: 600; }
.breadcrumb a:hover { color: var(--teal-600); }
.breadcrumb [aria-current="page"] { color: var(--navy-900); font-weight: 700; }
.crumb-sep { color: var(--line); }

/* Footer */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, .72); padding: 64px 0 36px; margin-top: 0; }
.footer-top { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; padding-bottom: 40px; border-bottom: 1px solid rgba(255, 255, 255, .12); }
.brand--footer { color: #fff; margin-bottom: 16px; }
.brand--footer:hover { color: #fff; }
.brand--footer .brand-mark { background: rgba(255, 255, 255, .12); }
.footer-def { max-width: 36ch; font-size: .95rem; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-contact a { color: #fff; font-weight: 600; }
.footer-contact a:hover { color: var(--teal-400); }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, .18); color: #fff; }
.footer-social a:hover { border-color: var(--teal-400); color: var(--teal-400); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.footer-col__title { color: #fff; font-size: .92rem; text-transform: uppercase; letter-spacing: .08em; margin: 0 0 14px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.footer-col a { color: rgba(255, 255, 255, .72); font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-legal { padding-top: 28px; font-size: .82rem; color: rgba(255, 255, 255, .55); }
.footer-legal p { margin: 0; }

/* Reveal animations */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s var(--ease), transform .6s var(--ease); will-change: opacity, transform; }
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ===== Visual-first additions ===== */

/* Oversized display headlines */
.display { font-size: clamp(2.7rem, 6.5vw, 5rem); line-height: 1.02; letter-spacing: -.035em; }
.display-sm { font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.06; letter-spacing: -.03em; }
.lede--tight { max-width: 40ch; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.center-block { text-align: center; }
.center-block .lede, .center-block .big-body { margin-left: auto; margin-right: auto; }
.center-block .cta-actions { justify-content: center; }
.h-inline { font-size: 1.3rem; margin-bottom: 14px; }
.band--tight { padding: clamp(32px, 4vw, 48px) 0; }
.band--navy { background: var(--navy-900); color: #fff; }

/* Hero refinements */
.trust-pills { list-style: none; display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 0; padding: 0; }
.trust-pills li { display: inline-flex; align-items: center; gap: 7px; padding: 8px 14px; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 600; font-size: .9rem; color: var(--navy-900); box-shadow: var(--shadow-sm); }
.trust-pills .icon { color: var(--teal-600); }

/* Big icons */
.feature-icon--lg { width: 60px; height: 60px; border-radius: 16px; }
.feature-icon--lg .icon { width: 30px; height: 30px; }
.feature-icon--xl { width: 76px; height: 76px; border-radius: 20px; margin: 0 auto 18px; }
.feature-icon--xl .icon { width: 38px; height: 38px; }

/* Big stat figures */
.big-stat { display: flex; flex-direction: column; gap: 6px; }
.big-stat__value { font-size: clamp(3.4rem, 8vw, 5.4rem); font-weight: 800; line-height: .95; letter-spacing: -.04em; color: var(--navy-900); }
.big-stat__label { font-size: 1.05rem; color: var(--ink-soft); max-width: 30ch; }
.big-stat__source { font-size: .8rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--teal-600); }
.big-stat--accent .big-stat__value { color: var(--teal-600); }
.big-stat--hero .big-stat__value { font-size: clamp(4rem, 11vw, 7rem); }
.stat-figure-band .big-stat__value { color: #fff; }
.stat-figure-band .big-stat__label { color: rgba(255,255,255,.82); }
.stat-figure-band .big-stat__source { color: var(--teal-400); }
.big-stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.stat-figure-band__note { text-align: center; color: rgba(255,255,255,.7); margin: 34px auto 0; max-width: 60ch; font-weight: 600; }

/* Problem split */
.problem-split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: center; }

/* Vendor consolidation diagram */
.vendor-diagram { display: grid; grid-template-columns: 1.3fr auto 1fr; gap: 28px; align-items: center; margin-top: 8px; }
.vendor-diagram__many { display: flex; flex-wrap: wrap; gap: 10px; }
.vendor-chip { padding: 12px 16px; background: #fff; border: 1px dashed #c9d4e2; border-radius: 12px; font-weight: 600; color: var(--ink-soft); }
.vendor-diagram__arrow { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--bg-tint); color: var(--teal-600); }
.vendor-diagram__arrow .icon { width: 28px; height: 28px; }
.vendor-diagram__one { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; padding: 24px; background: linear-gradient(135deg, var(--navy-900), var(--navy-700)); color: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md); font-weight: 700; }
.vendor-diagram__one .brand-mark { width: 48px; height: 48px; font-size: .95rem; }

/* AI line */
.ai-line { display: flex; align-items: center; gap: 14px; max-width: 760px; margin: 34px auto 0; padding: 18px 22px; background: var(--bg-tint); border-radius: var(--radius); color: var(--ink-soft); }
.ai-line strong { color: var(--navy-900); }
.ai-line .feature-icon { background: var(--navy-900); color: #fff; flex: none; }

/* Industry tiles */
.industry-tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-tile-grid--3 { grid-template-columns: repeat(3, 1fr); }
.industry-tile { display: flex; flex-direction: column; gap: 10px; padding: 28px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); color: var(--ink); transition: transform .25s var(--ease), box-shadow .25s var(--ease); }
.industry-tile:hover { box-shadow: var(--shadow-md); color: var(--ink); }
.industry-tile h2, .industry-tile h3 { font-size: 1.2rem; margin: 4px 0 0; }
.industry-tile p { color: var(--ink-soft); margin: 0; flex: 1; }
.industry-tile .link-arrow { margin-top: 4px; }
.quiet-row--center { justify-content: center; margin-top: 24px; }
.county-chips--center { justify-content: center; }
.sibling-row--center { justify-content: center; }

/* Page hero split (service pages) */
.page-hero--split { padding-bottom: clamp(32px, 5vw, 56px); }
.page-hero--split .hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.hero__visual--service { aspect-ratio: auto; }

/* Context split (service stat callout) */
.context-split { display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: center; }
.context-split__text { color: var(--ink-soft); font-size: 1.1rem; margin: 0; }

/* Browser frame */
.browser-frame { margin: 0 0 26px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-lg); background: #fff; }
.browser-frame__bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; background: var(--bg-soft); border-bottom: 1px solid var(--line); }
.browser-frame__bar > span { width: 11px; height: 11px; border-radius: 50%; background: #d7deea; }
.browser-frame__bar > span:nth-child(1) { background: #f3a59b; }
.browser-frame__bar > span:nth-child(2) { background: #f4d08a; }
.browser-frame__bar > span:nth-child(3) { background: #a7e0b6; }
.browser-frame__url { margin-left: 10px; flex: 1; background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 6px 12px; font-size: .82rem; color: var(--ink-soft); }
.browser-frame__body img { width: 100%; display: block; }
.browser-frame figcaption { padding: 14px 20px; color: var(--ink-soft); font-size: .92rem; }

/* Phone mock */
.phone-mock { width: 290px; max-width: 100%; margin: 0 auto; aspect-ratio: 290 / 560; background: linear-gradient(160deg, #11264a, #0b1f3a); border-radius: 38px; padding: 16px 14px; box-shadow: var(--shadow-lg); position: relative; }
.phone-mock__notch { position: absolute; top: 14px; left: 50%; transform: translateX(-50%); width: 110px; height: 22px; background: #0b1f3a; border-radius: 0 0 14px 14px; }
.phone-mock__screen { background: #f3f6fa; border-radius: 26px; height: 100%; padding: 38px 14px 18px; display: flex; flex-direction: column; gap: 10px; overflow: hidden; }
.chat-row--missed { text-align: center; }
.chat-tag { display: inline-block; background: #fdecec; color: #a12626; font-size: .72rem; font-weight: 700; padding: 5px 12px; border-radius: 999px; }
.chat-bubble { max-width: 82%; padding: 11px 14px; border-radius: 16px; font-size: .86rem; line-height: 1.4; }
.chat-bubble--out { align-self: flex-start; background: #fff; border: 1px solid var(--line); color: var(--ink); border-bottom-left-radius: 5px; }
.chat-bubble--in { align-self: flex-end; background: var(--navy-700); color: #fff; border-bottom-right-radius: 5px; }
.chat-bubble--link { align-self: flex-start; display: inline-flex; align-items: center; gap: 7px; background: var(--teal-600); color: #fff; font-weight: 700; }

/* Reviews mock */
.reviews-mock { max-width: 380px; margin: 0 auto; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.reviews-mock__stars { color: #f6b73c; font-size: 1.3rem; letter-spacing: 3px; }
.reviews-mock__text { font-weight: 700; color: var(--navy-900); font-size: 1.1rem; margin: 10px 0 18px; }
.reviews-mock__reply { display: flex; gap: 12px; padding: 16px; background: var(--bg-tint); border-radius: var(--radius); }
.reviews-mock__reply .brand-mark { width: 38px; height: 38px; font-size: .72rem; flex: none; }
.reviews-mock__reply p { margin: 0; font-size: .9rem; color: var(--ink-soft); }

/* Dashboard panel */
.dash-panel { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; }
.dash-panel__bar { display: flex; align-items: center; gap: 12px; padding: 16px 20px; background: var(--navy-900); color: #fff; }
.dash-panel__bar .brand-mark { width: 34px; height: 34px; font-size: .68rem; background: rgba(255,255,255,.14); }
.dash-panel__title { font-weight: 700; }
.dash-panel__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; padding: 20px; }
.dash-tile { display: flex; flex-direction: column; gap: 10px; padding: 20px; background: var(--bg-soft); border: 1px solid var(--line-soft); border-radius: var(--radius); font-weight: 700; color: var(--navy-900); }
.dash-panel__row { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; border-top: 1px solid var(--line-soft); color: var(--ink-soft); font-weight: 600; }
.dash-panel__row .icon { color: var(--teal-600); }

/* Responsive */
@media (max-width: 1024px) {
  .page-hero--split .hero__inner { grid-template-columns: 1fr; }
  .hero__visual--service { max-width: 480px; }
  .big-stat-grid { gap: 24px; }
  .industry-tile-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .problem-split, .vendor-diagram, .context-split { grid-template-columns: 1fr; gap: 24px; }
  .vendor-diagram__arrow { transform: rotate(90deg); margin: 0 auto; }
  .big-stat-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .big-stat { align-items: center; }
  .big-stat__label { max-width: 36ch; }
  .ai-line { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  .industry-tile-grid, .industry-tile-grid--3 { grid-template-columns: 1fr; }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 480px; }
  .pillar-grid, .lead-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .configurator { grid-template-columns: 1fr; }
  .config-summary { position: static; }
}
@media (max-width: 860px) {
  .site-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .two-col, .contact-layout { grid-template-columns: 1fr; gap: 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .stat-strip__list { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-strip li { border-right: 0; }
  .plan-grid { grid-template-columns: 1fr; }
  .lead-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .pillar-grid, .lead-grid, .feature-grid, .quote-grid, .portfolio-grid, .lead-grid--3, .footer-cols, .founder-grid { grid-template-columns: 1fr; }
  .stat-strip__list { grid-template-columns: 1fr; text-align: center; }
  .footer-cols { gap: 28px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn { width: 100%; }
}

/* Hero 3D + spacing refinements */
@media (max-width: 1024px) {
  .hero__visual--3d { min-height: 400px; margin-top: 8px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero__inner { gap: 32px; }
  .hero__visual--3d { min-height: 380px; }
}
@media (max-width: 560px) {
  .hero__visual--3d { min-height: 330px; }
  .hero-3d { max-width: 300px; }
  .hero-3d__chip--book { display: none; }
  .hero-3d__chip { font-size: .76rem; padding: 9px 12px; }
  .hero-3d__chip--review { right: -8px; }
  .hero-3d__chip--pay { right: 8px; }
  .trust-pills { gap: 8px; }
  .display { font-size: clamp(2.4rem, 9vw, 3rem); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
