/* =================================================================
   DESIGN TOKENS
   ================================================================= */
:root {
  --crimson: #E91D33;
  --crimson-dark: #C11226;
  --crimson-tint: #FDEDEF;
  --ink: #252528;
  --ink-soft: #46464D;
  --muted: #6E6E76;
  --olive: #9A9430;
  --olive-deep: #6B661C;
  --olive-tint: #F5F4E7;
  --bg: #FBFBFC;
  --band: #F3F3F5;
  --surface: #FFFFFF;
  --line: #E7E7EA;
  --line-soft: #EFEFF2;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow-card: 0 1px 2px rgba(37, 37, 40, .05), 0 8px 24px rgba(37, 37, 40, .06);
  --shadow-float: 0 2px 6px rgba(37, 37, 40, .07), 0 24px 64px rgba(37, 37, 40, .13);
  --wrap: 1180px;
  --font: 'Manrope', 'Helvetica Neue', Arial, sans-serif;
}

/* ============================= BASE ============================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden; 
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; letter-spacing: -0.015em; }
h1 { font-size: clamp(37.6px, 4.6vw, 56.8px); font-weight: 800; }
h2 { font-size: clamp(28px, 3.2vw, 40px); font-weight: 800; }
h3 { font-size: 19.52px; font-weight: 700; }

a { color: var(--crimson-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 3px solid var(--crimson);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection { background: var(--crimson-tint); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

/* Force all sections and our custom footer to break out of HubSpot's containers */
section, footer.site-footer { 
  padding: 96px 0; 
  width: 100vw !important;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
}

footer.site-footer {
  padding: 56px 0 40px; 
  display: block !important;
}

/* Hide ONLY HubSpot's default global footer so custom footer is visible */
div[data-global-resource-path*='footer-flex.html'],
.footer-container,
.hs-page-footer {
  display: none !important;
}

.band { background: var(--band); }

.eyebrow {
  display: inline-block;
  font-size: 12.8px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin-bottom: 14px;
}

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 16px; font-size: 16.96px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 10px 18px;
  z-index: 200; border-radius: 0 0 8px 0; font-weight: 600;
}
.skip-link:focus { left: 0; }

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font); font-size: 15.52px; font-weight: 700;
  padding: 13px 26px; border-radius: 9px; border: 1.5px solid transparent;
  cursor: pointer; text-decoration: none; white-space: nowrap;
  transition: background-color .18s ease-out, border-color .18s ease-out, color .18s ease-out, transform .18s ease-out;
}
.btn:hover { text-decoration: none; }
.btn .ic { width: 17px; height: 17px; flex: none; }

