/* ==========================================================================
   Helios IT — design system for the IT-company demo template.

   Deliberately NOT the owner's site: this is a LIGHT enterprise-SaaS look —
   white canvas, generous whitespace, a single confident blue accent, crisp
   bordered cards, a centred hero, and dark navy "feature bands" for contrast.
   Self-contained; only this site loads this file.
   ========================================================================== */

:root {
  --bg:        #ffffff;
  --bg-alt:    #f4f7fc;   /* tinted panels */
  --ink:       #0f1b33;
  --ink-2:     #26364f;
  --muted:     #566079;   /* body on light */
  --muted-2:   #8592ab;

  --accent:    #2563eb;
  --accent-600:#1d4ed8;
  --accent-050:#eef4ff;
  --accent-ink:#ffffff;

  --navy:      #0b1220;   /* dark feature bands */
  --navy-2:    #111b30;
  --on-navy:   #dbe6ff;
  --on-navy-mut:#8fa2c6;

  --line:      #e4e9f2;
  --line-2:    #d7deea;

  --radius:   16px;
  --radius-sm:11px;
  --wrap: 1140px;
  --pad: clamp(20px, 5vw, 40px);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow:    0 20px 48px -26px rgba(15, 27, 51, .28);
  --shadow-sm: 0 8px 24px -16px rgba(15, 27, 51, .22);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

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

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.022em; color: var(--ink); font-weight: 750; }
h1 { font-size: clamp(2.3rem, 6vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.6vw, 2.7rem); }
h3 { font-size: 1.18rem; }
p  { margin: 0 0 1rem; overflow-wrap: break-word; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.center { text-align: center; }
.accent { color: var(--accent); }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--accent); color: #fff; padding: 10px 16px; border-radius: 10px; font-weight: 600; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---- eyebrow + lead ---------------------------------------------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); background: var(--accent-050);
  padding: 6px 12px; border-radius: 999px; margin: 0 0 1.1rem;
}
.lead { font-size: clamp(1.02rem, 1.6vw, 1.24rem); color: var(--muted); max-width: 64ch; }

/* ---- buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-weight: 640; font-size: .98rem; line-height: 1; padding: 13px 22px;
  border-radius: 11px; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn i, .btn svg { width: 18px; height: 18px; }
.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 12px 26px -12px rgba(37,99,235,.6); }
.btn-primary:hover { background: var(--accent-600); transform: translateY(-2px); box-shadow: 0 18px 34px -14px rgba(37,99,235,.7); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-on-dark { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.24); }
.btn-on-dark:hover { background: rgba(255,255,255,.18); }

/* ---- nav (light, airy) ------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; gap: 20px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 11px; min-width: 0; }
.brand-mark { flex: none; }
.brand-mark .mark-disc { color: var(--accent); }
.brand-mark .mark-rays { stroke: var(--accent); }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; min-width: 0; }
.brand-name { font-weight: 780; font-size: 1.1rem; letter-spacing: -.02em; color: var(--ink); }
.brand-sub { font-size: .7rem; color: var(--muted-2); letter-spacing: .09em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; margin: 0 0 0 auto; padding: 0; list-style: none; }
.nav-links > li { display: flex; }
.nav-links a { padding: 9px 13px; border-radius: 9px; color: var(--ink-2); font-weight: 550; font-size: .95rem; transition: color .15s, background .15s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); background: var(--accent-050); }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; color: var(--ink) !important; font-weight: 640; }
.nav-phone i { width: 16px; height: 16px; color: var(--accent); }
.nav-cta { background: var(--accent); color: #fff !important; font-weight: 660 !important; padding: 10px 18px !important; }
.nav-cta:hover { background: var(--accent-600) !important; transform: translateY(-1px); }

.nav-burger { display: none; margin-left: auto; width: 44px; height: 44px; border-radius: 10px; cursor: pointer; align-items: center; justify-content: center; flex-direction: column; gap: 5px; border: 1px solid var(--line-2); background: #fff; }
.nav-burger span { width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: .2s; }

@media (max-width: 900px) {
  .nav-burger { display: flex; }
  .nav-links {
    position: fixed; inset: 72px 0 auto 0; margin: 0; flex-direction: column; align-items: stretch;
    gap: 4px; padding: 16px var(--pad) 24px; background: #fff;
    border-bottom: 1px solid var(--line); transform: translateY(-120%);
    transition: transform .28s ease; box-shadow: var(--shadow); max-height: calc(100vh - 72px); overflow-y: auto;
  }
  .nav-toggle:checked ~ .nav-links { transform: translateY(0); }
  .nav-links a { padding: 13px; font-size: 1.02rem; }
  .nav-cta, .nav-phone { justify-content: center; }
  .nav-cta-li, .nav-phone-item { margin-top: 6px; }
}

/* ---- sections ---------------------------------------------------------- */
.section { position: relative; padding: clamp(66px, 9vw, 120px) 0; }
.section-alt { background: var(--bg-alt); }
.section-head { max-width: 64ch; margin-bottom: clamp(36px, 5vw, 58px); }
.section-head.head-center { margin-inline: auto; text-align: center; }
.section-head.head-center .eyebrow { display: inline-flex; }
.section-head .lead { margin-top: .5rem; }

