/* ==========================================================================
   Cross Cloud Ops, website v2
   Layout and interaction system modelled on nextedgetalents.com
   Warm light palette: white and warm off-white, orange lead accent,
   navy reserved for headings, footer and one dark band. Blue used sparingly.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* ink */
  --navy:        #26445A;
  --navy-900:    #1B3242;
  --navy-800:    #33566E;
  --ink:         #26445A;
  --body:        #5C6B80;
  --muted:       #8B98AB;

  /* lead accent */
  --orange:      #F26522;
  --orange-700:  #C24E14;
  --orange-600:  #DD5715;
  --orange-200:  #FBD9C6;
  --orange-100:  #FEF1EA;

  /* supporting accents, used sparingly */
  --blue:        #0D9DDA;
  --blue-700:    #0B7DAE;
  --blue-100:    #E8F6FC;
  --sage:        #4E9E7E;
  --sage-100:    #E9F4EF;
  --plum:        #7B5EA7;
  --plum-100:    #F0EBF8;

  /* warm neutrals */
  --white:       #FFFFFF;
  --cream:       #FAF7F4;
  --sand:        #F5EFE9;
  --line:        #EBE4DC;
  --line-soft:   #F3EDE7;

  --radius-sm:  10px;
  --radius:     18px;
  --radius-lg:  26px;
  --radius-pill: 999px;

  --shadow-xs: 0 1px 2px rgba(38,68,90,.05);
  --shadow-sm: 0 2px 10px rgba(38,68,90,.05);
  --shadow:    0 10px 34px rgba(38,68,90,.08);
  --shadow-lg: 0 26px 70px rgba(38,68,90,.13);
  --shadow-warm: 0 14px 40px rgba(242,101,34,.13);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  --font-tag: "Space Grotesk", "Inter", Arial, sans-serif;

  --wrap: 1200px;
  --nav-h: 78px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.68;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1,h2,h3,h4 { color: var(--ink); margin: 0 0 .5em; font-weight: 800; letter-spacing: -.028em; line-height: 1.14; }