.btn-primary { background: var(--crimson); color: #fff; }
.btn-primary:hover { background: var(--crimson-dark); }

.btn-secondary { background: transparent; color: var(--ink); border-color: #C9C9C2; }
.btn-secondary:hover { border-color: var(--ink); background: #fff; }

.btn-on-dark { background: transparent; color: #fff; border-color: rgba(255, 255, 255, .4); }
.btn-on-dark:hover { border-color: #fff; }

.btn-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: 15.52px; color: var(--crimson-dark);
}
.btn-link .ic { width: 16px; height: 16px; transition: transform .18s ease-out; }
.btn-link:hover .ic { transform: translateX(3px); }

.ic { stroke: currentColor; fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ic-fill { fill: currentColor; stroke: none; }

/* ============================= HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(252, 252, 250, .92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease-out, box-shadow .2s ease-out;
  width: 100vw !important;
  left: 50%;
  margin-left: -50vw !important;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: 0 2px 16px rgba(37, 37, 40, .05); }

.nav-row { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 74px; }

.logo { display: inline-flex; align-items: center; color: var(--crimson); }
.logo svg { height: 34px; width: auto; }

.nav-left { display: flex; align-items: center; gap: 14px; }
.nav-actions { display: flex; align-items: center; gap: 22px; }
.nav-login { font-weight: 700; font-size: 15.2px; color: var(--ink); }
.nav-login:hover { color: var(--crimson-dark); text-decoration: none; }

.menu-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex: none; border: 1px solid var(--line);
  border-radius: 10px; background: var(--surface); cursor: pointer; color: var(--ink);
  transition: border-color .18s ease-out, background-color .18s ease-out;
}
.menu-toggle:hover { border-color: #C9C9C9; }
.menu-toggle svg { width: 20px; height: 20px; }

.menu-scrim {
  position: fixed; inset: 0; z-index: 150; background: rgba(37, 37, 40, .42);
  opacity: 0; visibility: hidden; transition: opacity .25s ease-out, visibility .25s ease-out;
}
.menu-scrim.open { opacity: 1; visibility: visible; }

.menu-panel {
  position: fixed; top: 0; left: 0; z-index: 160; height: 100%; width: 340px; max-width: 86vw;
  background: var(--surface); box-shadow: 8px 0 40px rgba(37, 37, 40, .18);
  transform: translateX(-100%); transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  display: flex; flex-direction: column; overflow-y: auto; overscroll-behavior: contain;
}
.menu-panel.open { transform: none; }
.menu-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px; border-bottom: 1px solid var(--line-soft);
}
.menu-head .logo svg { height: 28px; }
.menu-close {
  width: 38px; height: 38px; border: none; background: transparent; cursor: pointer;
  color: var(--muted); border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.menu-close:hover { background: var(--band); color: var(--ink); }
.menu-close svg { width: 20px; height: 20px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; }
.menu-body { padding: 20px 22px 28px; display: flex; flex-direction: column; gap: 26px; }
.menu-group h3 {
  font-size: 11.52px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.menu-group ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.menu-group a {
  display: block; padding: 9px 10px; margin: 0 -10px; border-radius: 8px;
  font-weight: 600; font-size: 16px; color: var(--ink);
}
.menu-group a:hover { background: var(--band); text-decoration: none; color: var(--crimson-dark); }
.menu-cta { display: flex; flex-direction: column; gap: 10px; margin-top: 4px; }
.menu-cta .btn { width: 100%; }

/* ============================== HERO ============================= */
.hero { position: relative; padding: 52px 0 0; }
.hero .wrap { position: relative; z-index: 1; }

.hero-bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; pointer-events: none; }
.hero-bg::before, .hero-bg::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(60px);
}
.hero-bg::before {
  width: 620px; height: 620px; top: -220px; left: -140px;
  background: radial-gradient(circle, rgba(233, 29, 51, .16), rgba(233, 29, 51, 0) 68%);
  animation: bloom-a 30s ease-in-out infinite alternate;
}
.hero-bg::after {
  width: 560px; height: 560px; top: -160px; right: -120px;
  background: radial-gradient(circle, rgba(193, 18, 38, .13), rgba(193, 18, 38, 0) 68%);
  animation: bloom-b 34s ease-in-out infinite alternate;
}
.hero-grid-dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(37, 37, 40, .05) 1px, transparent 1.4px);
  background-size: 30px 30px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 32%, #000 0%, transparent 72%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 32%, #000 0%, transparent 72%);
}
@keyframes bloom-a { from { transform: translate(0, 0) scale(1); } to { transform: translate(60px, 40px) scale(1.12); } }
@keyframes bloom-b { from { transform: translate(0, 0) scale(1); } to { transform: translate(-50px, 30px) scale(1.1); } }

.hero-copy { max-width: 850px; margin: 0 auto; text-align: center; }
.hero-copy h1 {
  background: linear-gradient(92deg, var(--ink) 0%, #8A1B2B 55%, var(--crimson) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy .sub { margin: 22px auto 0; font-size: 17.28px; max-width: 62ch; }
.hero-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 32px; }

.store-row { margin-top: 36px; }
.store-row p { font-size: 14.08px; font-weight: 600; color: var(--muted); margin-bottom: 12px; }
.store-badges { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--ink); color: #fff;
  border-radius: 8px; padding: 8px 16px 8px 13px;
  line-height: 1.15;
  transition: background-color .18s ease-out;
}
.store-badge:hover { 
  background: #000 !important; 
  text-decoration: none; 
  color: #fff !important;
}
.store-badge:hover span,
.store-badge:hover svg,
.store-badge:hover .ic-fill {
  color: #fff !important;
  fill: #fff !important;
}
.store-badge svg { width: 22px; height: 22px; flex: none; }
.store-badge .sb-top { display: block; font-size: 9.6px; letter-spacing: .04em; text-transform: uppercase; opacity: .85; }
.store-badge .sb-name { display: block; font-size: 15.68px; font-weight: 700; }

.hero-stage { position: relative; max-width: 1040px; margin: 8px auto -90px; z-index: 2; }
.eco { width: 100%; height: auto; display: block; }
.eco .eco-line { stroke: #D8D8DE; stroke-width: 1.5; fill: none; stroke-dasharray: 3 8; animation: eco-flow 26s linear infinite; }
.eco .eco-pill { fill: #fff; stroke: var(--line); stroke-width: 1; }
.eco .eco-dot { fill: var(--crimson); }
.eco .eco-label { font: 600 13px var(--font); fill: var(--ink); }
.eco .eco-node {
  transform-box: fill-box; transform-origin: center;
  animation: eco-float 7s ease-in-out infinite alternate;
}
.eco .eco-node:nth-of-type(odd) { animation-duration: 8.5s; animation-delay: 1.4s; }
.eco-packet { fill: var(--crimson); opacity: 0; offset-rotate: 0deg; }
.eco-packet.pk-c { fill: var(--crimson); }
@supports (offset-path: path("M0 0H1")) {
  .eco-packet { animation: eco-packet 9s linear infinite; }
}

.hero-stage .browser-frame {
  position: absolute; left: 15%; top: 20%; width: 70%;
  animation: hero-in .8s ease-out .1s backwards;
}

@keyframes eco-flow { to { stroke-dashoffset: -220; } }
@keyframes eco-float { from { transform: translateY(0); } to { transform: translateY(-5px); } }
@keyframes hero-in { from { opacity: 0; transform: translateY(26px) scale(.985); } }
@keyframes eco-packet {
  0%   { offset-distance: 0%;   opacity: 0; }
  12%  { opacity: .55; }
  82%  { opacity: .55; }
  96%  { offset-distance: 100%; opacity: 0; }
  100% { offset-distance: 100%; opacity: 0; }
}

.browser-frame {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-float);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; border-bottom: 1px solid var(--line-soft); background: #F7F7F8;
}
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #E1E1E6; }
.browser-bar .url {
  margin-left: 10px; font-size: 11.84px; color: var(--muted);
  background: #EFEFF2; border-radius: 6px; padding: 3px 14px;
}

/* =========================== TRUST BAR =========================== */
.trust { padding: 168px 0 72px; text-align: center; }
.trust .statement { font-size: 17.92px; font-weight: 700; color: var(--ink); }
.trust .industries { margin-top: 10px; font-size: 15.2px; font-weight: 600; letter-spacing: .06em; color: var(--muted); text-transform: uppercase; }

.accred-bar {
  max-width: 860px; margin: 0 auto 44px; padding: 24px 30px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 40px;
}
.accred-bar img { max-height: 48px; width: auto; max-width: 140px; object-fit: contain; }

/* ====================== SECTION 2: BENEFITS ====================== */
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px 28px;
  box-shadow: var(--shadow-card);
}
.card .card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--olive-tint); color: var(--olive-deep);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card .card-icon svg { width: 23px; height: 23px; }
.card h3 { font-size: 17.28px; margin-bottom: 8px; }
.card p { font-size: 15.2px; }