/* Dark navy feature band (used by the Process/Steps block) */
.section-dark { position: relative; background: var(--navy); color: var(--on-navy); overflow: hidden; }
.section-dark::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(50% 60% at 85% 0%, rgba(37,99,235,.28), transparent 60%),
              radial-gradient(46% 60% at 8% 100%, rgba(14,165,233,.22), transparent 60%);
}
.section-dark > .wrap { position: relative; z-index: 1; }
.section-dark h1, .section-dark h2, .section-dark h3 { color: #fff; }
.section-dark .lead { color: var(--on-navy-mut); }
.section-dark .eyebrow { background: rgba(37,99,235,.18); color: #bcd0ff; }

/* ---- hero (centred) ---------------------------------------------------- */
.hero {
  position: relative; overflow: hidden; text-align: center;
  padding: clamp(72px, 11vw, 138px) 0 clamp(56px, 8vw, 100px);
  background:
    radial-gradient(60% 60% at 50% -10%, var(--accent-050), transparent 62%),
    linear-gradient(180deg, #fff 0%, var(--bg-alt) 100%);
}
.hero::before {   /* subtle blueprint dot grid */
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(rgba(15,27,51,.055) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
          mask-image: radial-gradient(70% 60% at 50% 30%, #000, transparent 75%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-inner { max-width: 900px; margin-inline: auto; }
.hero h1 { margin-bottom: .3em; }
.hero-sub { font-size: clamp(1.06rem, 1.9vw, 1.34rem); color: var(--muted); max-width: 60ch; margin-inline: auto; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 30px 0 0; }
@media (max-width: 460px) { .hero-cta .btn { width: 100%; } }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px 24px; justify-content: center; margin: 28px 0 0; padding: 0; list-style: none; }
.hero-badges li { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; color: var(--muted); }
.hero-badges i { width: 17px; height: 17px; color: var(--accent); }

/* full-width quick-start strip under the hero */
.quickstart {
  margin: clamp(40px, 6vw, 66px) auto 0; max-width: 980px; text-align: left;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: clamp(22px, 3vw, 30px);
}
.quickstart-head { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.qs-kicker { flex: none; width: 40px; height: 40px; border-radius: 11px; background: var(--accent-050); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; }
.qs-kicker i { width: 21px; height: 21px; }
.quickstart-head h2 { font-size: 1.2rem; margin: 0; }
.qs-note { margin-left: auto; font-size: .82rem; color: var(--muted-2); }
.quickstart-steps { list-style: none; counter-reset: qs; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr)); gap: 14px 26px; }
.quickstart-steps li { display: flex; gap: 11px; align-items: flex-start; font-size: .95rem; color: var(--ink-2); }
.qs-tick { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; margin-top: 1px; }
.qs-tick i { width: 13px; height: 13px; }

/* ---- trust strip ------------------------------------------------------- */
.trust { background: #fff; border-bottom: 1px solid var(--line); padding: clamp(40px, 5vw, 60px) 0; }
.trust-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 28px; }
.trust-item { padding-left: 16px; border-left: 3px solid var(--accent); }
.trust-item i { width: 24px; height: 24px; color: var(--accent); margin-bottom: 11px; }
.trust-item h3 { font-size: 1.02rem; margin-bottom: 4px; }
.trust-item p { font-size: .92rem; color: var(--muted); margin: 0; }

/* ---- services (bordered cards, top accent on hover) -------------------- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 22px; }
.service-card {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; min-width: 0; overflow: hidden;
}
.service-card::before { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.service-card:hover { transform: translateY(-4px); border-color: var(--line-2); box-shadow: var(--shadow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: var(--accent-050); color: var(--accent); margin-bottom: 18px; }
.service-icon i { width: 25px; height: 25px; }
.service-media { border-radius: var(--radius-sm); overflow: hidden; margin-bottom: 18px; aspect-ratio: 16/10; }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-card h3 { font-size: 1.16rem; }
.service-card p { color: var(--muted); font-size: .96rem; }
.service-bullets { list-style: none; margin: 16px 0 0; padding: 16px 0 0; border-top: 1px solid var(--line); display: grid; gap: 9px; }
.service-bullets li { position: relative; padding-left: 24px; font-size: .9rem; color: var(--ink-2); }
.service-bullets li::before { content: ""; position: absolute; left: 3px; top: .48em; width: 8px; height: 8px; border-radius: 2px; background: var(--accent); }

/* ---- story ------------------------------------------------------------- */
.story-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(30px, 5vw, 62px); align-items: center; }
.story-body { min-width: 0; }
.story-text { color: var(--muted); font-size: 1.05rem; }
.story-text strong { color: var(--ink); }
.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 140px), 1fr)); gap: 24px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); }
.stat-value { font-size: clamp(1.9rem, 3vw, 2.5rem); font-weight: 780; color: var(--accent); letter-spacing: -.02em; }
.stat-label { font-size: .86rem; color: var(--muted-2); margin-top: 2px; }
.story-figure { border-radius: var(--radius); overflow: hidden; min-height: 280px; box-shadow: var(--shadow); }
.story-figure img { width: 100%; height: 100%; object-fit: cover; }
.story-figure.is-empty {
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, var(--accent-050), #fff),
    radial-gradient(circle at 30% 25%, rgba(37,99,235,.16), transparent 45%);
  background-blend-mode: normal;
  position: relative;
}
.story-figure.is-empty::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(37,99,235,.10) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(37,99,235,.10) 1px, transparent 1px);
  background-size: 34px 34px;
}