h1 { font-size: clamp(2.3rem, 5vw, 3.95rem); letter-spacing: -.042em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.85rem); letter-spacing: -.036em; }
h3 { font-size: 1.18rem; letter-spacing: -.02em; }
p  { margin: 0 0 1.1em; }
ul { margin: 0; padding: 0; list-style: none; }
::selection { background: var(--orange-200); color: var(--navy); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.section { padding: 104px 0; }
.section--tight { padding: 72px 0; }
.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand); }
.section--navy  { background: var(--navy); color: rgba(255,255,255,.74); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .705rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--orange-700);
  background: var(--orange-100);
  border: 1px solid var(--orange-200);
  padding: 7px 16px; border-radius: var(--radius-pill);
  margin-bottom: 20px;
}
.eyebrow--blue  { color: var(--blue-700); background: var(--blue-100); border-color: #C9EAF7; }
.eyebrow--sage  { color: #3B7B61; background: var(--sage-100); border-color: #CFE6DB; }
.eyebrow--plum  { color: #5F468A; background: var(--plum-100); border-color: #DED2F0; }
.eyebrow--light { color: #FBD9C6; background: rgba(242,101,34,.16); border-color: rgba(242,101,34,.34); }
.eyebrow i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; flex: none; }

.sec-head { max-width: 730px; margin-bottom: 56px; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head p { font-size: 1.075rem; color: var(--body); margin: 0; }
.section--navy .sec-head p { color: rgba(255,255,255,.7); }

.lead { font-size: 1.14rem; line-height: 1.72; }
.mark { color: var(--orange); }
.mark-b { color: var(--blue); }
.center { text-align: center; }
.mt-l { margin-top: 46px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 27px;
  font-size: .93rem; font-weight: 700; letter-spacing: -.01em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease),
              background .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--orange); color: #fff; box-shadow: var(--shadow-warm); }
.btn--primary:hover { background: var(--orange-600); box-shadow: 0 18px 40px rgba(242,101,34,.28); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-800); box-shadow: var(--shadow); }
.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--orange); color: var(--orange-700); }
.btn--ghost-light { border-color: rgba(255,255,255,.28); color: #fff; background: rgba(255,255,255,.05); }
.btn--ghost-light:hover { border-color: #fff; background: rgba(255,255,255,.13); }
.btn--sm { padding: 10px 20px; font-size: .84rem; }
.btn--full { width: 100%; }

.textlink {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 700; font-size: .93rem; color: var(--orange-700);
}
.textlink svg { width: 15px; height: 15px; transition: transform .22s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }
.section--navy .textlink { color: #FBD9C6; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 900;
  height: var(--nav-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-stuck { border-color: var(--line); box-shadow: 0 2px 22px rgba(38,68,90,.06); }
.nav { display: flex; align-items: center; gap: 22px; height: var(--nav-h); }

.brand { display: flex; align-items: center; gap: 11px; margin-right: auto; }
.brand__logo { height: 38px; width: auto; flex: none; }
.site-footer .brand__logo { height: 42px; }
.site-footer .brand__name { font-size: 1.14rem; }
.site-footer .brand__tag { font-size: .52rem; }
.brand__text { display: flex; flex-direction: column; line-height: 1.12; }
.brand__name { font-weight: 800; font-size: 1.1rem; color: var(--ink); letter-spacing: -.036em; }
.brand__tag  {
  font-family: var(--font-tag);
  font-size: .5rem; font-weight: 500; font-style: italic;
  letter-spacing: 0; text-transform: lowercase;
  color: var(--orange); white-space: nowrap; opacity: .9;
  margin-top: 1px; text-align: center;   /* sits centred under the wordmark */
}

.nav__links { display: flex; align-items: center; gap: 0; }
.nav__links > a, .nav__top {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 12px; border-radius: var(--radius-pill);
  font-size: .855rem; font-weight: 600; color: #4B5A70;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav__links > a:hover, .nav__links > a.is-active,
.nav__top:hover, .nav__top.is-active { color: var(--navy); background: var(--sand); }
.nav__caret { width: 13px; height: 13px; flex: none; opacity: .55; transition: transform .25s var(--ease); }
.nav__sub { display: none; }

/* ---------- Mega dropdown ---------- */
.nav__group { position: relative; }
.mega {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(-8px);
  width: 560px; max-width: calc(100vw - 40px);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 14px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s;
  z-index: 950;
}
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.nav__group:hover .mega, .nav__group:focus-within .mega, .nav__group.is-open .mega {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.nav__group:hover .nav__caret, .nav__group.is-open .nav__caret { transform: rotate(180deg); }
.nav__group:hover .nav__top, .nav__group.is-open .nav__top { color: var(--navy); background: var(--sand); }

.mega__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.mega__item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 12px; border-radius: 13px;
  transition: background .2s var(--ease);
}
.mega__item:hover { background: var(--cream); }
.mega__ico {
  width: 34px; height: 34px; flex: none; border-radius: 10px;
  display: grid; place-items: center;
  background: var(--orange-100); color: var(--orange-700);
  transition: background .22s var(--ease), color .22s var(--ease);
}
.mega__ico svg { width: 17px; height: 17px; }
.mega__item:hover .mega__ico { background: var(--orange); color: #fff; }
.mega__txt { display: block; min-width: 0; }
.mega__txt b {
  display: block; font-size: .875rem; font-weight: 700; color: var(--ink);
  letter-spacing: -.015em; line-height: 1.35;
}
.mega__txt i {
  display: block; font-style: normal; font-size: .765rem; color: var(--muted);
  line-height: 1.4; margin-top: 1px;
}
.mega__all {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 8px; padding: 11px; border-top: 1px solid var(--line-soft);
  font-size: .82rem; font-weight: 700; color: var(--orange-700);
}
.mega__all svg { width: 15px; height: 15px; transition: transform .22s var(--ease); }
.mega__all:hover svg { transform: translateX(4px); }
.nav__cta { display: flex; align-items: center; gap: 10px; }

.nav__toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: 12px; background: #fff; align-items: center; justify-content: center;
}
.nav__toggle span { display: block; width: 17px; height: 2px; background: var(--navy); border-radius: 2px; position: relative; }
.nav__toggle span::before, .nav__toggle span::after {
  content: ""; position: absolute; left: 0; width: 17px; height: 2px; background: var(--navy); border-radius: 2px;
  transition: transform .25s var(--ease), top .25s var(--ease);
}
.nav__toggle span::before { top: -6px; }
.nav__toggle span::after  { top: 6px; }
.nav__toggle.is-open span { background: transparent; }
.nav__toggle.is-open span::before { top: 0; transform: rotate(45deg); }
.nav__toggle.is-open span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Hero, light ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--cream);
  padding: calc(var(--nav-h) + 92px) 0 0;
}
.hero::before {
  content: ""; position: absolute; width: 920px; height: 920px; border-radius: 50%;
  top: -460px; right: -280px;
  background: radial-gradient(circle, rgba(242,101,34,.2) 0%, rgba(242,101,34,0) 66%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; width: 780px; height: 780px; border-radius: 50%;
  bottom: -420px; left: -320px;
  background: radial-gradient(circle, rgba(13,157,218,.13) 0%, rgba(13,157,218,0) 66%);
  pointer-events: none;
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(38,68,90,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,68,90,.045) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 88% 58% at 50% 28%, #000 32%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 88% 58% at 50% 28%, #000 32%, transparent 76%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero__inner { display: grid; grid-template-columns: 1.12fr .88fr; gap: 58px; align-items: center; }
.hero h1 { margin-bottom: 22px; }
.hero h1 .break { display: block; }
.hero__sub { font-size: 1.15rem; max-width: 570px; margin-bottom: 32px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 28px; }

.hero__note {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 11px 22px 11px 12px;
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  background: #fff; box-shadow: var(--shadow-xs);
  font-size: .875rem; color: var(--body); font-weight: 600;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.hero__note:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.hero__note b { color: var(--ink); }
.hero__note svg { width: 30px; height: 30px; flex: none; padding: 7px; border-radius: 50%; background: var(--orange); color: #fff; }

.hero__panel {
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  background: #fff; padding: 28px; box-shadow: var(--shadow);
}
.hero__panel-label {
  font-size: .665rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 7px;
}
.hero__panel-value {
  font-size: 1.62rem; font-weight: 800; letter-spacing: -.036em; color: var(--ink); line-height: 1.22; margin-bottom: 22px;
}
.hero__panel-value span { color: var(--orange); }
.hero__chiprow { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.hero__chip {
  font-size: .795rem; font-weight: 600; color: #4B5A70;
  border: 1px solid var(--line); background: var(--cream);
  padding: 7px 14px; border-radius: var(--radius-pill);
}
.hero__panel-foot { border-top: 1px solid var(--line); padding-top: 22px; }
.hero__mini { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px 14px; }
.hero__mini b { display: block; font-size: 1.48rem; font-weight: 800; color: var(--ink); letter-spacing: -.035em; line-height: 1.2; }
.hero__mini span { font-size: .765rem; color: var(--muted); font-weight: 600; }

.hero__band { margin-top: 74px; border-top: 1px solid var(--line); padding: 22px 0; position: relative; z-index: 2; }

/* ==========================================================================
   Ambient radiance
   A slow, very light drift of colour behind key sections. Deliberately
   subtle: it should read as the page being alive, never as an animation
   you notice. Turn the whole thing off by removing the two keyframes.
   ========================================================================== */
@keyframes auroraA {
  0%,100% { transform: translate3d(0,0,0)        scale(1); }
  33%     { transform: translate3d(6%,-4%,0)     scale(1.12); }
  66%     { transform: translate3d(-4%,5%,0)     scale(.94); }
}
@keyframes auroraB {
  0%,100% { transform: translate3d(0,0,0)        scale(1); }
  33%     { transform: translate3d(-5%,4%,0)     scale(.92); }
  66%     { transform: translate3d(5%,-5%,0)     scale(1.1); }
}

/* the hero glows now drift instead of sitting still */
.hero::before { animation: auroraA 34s ease-in-out infinite; }
.hero::after  { animation: auroraB 40s ease-in-out infinite; }

/* reusable ambient layer for any section */
.section, .page-hero, .cta { position: relative; }
.section--cream, .section--sand, .section--navy, .page-hero, .cta { overflow: hidden; }

.section--cream::before, .section--sand::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 60vw; height: 60vw; max-width: 820px; max-height: 820px;
  top: -22%; right: -14%; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,.13) 0%, rgba(242,101,34,0) 68%);
  animation: auroraA 46s ease-in-out infinite;
}
.section--cream::after, .section--sand::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 52vw; height: 52vw; max-width: 720px; max-height: 720px;
  bottom: -26%; left: -12%; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,157,218,.1) 0%, rgba(13,157,218,0) 68%);
  animation: auroraB 58s ease-in-out infinite;
}
.section--navy::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 64vw; height: 64vw; max-width: 900px; max-height: 900px;
  top: -26%; left: -16%; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,101,34,.16) 0%, rgba(242,101,34,0) 66%);
  animation: auroraA 50s ease-in-out infinite;
}
.section--navy::after {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  width: 56vw; height: 56vw; max-width: 780px; max-height: 780px;
  bottom: -30%; right: -14%; border-radius: 50%;
  background: radial-gradient(circle, rgba(13,157,218,.14) 0%, rgba(13,157,218,0) 66%);
  animation: auroraB 62s ease-in-out infinite;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(38,68,90,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(38,68,90,.05) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: radial-gradient(ellipse 76% 84% at 50% 30%, #000 26%, transparent 74%);
  -webkit-mask-image: radial-gradient(ellipse 76% 84% at 50% 30%, #000 26%, transparent 74%);
}
.page-hero::before { animation: auroraA 42s ease-in-out infinite; }
.cta::before       { animation: auroraB 46s ease-in-out infinite; }

/* content always sits above the ambient layers */
.section > .wrap, .page-hero > .wrap, .cta > .wrap,
.section > .marquee-stack, .section > .marquee { position: relative; z-index: 1; }

@media (prefers-reduced-motion: reduce) {
  .hero::before, .hero::after,
  .section--cream::before, .section--cream::after,
  .section--sand::before, .section--sand::after,
  .section--navy::before, .section--navy::after,
  .page-hero::before, .cta::before { animation: none; }
}

/* ---------- Marquee ---------- */
.marquee { display: flex; overflow: hidden; user-select: none; }
.marquee__track {
  display: flex; flex: none; align-items: center; gap: 44px;
  padding-right: 44px;
  animation: slide 36s linear infinite;
  min-width: 100%;
}
.marquee--slow .marquee__track { animation-duration: 54s; }
.marquee--rev .marquee__track { animation-direction: reverse; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-100%); } }

.marquee__item {
  display: inline-flex; align-items: center; gap: 11px; flex: none;
  font-size: .875rem; font-weight: 700; letter-spacing: .02em; white-space: nowrap;
  color: var(--body);
}
.marquee__item svg { width: 15px; height: 15px; color: var(--orange); flex: none; }

.pill-marquee .marquee__track { gap: 14px; padding-right: 14px; }
.pill-marquee .marquee__item {
  color: var(--ink); background: #fff; border: 1px solid var(--line);
  padding: 13px 24px; border-radius: var(--radius-pill); font-weight: 700; font-size: .91rem;
  box-shadow: var(--shadow-xs);
}
.marquee-stack { display: grid; gap: 14px; }
.marquee-mask {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stats--3 { grid-template-columns: repeat(3, 1fr); }
.stat {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; position: relative; overflow: hidden;
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.stat::after {
  content: ""; position: absolute; left: 0; top: 0; width: 3px; height: 100%;
  background: var(--orange);
  transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease);
}
.stat:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.stat:hover::after { transform: scaleY(1); }
.stat b { display: block; font-size: 2.35rem; font-weight: 800; color: var(--ink); letter-spacing: -.05em; line-height: 1; margin-bottom: 9px; }
.stat b em {
  font-style: normal; color: var(--orange);
  text-shadow: 0 0 14px rgba(242,101,34,.5), 0 0 30px rgba(242,101,34,.25);
  animation: glowPulse 3s ease-in-out infinite;
}
.stat:hover b em {
  animation-duration: 1.4s;
  text-shadow: 0 0 18px rgba(242,101,34,.75), 0 0 42px rgba(242,101,34,.4);
}
.hero__mini b em, .metrics b em {
  font-style: normal; color: var(--orange);
  text-shadow: 0 0 12px rgba(242,101,34,.45), 0 0 26px rgba(242,101,34,.2);
  animation: glowPulse 3s ease-in-out infinite;
}
.section--navy .stat b em {
  text-shadow: 0 0 16px rgba(242,101,34,.7), 0 0 36px rgba(242,101,34,.35);
}
@keyframes glowPulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: .74; }
}
@media (prefers-reduced-motion: reduce) {
  .stat b em, .hero__mini b em, .metrics b em { animation: none; }
}
.stat span { font-size: .855rem; font-weight: 600; color: var(--muted); }
.section--navy .stat { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.12); }
.section--navy .stat b { color: #fff; }
.section--navy .stat span { color: rgba(255,255,255,.55); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 20px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; position: relative; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange-200); }
.card h3 { margin-bottom: 9px; }
.card p { font-size: .925rem; margin: 0; }
.card__num {
  position: absolute; top: 20px; right: 24px;
  font-size: 2.5rem; font-weight: 800; letter-spacing: -.05em;
  color: var(--sand); line-height: 1; pointer-events: none;
  transition: color .3s var(--ease);
}
.card:hover .card__num { color: var(--orange-100); }
.section--cream .card, .section--sand .card { background: #fff; }

.icon {
  width: 50px; height: 50px; border-radius: 15px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--orange-100); color: var(--orange-700);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.icon svg { width: 23px; height: 23px; }
.icon--blue { background: var(--blue-100); color: var(--blue-700); }
.icon--sage { background: var(--sage-100); color: #3B7B61; }
.icon--plum { background: var(--plum-100); color: #5F468A; }
.icon--sand { background: var(--sand); color: var(--navy); }
.card:hover .icon, .tile:hover .icon { background: var(--navy); color: #fff; transform: rotate(-6deg) scale(1.05); }
.section--navy .icon { background: rgba(255,255,255,.09); color: #FBD9C6; }

/* offering card with sub list */
.offer { display: flex; flex-direction: column; }
.offer__list { border-top: 1px dashed var(--line); margin-top: 22px; padding-top: 20px; }
.offer__label {
  font-size: .645rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 12px;
}
.offer__list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; font-weight: 600; color: #4B5A70; padding: 5px 0;
}
.offer__list li svg { width: 15px; height: 15px; color: var(--orange); flex: none; margin-top: 4px; }

/* tech tile */
.tile {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 20px; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.tile:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange-200); }
.tile .icon { margin-inline: auto; }
.tile h3 { font-size: 1rem; margin-bottom: 6px; }
.tile p { font-size: .82rem; margin: 0; color: var(--muted); }

/* checklist */
.checks li {
  display: flex; align-items: flex-start; gap: 13px;
  padding: 10px 0; font-size: .96rem; font-weight: 600; color: #45536A;
}
.checks li svg {
  width: 21px; height: 21px; flex: none; padding: 4px; border-radius: 50%;
  background: var(--orange-100); color: var(--orange); margin-top: 3px;
}
.section--navy .checks li { color: rgba(255,255,255,.82); }
.section--navy .checks li svg { background: rgba(242,101,34,.22); }

/* split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 62px; align-items: center; }
.split--rev .split__media { order: -1; }

.panel {
  border-radius: var(--radius-lg); padding: 32px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.panel--warm { background: linear-gradient(155deg, var(--cream), var(--sand)); box-shadow: none; }
.panel--navy {
  background: rgba(255,255,255,.045);
  border-color: rgba(255,255,255,.11); color: rgba(255,255,255,.74);
}
.panel--navy h4 { color: #fff; }
.panel__row {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line-soft);
}
.panel--navy .panel__row { border-color: rgba(255,255,255,.1); }
.panel__row:last-child { border-bottom: 0; padding-bottom: 0; }
.panel__row:first-child { padding-top: 0; }
.panel__row h4 { font-size: .97rem; margin: 0 0 3px; font-weight: 700; color: var(--ink); }
.panel__row p { font-size: .865rem; margin: 0; color: var(--muted); }
.panel--navy .panel__row p { color: rgba(255,255,255,.58); }
.panel__row .icon { width: 42px; height: 42px; margin: 0; border-radius: 12px; flex: none; }
.panel__row .icon svg { width: 19px; height: 19px; }

/* numbered process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: s; }
.step {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step__n {
  width: 34px; height: 34px; border-radius: 50%; display: grid; place-items: center;
  background: var(--orange); color: #fff; font-size: .82rem; font-weight: 800; margin-bottom: 16px;
}
.step h3 { font-size: 1.02rem; margin-bottom: 7px; }
.step p { font-size: .875rem; margin: 0; color: var(--muted); }

/* product marks */
.prod__logo, .groupco__logo {
  width: 54px; height: 54px; flex: none; border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-xs);
  transition: transform .3s var(--ease);
}
.groupco__logo { margin-bottom: 0; width: 50px; height: 50px; }
.prod:hover .prod__logo, .groupco:hover .groupco__logo { transform: rotate(-6deg) scale(1.06); }

/* group company card, now a link */
a.groupco { color: inherit; }
a.groupco h3 { transition: color .25s var(--ease); }
a.groupco:hover h3 { color: var(--orange-700); }

/* linked headings inside panel rows */
.panel__row h4 a { transition: color .2s; }
.panel__row h4 a:hover { color: var(--orange-700); }
.panel__row p .textlink { font-size: .82rem; }

/* product hero card */
.prod {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.prod:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--orange-200); }
.prod h3 { font-size: 1.5rem; margin-bottom: 10px; }
.prod .textlink { margin-top: auto; padding-top: 20px; }

/* case card */
.case {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  display: flex; flex-direction: column;
}
.case p { flex: 1 1 auto; }        /* copy absorbs the slack so metrics stay bottom aligned */
.case .metrics { margin-top: auto; }
.case:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.case__tag {
  display: inline-block; font-size: .675rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.case h3 { font-size: 1.3rem; margin-bottom: 12px; }
.case p { font-size: .945rem; }
.chips { display: flex; flex-wrap: wrap; gap: 7px; margin: 18px 0 22px; }
.chip {
  font-size: .735rem; font-weight: 700; color: #5C6B80;
  background: var(--cream); border: 1px solid var(--line-soft);
  padding: 5px 12px; border-radius: var(--radius-pill);
}
.metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; border-top: 1px solid var(--line); padding-top: 22px; }
.metrics b { display: block; font-size: 1.5rem; font-weight: 800; color: var(--orange); letter-spacing: -.04em; line-height: 1.1; }
.metrics span { font-size: .735rem; font-weight: 600; color: var(--muted); }

/* comparison / pricing table */
.ptable { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.plan {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.plan--featured { border-color: var(--orange); box-shadow: var(--shadow-warm); }
.plan__tag {
  align-self: flex-start; font-size: .655rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; color: var(--orange-700); background: var(--orange-100);
  padding: 5px 12px; border-radius: var(--radius-pill); margin-bottom: 16px;
}
.plan h3 { font-size: 1.22rem; margin-bottom: 8px; }
.plan p { font-size: .9rem; }
.plan ul { border-top: 1px solid var(--line-soft); padding-top: 18px; margin-top: 4px; }
.plan ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; font-weight: 600; color: #4B5A70; padding: 6px 0;
}
.plan ul li svg { width: 15px; height: 15px; color: var(--orange); flex: none; margin-top: 4px; }

/* group companies band */
.groupco {
  display: flex; align-items: flex-start; gap: 18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 24px 26px; color: inherit;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.groupco:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--orange-200); }
.groupco .icon { margin: 0; flex: none; }
.groupco > div { min-width: 0; }
.groupco__head { display: flex; align-items: baseline; flex-wrap: wrap; gap: 6px 10px; margin-bottom: 5px; }
.groupco h3 { font-size: 1.08rem; margin: 0; }
.groupco__site {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-tag);
  font-size: .715rem; font-weight: 600;
  color: var(--orange-700); background: var(--orange-100);
  border: 1px solid var(--orange-200);
  padding: 3px 10px; border-radius: var(--radius-pill);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.groupco__site svg { width: 11px; height: 11px; flex: none; }
a.groupco:hover .groupco__site { background: var(--orange); border-color: var(--orange); color: #fff; }
.groupco p { font-size: .875rem; margin: 0; color: var(--muted); }

/* faq */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px 24px; margin-bottom: 12px;
}
.faq summary {
  cursor: pointer; font-weight: 700; color: var(--ink); font-size: 1rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-size: 1.3rem; color: var(--orange); font-weight: 700; flex: none; line-height: 1;
}
.faq details[open] summary::after { content: "\2212"; }
.faq details p { margin: 14px 0 0; font-size: .93rem; }

/* ---------- Contact ---------- */
.contact__grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 32px; align-items: start; }
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-sm);
}
.tabs { display: flex; gap: 8px; background: var(--cream); padding: 6px; border-radius: var(--radius-pill); margin-bottom: 28px; }
.tab {
  flex: 1; padding: 11px 16px; border: 0; background: transparent; border-radius: var(--radius-pill);
  font-size: .87rem; font-weight: 700; color: var(--muted);
  transition: background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.tab.is-active { background: #fff; color: var(--navy); box-shadow: var(--shadow-xs); }

.field { margin-bottom: 17px; }
.field label {
  display: block; font-size: .775rem; font-weight: 700; color: var(--ink);
  margin-bottom: 7px;
}
.field label i { color: var(--orange); font-style: normal; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; font: inherit; font-size: .93rem; color: var(--ink);
  border: 1.5px solid var(--line); border-radius: 13px; background: #fff;
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 0; border-color: var(--orange); box-shadow: 0 0 0 4px rgba(242,101,34,.12);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-note { font-size: .8rem; color: var(--muted); text-align: center; margin: 15px 0 0; }
.form-success {
  display: none; align-items: center; gap: 10px; margin-top: 16px;
  padding: 13px 17px; border-radius: 13px; font-size: .875rem; font-weight: 600;
  background: var(--sage-100); color: #3B7B61; border: 1px solid #CFE6DB;
}
.form-success svg { width: 17px; height: 17px; flex: none; }

/* returned by contact-handler.php on validation or send failure */
.form-error {
  display: none; align-items: center; gap: 10px; margin-top: 16px;
  padding: 13px 17px; border-radius: 13px; font-size: .875rem; font-weight: 600;
  background: #FDECEC; color: #A33A3A; border: 1px solid #F5C9C9;
}

/* inline thank you, swapped in where the form was */
.form-thanks {
  position: relative; overflow: hidden;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 54px 40px; text-align: center; max-width: 620px; margin-inline: auto;
  box-shadow: var(--shadow);
  animation: thanksIn .5s var(--ease) both;
}
.form-thanks__tick {
  display: grid; place-items: center;
  width: 62px; height: 62px; margin: 0 auto 22px;
  border-radius: 50%; background: var(--sage-100); color: #3B7B61;
  animation: tickPop .5s var(--ease) .15s both;
}
.form-thanks__tick svg { width: 28px; height: 28px; }
.form-thanks h3 { font-size: 1.6rem; margin-bottom: 12px; }
.form-thanks p { font-size: 1rem; color: var(--body); max-width: 440px; margin: 0 auto 26px; }
@keyframes thanksIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes tickPop  { from { opacity: 0; transform: scale(.6); }        to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .form-thanks, .form-thanks__tick { animation: none; }
}

/* ---------- SMB intake form ---------- */
.form-card--wide { max-width: 900px; margin-inline: auto; }

.fstep {
  display: flex; align-items: flex-start; gap: 15px;
  margin: 40px 0 22px; padding-top: 26px;
  border-top: 1px solid var(--line);
}
.form-card .fstep:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.fstep__n {
  width: 34px; height: 34px; flex: none; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange); color: #fff; font-size: .84rem; font-weight: 800;
}
.fstep h3 { font-size: 1.12rem; margin: 3px 0 3px; }
.fstep p { font-size: .885rem; margin: 0; color: var(--muted); }

/* multi select service picker */
.pick-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.pick input { position: absolute; opacity: 0; width: 0; height: 0; }
.pick__box {
  display: flex; align-items: flex-start; gap: 13px;
  height: 100%; padding: 16px 17px;
  border: 1.5px solid var(--line); border-radius: 15px; background: #fff;
  cursor: pointer; position: relative;
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.pick__box:hover { border-color: var(--orange-200); background: var(--cream); }
.pick input:checked + .pick__box {
  border-color: var(--orange); background: var(--orange-100);
  box-shadow: 0 0 0 3px rgba(242,101,34,.1);
}
.pick input:focus-visible + .pick__box { outline: 2px solid var(--blue); outline-offset: 2px; }
.pick__ico {
  width: 38px; height: 38px; flex: none; border-radius: 11px;
  display: grid; place-items: center;
  background: var(--sand); color: var(--navy);
  transition: background .2s var(--ease), color .2s var(--ease);
}
.pick__ico svg { width: 19px; height: 19px; }
.pick input:checked + .pick__box .pick__ico { background: var(--orange); color: #fff; }
.pick__body { display: block; min-width: 0; }
.pick__body b { display: block; font-size: .9rem; font-weight: 700; color: var(--ink); line-height: 1.35; }
.pick__body i {
  display: block; font-style: normal; font-size: .8rem; color: var(--body);
  line-height: 1.45; margin: 4px 0 6px;
}
.pick__body em {
  display: block; font-style: normal; font-size: .715rem; font-weight: 700;
  color: var(--orange-700); letter-spacing: .01em;
}
.pick__tick {
  position: absolute; top: 13px; right: 13px;
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--orange); color: #fff;
  opacity: 0; transform: scale(.7);
  transition: opacity .2s var(--ease), transform .2s var(--ease);
}
.pick__tick svg { width: 12px; height: 12px; }
.pick input:checked + .pick__box .pick__tick { opacity: 1; transform: scale(1); }
.pick-count {
  margin: 16px 0 0; font-size: .82rem; font-weight: 700;
  color: var(--muted); text-align: right;
}
.pick-count.is-on { color: var(--orange-700); }

/* budget pills */
.pill-row { display: flex; flex-wrap: wrap; gap: 9px; }
.pill input { position: absolute; opacity: 0; width: 0; height: 0; }
.pill span {
  display: inline-block; padding: 10px 18px;
  border: 1.5px solid var(--line); border-radius: var(--radius-pill);
  font-size: .865rem; font-weight: 600; color: #4B5A70; background: #fff;
  cursor: pointer;
  transition: border-color .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.pill span:hover { border-color: var(--orange-200); background: var(--cream); }
.pill input:checked + span {
  border-color: var(--orange); background: var(--orange); color: #fff;
}
.pill input:focus-visible + span { outline: 2px solid var(--blue); outline-offset: 2px; }

/* JS hook, and the containing block for the honeypot below */
.cco-form { position: relative; }

/* honeypot: off screen rather than display:none, so bots still fill it */
.hp {
  position: absolute; left: -9999px; top: auto;
  width: 1px; height: 1px; overflow: hidden;
}

.info-card {
  background: var(--navy); border-radius: var(--radius-lg); padding: 32px; color: rgba(255,255,255,.72);
}
.info-card h3 { color: #fff; font-size: 1.2rem; margin-bottom: 4px; }
.info-card .tagline { font-size: .87rem; color: #FBD9C6; font-weight: 600; margin-bottom: 24px; }
.info-list { border-top: 1px solid rgba(255,255,255,.12); padding-top: 20px; margin-bottom: 22px; }
.info-list li {
  display: flex; align-items: flex-start; gap: 11px;
  font-size: .87rem; padding: 7px 0; color: rgba(255,255,255,.78);
}
.info-list li svg { width: 16px; height: 16px; color: var(--orange); flex: none; margin-top: 4px; }
.info-block { border-top: 1px solid rgba(255,255,255,.12); padding-top: 18px; margin-bottom: 18px; }
.info-block .k {
  font-size: .645rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-bottom: 5px;
}
.info-block .v { font-size: .96rem; font-weight: 700; color: #fff; }
.info-block .v a:hover { color: var(--orange); }
.info-sla {
  border: 1px dashed rgba(255,255,255,.22); border-radius: var(--radius); padding: 18px;
  background: rgba(242,101,34,.12);
}
.info-sla h4 { font-size: .91rem; color: #fff; margin: 0 0 5px; }
.info-sla p { font-size: .815rem; margin: 0; color: rgba(255,255,255,.62); }

/* ---------- CTA band, the one dark moment ---------- */
.cta {
  position: relative; overflow: hidden; text-align: center;
  background: var(--navy); color: rgba(255,255,255,.75);
  padding: 94px 0;
}
.cta::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 16%, rgba(242,101,34,.34), transparent 46%),
    radial-gradient(circle at 84% 86%, rgba(13,157,218,.18), transparent 46%);
}
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { color: #fff; max-width: 780px; margin-inline: auto; }
.cta p { max-width: 610px; margin: 0 auto 30px; font-size: 1.07rem; }
.cta__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 13px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.58); padding: 54px 0 0; font-size: .885rem; }
/* brand block left, link groups stacked as short horizontal rows on the right */
.footer__top {
  display: grid; grid-template-columns: 300px 1fr; gap: 44px;
  padding-bottom: 30px;
}
.footer__brand { min-width: 0; }
.footer__nav { display: flex; flex-direction: column; gap: 2px; min-width: 0; }

.footer__row {
  display: grid; grid-template-columns: 118px 1fr; gap: 18px;
  align-items: baseline;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__row:last-child { border-bottom: 0; }
.footer__row h4 { margin: 0; }
.footer__row-links { display: flex; flex-wrap: wrap; gap: 6px 0; }
.footer__row-links a {
  position: relative;
  color: rgba(255,255,255,.6);
  padding: 0 14px 0 0; margin-right: 14px;
  font-size: .845rem;
  transition: color .2s;
}
.footer__row-links a::after {
  content: ""; position: absolute; right: 0; top: 50%;
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(255,255,255,.22); transform: translateY(-50%);
}
.footer__row-links a:last-child { margin-right: 0; padding-right: 0; }
.footer__row-links a:last-child::after { display: none; }
.footer__row-links a:hover { color: var(--orange); }
.site-footer .brand__name { color: #fff; }
.site-footer .brand { margin: 0 0 18px; }
.footer__about { max-width: 300px; color: rgba(255,255,255,.55); margin-bottom: 20px; }
.footer h4 {
  color: #fff; font-size: .69rem; font-weight: 700; letter-spacing: .15em;
  text-transform: uppercase; margin-bottom: 16px;
}

.badges { display: flex; flex-wrap: wrap; gap: 8px; }
.badge {
  font-size: .695rem; font-weight: 700; color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.05);
  padding: 6px 13px; border-radius: var(--radius-pill);
}
/* contact details as one horizontal row, keeps the footer compact */
.footer__contact {
  display: flex; flex-wrap: wrap; gap: 14px 40px;
  border-top: 1px solid rgba(255,255,255,.09);
  padding: 22px 0;
}
.footer__contact-item {
  display: inline-flex; align-items: center; gap: 11px;
  color: rgba(255,255,255,.62);
  transition: color .2s var(--ease);
}
.footer__contact-item svg {
  width: 30px; height: 30px; flex: none; padding: 7px;
  border-radius: 10px;
  background: rgba(255,255,255,.06); color: var(--orange);
  transition: background .25s var(--ease), color .25s var(--ease);
}
a.footer__contact-item:hover { color: #fff; }
a.footer__contact-item:hover svg { background: var(--orange); color: #fff; }
.footer__contact-item i {
  display: block; font-style: normal;
  font-size: .645rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 2px;
}
.footer__contact-item b { display: block; font-size: .875rem; font-weight: 700; color: rgba(255,255,255,.88); }
a.footer__contact-item:hover b { color: #fff; }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,.09); padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  font-size: .805rem; color: rgba(255,255,255,.42);
}
.footer__bar a:hover { color: var(--orange); }
.footer__legal { display: flex; gap: 8px; align-items: center; }

/* ---------- To top ---------- */
.totop {
  position: fixed; right: 24px; bottom: 24px; z-index: 800;
  width: 46px; height: 46px; border-radius: 50%; border: 0;
  background: var(--navy); color: #fff; display: grid; place-items: center;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s, background .25s;
}
.totop.is-on { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--orange); }
.totop svg { width: 18px; height: 18px; }

/* ---------- Page hero, inner pages ---------- */
.page-hero {
  background: var(--cream);
  padding: calc(var(--nav-h) + 74px) 0 74px;
  position: relative; overflow: hidden; text-align: center;
  border-bottom: 1px solid var(--line);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% -14%, rgba(242,101,34,.16), transparent 52%),
    radial-gradient(circle at 88% 108%, rgba(13,157,218,.11), transparent 48%);
}
.page-hero .wrap { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); }
.page-hero p { max-width: 660px; margin-inline: auto; font-size: 1.07rem; }
.page-hero__actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav { gap: 14px; }
  .nav__links > a, .nav__top { padding: 9px 9px; font-size: .82rem; }
  .nav__cta .btn { padding: 10px 15px; font-size: .8rem; }
  .brand__tag { font-size: .46rem; }
}
@media (max-width: 1020px) {
  .nav__links > a, .nav__top { padding: 8px 7px; font-size: .78rem; }
  .brand__text { display: none; }
  .mega { width: 480px; }
}

@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 44px; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--rev .split__media { order: 0; }
  .grid--4, .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .ptable { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav.is-open .nav__links {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 14px 24px 20px; box-shadow: var(--shadow);
  }
  .nav.is-open .nav__cta {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    padding: 0 24px 20px; background: #fff; box-shadow: var(--shadow);
    transform: translateY(358px);
  }
  .nav.is-open .nav__links > a, .nav.is-open .nav__top { padding: 12px 14px; }

  /* dropdowns become tap to open accordions */
  .nav__group { position: static; }
  .nav__top { flex: 1; }
  .nav__top .nav__caret { display: none; }
  .nav.is-open .nav__group { display: flex; flex-wrap: wrap; align-items: center; }
  .nav__sub {
    display: grid; place-items: center;
    width: 38px; height: 38px; border: 0; background: transparent;
    border-radius: 10px; color: var(--muted);
  }
  .nav__sub .nav__caret { width: 15px; height: 15px; opacity: 1; }
  .nav__sub[aria-expanded="true"] .nav__caret { transform: rotate(180deg); }
  .mega {
    position: static; transform: none; width: 100%; max-width: none;
    box-shadow: none; border: 0; border-radius: 0; padding: 0 0 6px 10px;
    display: none; opacity: 1; visibility: visible; pointer-events: auto;
  }
  .mega::before { display: none; }
  .nav__group:hover .mega, .nav__group:focus-within .mega { display: none; }
  .nav__group.is-open .mega { display: block; transform: none; }
  .mega__inner { grid-template-columns: 1fr; }
  .mega__item { padding: 9px 10px; }
  .mega__all { justify-content: flex-start; }
  .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .stats--3 { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
  .sec-head { margin-bottom: 38px; }
}
@media (max-width: 400px) {
  .brand__tag { display: none; }
}
@media (max-width: 700px) {
  .footer__contact { gap: 16px; flex-direction: column; }
}
@media (max-width: 760px) {
  .pick-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .grid--4, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .footer__row { grid-template-columns: 1fr; gap: 6px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .form-card, .case, .panel, .prod, .plan { padding: 24px; }
  .hero { padding-top: calc(var(--nav-h) + 56px); }
  .hero__band { margin-top: 50px; }
  .btn { width: 100%; }
  .hero__actions, .cta__actions, .page-hero__actions { flex-direction: column; }
  .groupco { flex-direction: column; align-items: flex-start; gap: 14px; }
}