/* ============== SECTION 2B: PLATFORM HIGHLIGHTS BAR ============== */
.pillars { padding: 0 0 96px; }
.pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1040px; margin: 0 auto; }
.pillar { text-align: center; padding: 8px 32px; }
.pillar + .pillar { border-left: 1px solid var(--line); }
.pillar .p-icon {
  width: 46px; height: 46px; margin: 0 auto 16px; color: var(--crimson-dark);
  display: flex; align-items: center; justify-content: center;
}
.pillar .p-icon svg { width: 34px; height: 34px; stroke-width: 1.6; }
.pillar h3 { font-size: 20.48px; line-height: 1.25; }
.pillar p { font-size: 14.88px; color: var(--muted); margin: 10px auto 0; max-width: 34ch; }

/* ================= SECTION 3: BUILT AROUND WORKFLOW ============== */
.workflow-grid { display: grid; grid-template-columns: 360px 1fr; gap: 48px; align-items: stretch; }
.steps { display: flex; flex-direction: column; gap: 6px; }
.step {
  text-align: left; background: transparent; border: none; border-left: 3px solid var(--line);
  font-family: var(--font); cursor: pointer; padding: 16px 20px; border-radius: 0 10px 10px 0;
  transition: background-color .2s ease-out, border-color .2s ease-out;
}
.step .step-name { display: block; font-size: 16.8px; font-weight: 700; color: var(--ink); }
.step .step-copy { display: block; font-size: 14.72px; color: var(--muted); margin-top: 3px; }
.step:hover { background: #fff; }
.step[aria-current="true"] { border-left-color: var(--crimson); background: #fff; box-shadow: var(--shadow-card); }
.step[aria-current="true"] .step-name { color: var(--crimson-dark); }

.shot-panel {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: #F1F1EC;
  aspect-ratio: 16 / 9; box-shadow: var(--shadow-card);
}
.shot-panel img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 14px;
  opacity: 0; transition: opacity .45s ease-out;
}
.shot-panel img.active { opacity: 1; }

/* ============ SECTION 3B: SEE ADASTRACONNECT IN ACTION =========== */
/* Video Cards Inline Embed Styling */
.action-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
button.video-card {
  display: block; width: 100%; text-align: left; padding: 0; margin: 0; cursor: pointer; font-family: inherit;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform .2s ease-out, box-shadow .2s ease-out, border-color .2s ease-out;
}
button.video-card:focus { outline: none; }
button.video-card:focus-visible { outline: 3px solid var(--crimson); outline-offset: 3px; }
button.video-card:hover { transform: translateY(-2px); border-color: #CFCFC6; box-shadow: var(--shadow-float); }
button.video-card .poster { display: block; position: relative; aspect-ratio: 16 / 10; background: #F1F1EC; }
button.video-card .poster img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
button.video-card .poster::after { content: ""; position: absolute; inset: 0; background: rgba(37, 37, 40, .08); }

.play-badge {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; border-radius: 50%; z-index: 1;
  background: rgba(255, 255, 255, .94); box-shadow: 0 4px 16px rgba(37, 37, 40, .22);
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease-out;
}
button.video-card:hover .play-badge { transform: translate(-50%, -50%) scale(1.08); }
.play-badge svg { width: 18px; height: 18px; margin-left: 3px; fill: var(--crimson); }
button.video-card .video-title { display: block; padding: 14px 16px; font-weight: 700; font-size: 15.2px; color: var(--ink); }

button.video-card.playing {
  transform: none !important; box-shadow: var(--shadow-card) !important; cursor: default; border-color: var(--line);
}
button.video-card.playing .poster, button.video-card.playing .video-title { display: none; }
.video-card-iframe-wrap {
  position: relative; width: 100%; padding-bottom: 62.5%; height: 0; background: #000;
}
.video-card-iframe-wrap iframe {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}
.action-cta { text-align: center; margin-top: 40px; }

/* ===================== SECTION 4: INTEGRATIONS =================== */
.dark-band { background: var(--ink); color: #C9C9CE; }
.dark-band h2 { color: #fff; }
.integrations-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 64px; align-items: center; }
.integrations-grid .lead { margin-top: 18px; font-size: 16.48px; }
.integrations-grid .cta-row { margin-top: 32px; }
.integration-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.integration-list li {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-sm); padding: 15px 20px;
  font-weight: 600; color: #EDEDEE; font-size: 15.68px;
}
.integration-list .tick {
  width: 26px; height: 26px; flex: none; border-radius: 50%;
  background: rgba(154, 148, 48, .25); color: #CFC97E;
  display: flex; align-items: center; justify-content: center;
}
.integration-list .tick svg { width: 14px; height: 14px; }

/* ================== SECTION 5: DESIGNED FOR EVERY USER =========== */
.users-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: stretch; }
.user-card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 32px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
}
.user-card h3 { font-size: 23.2px; }
.user-card .role-tag {
  display: inline-block; font-size: 11.84px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--olive-deep); background: var(--olive-tint); border-radius: 99px; padding: 4px 12px; margin-bottom: 14px;
  align-self: flex-start;
}
.user-shot {
  position: relative; margin: 22px 0; border-radius: var(--radius-sm);
  border: 1px solid var(--line); background: #F1F1EC; overflow: hidden;
  height: auto; min-height: 300px; flex: 1 1 auto;
}
.user-shot img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 12px; opacity: 0; transition: opacity .45s ease-out;
}
.user-shot img.active { opacity: 1; }
.feature-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.feature-list button {
  font-family: var(--font); font-size: 14.08px; font-weight: 600; color: var(--ink-soft);
  background: #fff; border: 1px solid var(--line); border-radius: 99px;
  padding: 8px 16px; cursor: pointer;
  transition: border-color .18s ease-out, color .18s ease-out, background-color .18s ease-out;
}
.feature-list button:hover { border-color: var(--olive); }
.feature-list button[aria-current="true"] { background: var(--ink); border-color: var(--ink); color: #fff; }
.user-card .card-ctas { display: flex; flex-wrap: wrap; gap: 12px 20px; align-items: center; margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.user-card .user-shot { margin-bottom: 26px; }

/* ============ SECTION 6: PEOPLE BEHIND EVERY CONVERSATION ======== */
.people-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: 56px; align-items: center; }
.people-shot {
  position: relative; border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--line); background: #F1F1EC;
  aspect-ratio: 16 / 9.5; box-shadow: var(--shadow-float);
}
.people-shot img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 12px; opacity: 0; transition: opacity .45s ease-out;
}
.people-shot img.active { opacity: 1; }
.people-points { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 8px; }
.people-points button {
  width: 100%; text-align: left; font-family: var(--font); cursor: pointer;
  background: transparent; border: 1px solid transparent; border-radius: var(--radius-sm);
  padding: 14px 16px; transition: background-color .2s ease-out, border-color .2s ease-out;
}
.people-points button:hover { background: #fff; border-color: var(--line); }
.people-points button[aria-current="true"] { background: #fff; border-color: var(--line); box-shadow: var(--shadow-card); }
.people-points strong { display: block; color: var(--ink); font-size: 16.32px; font-weight: 700; }
.people-points span { display: block; font-size: 14.88px; color: var(--muted); margin-top: 3px; }
.people-ctas { display: flex; flex-wrap: wrap; gap: 12px 22px; align-items: center; margin-top: 30px; }

/* ====================== SECTION 7: DIGITAL VOS =================== */
.vos { background: var(--olive-tint); }
.vos .section-head p { max-width: 62ch; margin-left: auto; margin-right: auto; }

.vos-flow { max-width: 1020px; margin: 0 auto 64px; }
.vos-track { position: relative; height: 4px; margin: 0 40px 26px; }
.vos-track svg { position: absolute; inset: 0; width: 100%; height: 4px; display: block; }
.vos-track .rail { stroke: #DEDCC2; stroke-width: 3; }
.vos-track .fill { stroke: var(--olive); stroke-width: 3; stroke-dasharray: 1000; stroke-dashoffset: 1000; }
.vos-flow.play .vos-track .fill { transition: stroke-dashoffset 2.6s ease-out .2s; stroke-dashoffset: 0; }
.vos-steps { list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: vos; }
.vos-step { text-align: center; opacity: 0; transform: translateY(14px); }
.vos-flow.play .vos-step { transition: opacity .4s ease-out, transform .4s ease-out; opacity: 1; transform: none; }
.vos-flow.play .vos-step:nth-child(1) { transition-delay: .25s; }
.vos-flow.play .vos-step:nth-child(2) { transition-delay: .8s; }
.vos-flow.play .vos-step:nth-child(3) { transition-delay: 1.35s; }
.vos-flow.play .vos-step:nth-child(4) { transition-delay: 1.9s; }
.vos-flow.play .vos-step:nth-child(5) { transition-delay: 2.45s; }
.vos-step .dot {
  counter-increment: vos;
  width: 40px; height: 40px; margin: -48px auto 14px; border-radius: 50%;
  background: #fff; border: 2px solid var(--olive); color: var(--olive-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 15.2px; position: relative; z-index: 1;
}
.vos-step .dot::before { content: counter(vos); }
.vos-step p { font-size: 14.72px; font-weight: 700; color: var(--ink); line-height: 1.4; }

.vos-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.vos .sub-header { text-align: center; font-size: 22.4px; margin-bottom: 30px; }
.vos-cards .card { padding: 26px 24px; }
.vos-cards .card h3 { font-size: 16px; }
.vos-cards .card p { font-size: 14.72px; }

.vos-proof { display: grid; grid-template-columns: 1fr 1fr 1.6fr; gap: 20px; margin-top: 56px; align-items: stretch; }
.vos-proof figure {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 16px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 12px;
}
.vos-proof .proof-img {
  flex: 1; display: flex; align-items: center; justify-content: center;
  background: #F7F7F2; border-radius: var(--radius-sm); overflow: hidden; min-height: 0;
}
.vos-proof img { max-height: 380px; width: auto; max-width: 100%; object-fit: contain; }
.vos-proof figcaption { font-size: 13.6px; font-weight: 700; color: var(--ink); text-align: center; }

.vos-close { text-align: center; margin-top: 64px; }
.vos-close h3 { font-size: 24px; }
.vos-close p { max-width: 58ch; margin: 12px auto 0; }

/* ============ SECTION 8: EVERYTHING YOU NEED IN ONE PLACE ======== */
.tile-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tile {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 22px 20px; display: flex; align-items: center; gap: 14px;
  font-weight: 700; color: var(--ink); font-size: 15.2px;
  transition: border-color .2s ease-out, box-shadow .2s ease-out;
}
.tile:hover { border-color: #CFCFC6; box-shadow: var(--shadow-card); }
.tile svg { width: 22px; height: 22px; flex: none; color: var(--olive-deep); }

/* ================== SECTION 9: RESOURCES AND SUPPORT ============= */
.resource-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.resource-card {
  display: block; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 38px 36px; box-shadow: var(--shadow-card);
  transition: border-color .2s ease-out, box-shadow .2s ease-out, transform .2s ease-out;
}
.resource-card:hover { text-decoration: none; border-color: #CFCFC6; box-shadow: var(--shadow-float); transform: translateY(-2px); }
.resource-card .card-icon {
  width: 50px; height: 50px; border-radius: 13px; margin-bottom: 20px;
  background: var(--crimson-tint); color: var(--crimson-dark);
  display: flex; align-items: center; justify-content: center;
}
.resource-card .card-icon svg { width: 24px; height: 24px; }
.resource-card h3 { font-size: 20px; margin-bottom: 8px; }
.resource-card p { color: var(--ink-soft); font-size: 15.52px; }
.resource-card .go { margin-top: 20px; }

/* ================ SECTION 10: SECURITY AND COMPLIANCE ============ */
.security-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 980px; margin: 0 auto; }
.security-item {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm); padding: 20px 22px;
  font-weight: 700; color: #EDEDEE; font-size: 15.52px;
}
.security-item svg { width: 22px; height: 22px; flex: none; color: #CFC97E; }

/* ====================== SECTION 11: REAL RESULTS ================= */
.stats-bar {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 880px; margin: 0 auto 56px; padding: 30px 24px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: 18px; box-shadow: var(--shadow-card);
}
.stat { text-align: center; padding: 0 18px; }
.stat + .stat { border-left: 1px solid var(--line-soft); }
.stat-label {
  display: block; font-size: 12.48px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--ink);
}
.stat-value {
  display: block; margin-top: 6px;
  font-size: clamp(30.4px, 3.4vw, 41.6px); font-weight: 800;
  color: var(--crimson); letter-spacing: -.01em; line-height: 1.1;
  text-transform: uppercase;
}
.results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.results-grid .card { border-top: 3px solid var(--crimson); }
.results-grid .card h3 { font-size: 16.32px; }

/* =================== SECTION 12: WHY ADASTRACONNECT ============== */
.why-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.why-inner .subhead { margin-top: 16px; font-size: 18.88px; font-weight: 700; color: var(--ink); }
.why-inner p { margin-top: 20px; font-size: 16.64px; }

/* ========================= SECTION 13: FAQ ======================= */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: transparent; border: none; cursor: pointer; text-align: left;
  font-family: var(--font); font-size: 16.8px; font-weight: 700; color: var(--ink);
  padding: 22px 4px;
}
.faq-q:hover { color: var(--crimson-dark); }
.faq-q .chev { width: 20px; height: 20px; flex: none; color: var(--muted); transition: transform .25s ease-out; }
.faq-q[aria-expanded="true"] .chev { transform: rotate(180deg); }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .3s ease-out; }
.faq-a > div { overflow: hidden; }
.faq-a p { padding: 0 4px 24px; max-width: 68ch; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* =========================== FINAL CTA =========================== */
.final-cta { text-align: center; }
.final-cta h2 { color: #fff; }
.final-cta .subhead { margin-top: 14px; font-size: 17.6px; color: #C9C9CE; }
.final-cta .hero-ctas { justify-content: center; margin-top: 34px; }

/* ===================== BOOK A DEMO (form) ======================= */
#book-demo { scroll-margin-top: 84px; }
.book-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.book-intro h2 { color: #fff; }
.book-intro .subhead { margin-top: 16px; font-size: 17.6px; color: #C9C9CE; max-width: 46ch; }
.book-points { list-style: none; margin-top: 26px; display: flex; flex-direction: column; gap: 12px; }
.book-points li { display: flex; align-items: flex-start; gap: 12px; color: #E4E4E7; font-weight: 600; }
.book-points .tick {
  width: 24px; height: 24px; flex: none; border-radius: 50%; margin-top: 1px;
  background: rgba(233, 29, 51, .18); color: #F7A6B2;
  display: flex; align-items: center; justify-content: center;
}
.book-points .tick svg { width: 13px; height: 13px; }
.book-login { margin-top: 26px; font-size: 15.2px; color: #A9A9B0; }
.book-login a { color: #fff; font-weight: 700; }

.book-card { background: var(--surface); border-radius: 16px; padding: 32px; box-shadow: var(--shadow-float); }
.book-card h3 { font-size: 20.8px; }
.book-card .card-note { margin-top: 6px; font-size: 14.72px; color: var(--muted); }
.book-form { margin-top: 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.12px; font-weight: 700; color: var(--ink); }
.field .req { color: var(--crimson); }
.field .opt { font-weight: 600; color: var(--muted); }
.field input, .field select, .field textarea {
  font-family: var(--font); font-size: 15.52px; color: var(--ink);
  padding: 11px 13px; border: 1px solid var(--line); border-radius: 9px;
  background: var(--surface); width: 100%;
  transition: border-color .16s ease-out, box-shadow .16s ease-out;
}
.field textarea { resize: vertical; min-height: 92px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--crimson); box-shadow: 0 0 0 3px var(--crimson-tint);
}
.book-form .btn-primary { grid-column: 1 / -1; width: 100%; padding: 15px; font-size: 16px; }
.book-privacy { grid-column: 1 / -1; font-size: 12.8px; color: var(--muted); text-align: center; }
.book-success {
  display: none; text-align: center; padding: 30px 10px;
}
.book-success .ok {
  width: 56px; height: 56px; margin: 0 auto 16px; border-radius: 50%;
  background: var(--crimson-tint); color: var(--crimson-dark);
  display: flex; align-items: center; justify-content: center;
}
.book-success .ok svg { width: 28px; height: 28px; stroke: currentColor; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
.book-success h3 { font-size: 20.8px; }
.book-success p { margin-top: 8px; color: var(--ink-soft); }
.book-card.sent .book-form { display: none; }
.book-card.sent .book-success { display: block; }

/* ============================= FOOTER ============================ */
.site-footer { background: #1D1D20; color: #A9A9B0; padding: 56px 0 40px; font-size: 14.72px; }
.footer-row { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 32px; align-items: flex-start; }
.footer-logo { color: #fff; }
.footer-logo svg { height: 30px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 12px 32px; list-style: none; }
.footer-links a { color: #D6D6DA; font-weight: 600; }
.footer-links a:hover { color: #fff; }
.footer-legal { margin-top: 36px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .1); font-size: 13.12px; }

/* ======================= SCROLL REVEAL =========================== */
.js [data-reveal] { opacity: 0; transform: translateY(20px); transition: opacity .4s ease-out, transform .4s ease-out; transition-delay: var(--d, 0s); }
.js [data-reveal].revealed { opacity: 1; transform: none; }

/* ========================= REDUCED MOTION ======================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .vos-step { opacity: 1; transform: none; }
  .vos-track .fill { stroke-dashoffset: 0; }
  .eco-packet { display: none; }
}

/* ========================== RESPONSIVE =========================== */
@media (max-width: 1024px) {
  section, footer.site-footer { padding: 76px 0; }
  .workflow-grid { grid-template-columns: 1fr; gap: 28px; }
  .action-grid { grid-template-columns: repeat(2, 1fr); }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .integrations-grid { grid-template-columns: 1fr; gap: 40px; }
  .users-grid { grid-template-columns: 1fr; }
  .people-grid { grid-template-columns: 1fr; gap: 36px; }
  .vos-cards { grid-template-columns: repeat(2, 1fr); }
  .vos-proof { grid-template-columns: 1fr 1fr; }
  .vos-proof figure:last-child { grid-column: 1 / -1; }
  .tile-grid { grid-template-columns: repeat(3, 1fr); }
  .results-grid { grid-template-columns: repeat(2, 1fr); }
  .security-grid { grid-template-columns: repeat(2, 1fr); }
  .book-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 860px) {
  .hero-stage .eco { display: none; }
  .hero-stage .browser-frame { position: static; width: 100%; }
}
@media (max-width: 700px) {
  body { font-size: 16px; }
  section, footer.site-footer { padding: 60px 0; }
  .wrap { padding: 0 20px; }
  .nav-row { height: 64px; }
  .logo svg { height: 26px; }
  .nav-login { display: none; }
  .nav-actions .btn-primary { display: none; }
  .hero { padding-top: 40px; }
  .hero-copy h1 { font-size: clamp(29.6px, 8.4vw, 40px); }
  .hero-copy .sub { font-size: 16px; }
  .hero-stage { margin-bottom: -60px; }
  .trust { padding-top: 120px; }
  .benefit-grid, .action-grid, .tile-grid, .resource-grid, .results-grid, .security-grid, .vos-cards, .vos-proof { grid-template-columns: 1fr; }
  .vos-track { display: none; }
  .vos-steps { grid-template-columns: 1fr; gap: 20px; text-align: left; }
  .vos-step { display: flex; align-items: center; gap: 16px; text-align: left; }
  .vos-step .dot { margin: 0; flex: none; }
  .user-card { padding: 26px 22px; }
  .pillars-grid { grid-template-columns: 1fr; gap: 28px; }
  .pillar + .pillar { border-left: none; border-top: 1px solid var(--line); padding-top: 28px; }
  .stats-bar { padding: 20px 8px; }
  .stat { padding: 0 8px; }
  .stat-label { font-size: 9.6px; letter-spacing: .06em; }
  .stat-value { font-size: 20.8px; }
  .final-cta .hero-ctas { flex-direction: column; align-items: center; }
  .book-form { grid-template-columns: 1fr; }
  .book-card { padding: 24px; }
  .accred-bar { gap: 24px; padding: 20px; }
  .accred-bar img { max-height: 36px; max-width: 100px; }
}