/* ---- steps (on the dark band, with a connecting rail) ------------------ */
.steps-grid { list-style: none; counter-reset: step; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 230px), 1fr)); gap: 22px; }
.step { counter-increment: step; position: relative; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius); padding: 30px 24px 24px; min-width: 0; }
.step::before { content: counter(step, decimal-leading-zero); display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 12px; background: var(--accent); color: #fff; font-weight: 750; font-size: 1rem; margin-bottom: 16px; font-variant-numeric: tabular-nums; }
.step h3 { font-size: 1.08rem; color: #fff; }
.step p { color: var(--on-navy-mut); font-size: .93rem; margin: 0; }

/* ---- testimonials ------------------------------------------------------ */
.quote-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 22px; }
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 30px; display: flex; flex-direction: column; min-width: 0; box-shadow: var(--shadow-sm); }
.quote-stars { display: flex; gap: 3px; margin-bottom: 15px; color: #f59e0b; }
.quote-stars i { width: 17px; height: 17px; fill: currentColor; }
.quote-card blockquote { margin: 0 0 20px; font-size: 1.05rem; color: var(--ink); line-height: 1.55; }
.quote-meta { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.quote-author { font-weight: 680; color: var(--ink); }
.quote-place { font-size: .86rem; color: var(--muted-2); }

/* ---- faq --------------------------------------------------------------- */
.faq-list { max-width: 840px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; transition: border-color .2s; }
.faq-item[open] { border-color: var(--line-2); box-shadow: var(--shadow-sm); }
.faq-item summary { cursor: pointer; list-style: none; padding: 20px 24px; font-weight: 640; font-size: 1.02rem; color: var(--ink); display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; color: var(--accent); font-weight: 300; font-size: 1.6rem; line-height: 1; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 24px 22px; color: var(--muted); }
.faq-answer p { margin: 0 0 .7em; }
.faq-answer strong { color: var(--ink); }

/* ---- contact / CTA ----------------------------------------------------- */
.cta-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr)); gap: clamp(28px, 4vw, 52px); align-items: center; }
.cta-body { min-width: 0; }
.contact-panel { background: var(--navy); color: var(--on-navy); border-radius: var(--radius); padding: 34px; min-width: 0; position: relative; overflow: hidden; }
.contact-panel::before { content: ""; position: absolute; inset: 0; opacity: .6; background: radial-gradient(60% 70% at 90% 0%, rgba(37,99,235,.3), transparent 60%); }
.contact-panel > * { position: relative; z-index: 1; }
.contact-panel h3 { color: #fff; font-size: 1.22rem; }
.panel-lead { color: var(--on-navy-mut); font-size: .96rem; }
.contact-list { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 18px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.ci { flex: none; width: 42px; height: 42px; border-radius: 11px; background: rgba(255,255,255,.1); color: #bcd0ff; display: inline-flex; align-items: center; justify-content: center; }
.ci i { width: 20px; height: 20px; }
.contact-label { font-size: .76rem; text-transform: uppercase; letter-spacing: .08em; color: var(--on-navy-mut); }
.contact-value { font-weight: 640; color: #fff; }
.contact-value a { color: #fff; }
.contact-value .small { display: block; font-weight: 400; font-size: .88rem; color: var(--on-navy-mut); white-space: pre-line; }

/* ---- footer (navy) ----------------------------------------------------- */
.footer { background: var(--navy); color: var(--on-navy-mut); padding: clamp(50px, 6vw, 76px) 0 30px; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 820px) { .footer-top { grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr)); } }
.footer .brand { margin-bottom: 14px; }
.footer .brand-name { color: #fff; }
.footer .brand-mark .mark-disc { color: #fff; }
.footer .brand-mark .mark-rays { stroke: #bcd0ff; }
.footer-about { color: var(--on-navy-mut); font-size: .9rem; max-width: 42ch; }
.footer h4 { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: #cdd8ef; margin-bottom: 14px; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer a { color: var(--on-navy-mut); font-size: .93rem; }
.footer a:hover { color: #fff; }
.contact-line { display: flex; gap: 10px; align-items: flex-start; color: var(--on-navy-mut); font-size: .93rem; }
.contact-line a { color: var(--on-navy-mut); }
.contact-line a:hover { color: #fff; }
.contact-line i { width: 16px; height: 16px; color: #bcd0ff; flex: none; margin-top: 3px; }
.footer-bottom { margin-top: 42px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: space-between; align-items: center; color: var(--on-navy-mut); font-size: .84rem; }
.footer-bottom nav { display: flex; gap: 18px; }

/* ---- mobile call bar --------------------------------------------------- */
.call-bar { display: none; }
@media (max-width: 640px) {
  .call-bar {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    display: flex; gap: 1px; background: var(--line-2);
    border-top: 1px solid var(--line-2); padding-bottom: env(safe-area-inset-bottom);
  }
  .call-bar a { flex: 1 1 0; min-width: 0; display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 15px 8px; font-weight: 660; font-size: .96rem; }
  .call-bar i { width: 18px; height: 18px; }
  .cb-call { background: #fff; color: var(--ink); }
  .cb-quote { background: var(--accent); color: #fff; }
  body { padding-bottom: 60px; }
}

/* ---- full-bleed background media (shared HeBgMedia markup) -------------- */
.has-bg-media, .hero-has-media { position: relative; }
.has-bg-media > .wrap, .hero-has-media > .wrap { position: relative; z-index: 2; }
.dd-bg-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.dd-bg-el { width: 100%; height: 100%; object-fit: cover; }
.dd-bg-video-poster { position: absolute; inset: 0; display: none; }
.dd-bg-overlay { position: absolute; inset: 0; z-index: 1; }
.dd-bg-overlay.ov-light  { background: linear-gradient(180deg, rgba(11,18,32,.5), rgba(11,18,32,.66)); }
.dd-bg-overlay.ov-medium { background: linear-gradient(180deg, rgba(11,18,32,.7), rgba(11,18,32,.82)); }
.dd-bg-overlay.ov-strong { background: linear-gradient(180deg, rgba(11,18,32,.85), rgba(11,18,32,.93)); }
@media (prefers-reduced-motion: reduce) {
  .dd-bg-video { display: none; }
  .dd-bg-video-poster { display: block; }
}

/* ==========================================================================
   BESPOKE SAAS STRUCTURES (Helios only)
   Distinct DOM: alternating zigzag feature rows, a ring-badge how-it-works rail,
   a centered chip cluster, a featured-quote spotlight and a gradient CTA card.
   ========================================================================== */

/* --- services → zigzag feature rows ------------------------------------- */
.he-features { display: grid; gap: clamp(30px, 5vw, 64px); }
.he-feature { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(26px, 4vw, 56px); align-items: center; }
.he-feature.reverse .he-feature-media { order: 2; }
@media (max-width: 820px) { .he-feature, .he-feature.reverse .he-feature-media { grid-template-columns: 1fr; order: 0; } }
.he-feature-media { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16/11; background: linear-gradient(150deg, var(--accent-050), #fff 55%, #eaf1ff); border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.he-feature-media img { width: 100%; height: 100%; object-fit: cover; }
.he-feature-glyph { display: inline-flex; align-items: center; justify-content: center; width: 96px; height: 96px; border-radius: 24px; background: #fff; color: var(--accent); box-shadow: var(--shadow-sm); }
.he-feature-glyph i { width: 44px; height: 44px; }
.he-feature-body { min-width: 0; }
.he-feature-ic { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 12px; background: var(--accent-050); color: var(--accent); margin-bottom: 16px; }
.he-feature-ic i { width: 24px; height: 24px; }
.he-feature-body h3 { font-size: clamp(1.4rem, 2.4vw, 1.95rem); }
.he-feature-body > p { color: var(--muted); font-size: 1.05rem; max-width: 52ch; }
.he-checklist { list-style: none; margin: 20px 0 0; padding: 0; display: grid; gap: 11px; }
.he-checklist li { display: flex; align-items: flex-start; gap: 11px; color: var(--ink-2); font-size: .96rem; }
.he-checklist i { width: 20px; height: 20px; flex: none; color: #fff; background: var(--accent); border-radius: 50%; padding: 3px; margin-top: 1px; }

/* --- process → ring-badge rail ------------------------------------------ */
.he-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 20px; }
.he-step { position: relative; text-align: center; padding: 0 12px; }
.he-step::before { content: ""; position: absolute; top: 34px; left: calc(50% + 40px); right: calc(-50% + 40px); height: 2px; background: linear-gradient(90deg, rgba(37,99,235,.6), rgba(37,99,235,.15)); z-index: 0; }
.he-step:last-child::before { display: none; }
.he-step-badge { position: relative; z-index: 1; width: 68px; height: 68px; margin: 0 auto 18px; border-radius: 50%; background: var(--navy-2); border: 2px solid var(--accent); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 0 6px rgba(37,99,235,.14); }
.he-step-badge span { font-size: 1.5rem; font-weight: 800; color: #fff; }
.he-step h3 { color: #fff; font-size: 1.15rem; }
.he-step p { color: var(--on-navy-mut); font-size: .94rem; margin: 0; }
@media (max-width: 720px) { .he-step::before { display: none; } }

/* --- trust → centered chip cluster -------------------------------------- */
.he-chips-band { background: var(--bg); border-block: 1px solid var(--line); padding: clamp(34px, 4.5vw, 54px) 0; }
.he-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.he-chip { display: inline-flex; align-items: center; gap: 12px; background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px; padding: 11px 20px 11px 12px; transition: border-color .2s, transform .2s; }
.he-chip:hover { border-color: var(--accent); transform: translateY(-2px); }
.he-chip-ic { flex: none; width: 38px; height: 38px; border-radius: 50%; background: #fff; color: var(--accent); display: inline-flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.he-chip-ic i { width: 20px; height: 20px; }
.he-chip-text { display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.he-chip-text strong { color: var(--ink); font-size: .96rem; }
.he-chip-text span { color: var(--muted); font-size: .8rem; }

/* --- testimonials → featured spotlight ---------------------------------- */
.he-quote-lead { margin: 0 auto; max-width: 820px; text-align: center; background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(30px, 4vw, 52px); box-shadow: var(--shadow-sm); }
.he-quote-stars { display: inline-flex; gap: 4px; margin-bottom: 18px; color: #f5a623; }
.he-quote-stars i { width: 20px; height: 20px; fill: currentColor; }
.he-quote-lead blockquote { margin: 0 0 22px; font-size: clamp(1.3rem, 2.6vw, 1.9rem); line-height: 1.4; color: var(--ink); font-weight: 600; letter-spacing: -.01em; }
.he-quote-author { font-weight: 700; color: var(--ink); }
.he-quote-author::after { content: ""; }
.he-quote-meta { color: var(--muted-2); font-size: .9rem; }
.he-quote-lead figcaption, .he-quote figcaption { display: flex; flex-direction: column; gap: 2px; }
.he-quote-lead figcaption { align-items: center; }
.he-quote-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr)); gap: 20px; margin-top: 22px; }
.he-quote { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 26px; box-shadow: var(--shadow-sm); }
.he-quote blockquote { margin: 0 0 16px; color: var(--ink-2); font-size: 1.02rem; line-height: 1.55; }

/* --- contact → gradient CTA card ---------------------------------------- */
.he-cta-card { position: relative; overflow: hidden; text-align: center; border-radius: clamp(18px, 3vw, 28px); padding: clamp(40px, 6vw, 76px) clamp(24px, 5vw, 64px); background: radial-gradient(120% 140% at 50% 0%, var(--accent) 0%, var(--accent-600) 40%, var(--navy) 100%); color: var(--on-navy); box-shadow: var(--shadow); }
.he-cta-card::before { content: ""; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 44px 44px; opacity: .5; }
.he-cta-card > * { position: relative; z-index: 1; }
.he-cta-card .eyebrow { background: rgba(255,255,255,.16); color: #fff; }
.he-cta-card h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); max-width: 20ch; margin-inline: auto; }
.he-cta-card .lead { color: rgba(255,255,255,.85); margin: .6rem auto 0; max-width: 54ch; }
.he-cta-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 14px; margin-top: 26px; }
.he-cta-chip { display: inline-flex; align-items: center; gap: 8px; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 999px; padding: 9px 16px; font-size: .9rem; font-weight: 500; }
.he-cta-chip i { width: 16px; height: 16px; }
a.he-cta-chip:hover { background: rgba(255,255,255,.22); }

/* ---- scroll reveal ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
