/* =============================================================================
   YuSMP Group — main.css
   Design language: "Aurora editorial"
   Premium, dark-hero-first marketing CSS. No frameworks. Mobile-first.
   ----------------------------------------------------------------------------
   DESIGN LANGUAGE
   The visual identity rests on three pillars:
     1) An "aurora" mesh — soft multi-stop radial blobs (yellow, blue, cyan,
        orange) layered with screen blending, blurred, behind dark hero/CTA
        sections. Quiet but unmistakable.
     2) Editorial type — Nunito Sans 400/700/800, tightened tracking on heads
        (-0.02em), generous body line-height (1.6), 17px base, big fluid
        clamp() scale.
     3) White-card precision — service/case/industry cards in clean white with
        a 1px hairline border, 20px radius, hover gradient-border via ::before
        mask trick (yellow → cyan → blue), and a 4px lift.

   TOKEN TABLE
     Brand
       --c-brand            #FFD300   primary yellow (highlight, accents)
       --c-brand-soft       #FFF3B0   yellow tint background
     CTA / link
       --c-cta              #2E5CF2   primary blue
       --c-cta-hover        #1F47D1   darker hover
       --c-cta-soft         #E8EFFF   soft blue tint (icon chips, fields)
     Accents
       --c-accent-orange    #FF6900
       --c-accent-cyan      #0693E3
     Surfaces
       --c-bg               #FFFFFF   base
       --c-bg-soft          #F6F9FE   soft sections
       --c-bg-dark          #0B1020   hero / cta-band / footer
       --c-bg-dark-2        #131A33   hero gradient inner
     Text
       --c-text             #0B1020
       --c-text-muted       #5B6478
     Borders
       --c-border           #E6EAF2
       --c-border-strong    #C9D2E1

     Radii   --radius-sm 10  --radius-md 16  --radius-lg 20  --radius-xl 28
     Shadows --shadow-card / --shadow-card-hover / --shadow-elevated
     Spacing --s-1..--s-10 (4 8 12 16 24 32 48 64 80 120)
     Layout  container max 1200px, side padding clamp(16, 4vw, 32)
     Section --section-y: clamp(72px, 9vw, 128px)
   ============================================================================= */

@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;700;800&display=swap");

/* -----------------------------------------------------------------------------
   1. Tokens
----------------------------------------------------------------------------- */
:root {
  /* Brand */
  --c-brand: #FFD300;
  --c-brand-soft: #FFF3B0;

  /* CTA */
  --c-cta: #2E5CF2;
  --c-cta-hover: #1F47D1;
  --c-cta-soft: #E8EFFF;

  /* Accents */
  --c-accent-orange: #FF6900;
  --c-accent-cyan: #0693E3;

  /* Surfaces (DARK THEME) */
  --c-bg: #0B1020;
  --c-bg-soft: #131A33;
  --c-bg-dark: #06091A;
  --c-bg-dark-2: #131A33;
  --c-surface-card: #131A33;
  --c-surface-card-2: #1B2240;

  /* Text */
  --c-text: #F2F4FA;
  --c-text-muted: #9AA3B8;

  /* Borders */
  --c-border: rgba(255, 255, 255, 0.08);
  --c-border-strong: rgba(255, 255, 255, 0.16);

  /* CTA soft re-tinted for dark */
  --c-cta-soft: rgba(46, 92, 242, 0.16);
  --c-brand-soft: rgba(255, 211, 0, 0.16);

  /* Radius */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  /* Shadows */
  --shadow-card: 0 2px 10px rgba(11, 16, 32, .04), 0 1px 2px rgba(11, 16, 32, .04);
  --shadow-card-hover: 0 20px 60px rgba(46, 92, 242, .14), 0 4px 12px rgba(11, 16, 32, .05);
  --shadow-elevated: 0 30px 80px rgba(11, 16, 32, .18);

  /* Spacing */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 80px;
  --s-10: 120px;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(16px, 4vw, 32px);
  --section-y: clamp(72px, 9vw, 128px);

  /* Typography */
  --ff-sans: "Nunito Sans", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --fs-body: 17px;
  --lh-body: 1.6;

  /* Motion */
  --ease: cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --dur-1: 160ms;
  --dur-2: 280ms;
  --dur-3: 480ms;
  --dur-4: 760ms;

  /* Header */
  --header-h: 72px;
}

/* -----------------------------------------------------------------------------
   2. Reset / base
----------------------------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  font-family: var(--ff-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--c-cta);
  text-decoration: none;
  transition: color var(--dur-1) var(--ease);
}

a:hover { color: var(--c-cta-hover); }

button {
  font-family: inherit;
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--s-4);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.5rem);
  line-height: 1.05;
}
h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  line-height: 1.1;
}
h3 {
  font-size: clamp(1.2rem, 1.6vw, 1.4rem);
  line-height: 1.25;
}
h4 {
  font-size: 1.125rem;
  line-height: 1.3;
}

p { margin: 0 0 var(--s-4); }

ul, ol {
  margin: 0 0 var(--s-4);
  padding-left: 1.25rem;
}

hr {
  border: 0;
  border-top: 1px solid var(--c-border);
  margin: var(--s-7) 0;
}

::selection {
  background: var(--c-brand);
  color: var(--c-text);
}

/* Global focus-visible */
:focus-visible {
  outline: 3px solid var(--c-brand);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Skip-link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  z-index: 1000;
  background: var(--c-text);
  color: #fff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  transition: top var(--dur-2) var(--ease);
}
.skip-link:focus {
  top: 8px;
  color: #fff;
}

/* -----------------------------------------------------------------------------
   3. Layout primitives
----------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding: var(--section-y) 0;
  position: relative;
}

.section--soft {
  background: var(--c-bg-soft);
}

.section--alt {
  background: linear-gradient(180deg, var(--c-bg-soft) 0%, #fff 100%);
}

.section--mesh {
  background: var(--c-bg-soft);
  position: relative;
  overflow: hidden;
}
.section--mesh::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40% 50% at 80% 10%, rgba(255, 211, 0, 0.18), transparent 70%),
    radial-gradient(40% 60% at 10% 90%, rgba(46, 92, 242, 0.12), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.section--mesh > * { position: relative; z-index: 1; }

.section--dark {
  background: var(--c-bg-dark);
  color: #E6EAF5;
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: #FFFFFF; }
.section--dark a { color: #B6C7FF; }
.section--dark a:hover { color: #FFFFFF; }

.section__title {
  font-size: clamp(1.8rem, 3.4vw, 2.75rem);
  margin: 0 0 var(--s-4);
  letter-spacing: -0.02em;
}
.section__lead {
  color: var(--c-text-muted);
  max-width: 60ch;
  margin: 0 0 var(--s-7);
  font-size: 1.125rem;
  line-height: 1.55;
}
.section__note {
  color: var(--c-text-muted);
  font-size: 0.9375rem;
  margin-top: var(--s-5);
}

.grid {
  display: grid;
  gap: var(--s-5);
}
.grid--2 { grid-template-columns: 1fr; }
.grid--3 { grid-template-columns: 1fr; }
.grid--4 { grid-template-columns: 1fr; }

@media (min-width: 600px) {
  .grid--2 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
  .grid { gap: var(--s-6); }
}

/* -----------------------------------------------------------------------------
   4. Header / nav
----------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .75);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: background var(--dur-2) var(--ease),
              border-color var(--dur-2) var(--ease),
              box-shadow var(--dur-2) var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, .9);
  border-bottom-color: var(--c-border);
  box-shadow: 0 1px 0 rgba(11, 16, 32, .03);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
  height: var(--header-h);
}

.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-text);
}
.logo img,
.logo svg {
  height: 32px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}

.nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: var(--s-4);
  flex-wrap: nowrap;
}

.nav__item { margin: 0; flex: 0 0 auto; }

.nav__link {
  display: inline-block;
  padding: var(--s-2) 0;
  color: var(--c-text);
  font-weight: 700;
  font-size: .9375rem;
  position: relative;
  white-space: nowrap;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: var(--c-brand);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-2) var(--ease);
}
.nav__link:hover,
.nav__link.is-active { color: var(--c-text); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }

.nav__cta { margin-left: var(--s-3); }

/* Burger */
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  background: #fff;
  position: relative;
}
.menu-toggle::before,
.menu-toggle::after,
.menu-toggle span {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--c-text);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform var(--dur-2) var(--ease),
              opacity var(--dur-1) var(--ease),
              top var(--dur-2) var(--ease);
}
.menu-toggle::before { top: calc(50% - 6px); }
.menu-toggle::after  { top: calc(50% + 6px); }

body.is-open .menu-toggle::before {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
body.is-open .menu-toggle::after {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}
body.is-open .menu-toggle span { opacity: 0; }

@media (max-width: 1100px) {
  .menu-toggle { display: inline-block; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--s-5) var(--container-pad) var(--s-7);
    border-top: 1px solid var(--c-border);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur-2) var(--ease), opacity var(--dur-2) var(--ease);
    overflow-y: auto;
  }
  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }
  .nav__item { border-bottom: 1px solid var(--c-border); }
  .nav__link {
    padding: var(--s-4) 0;
    font-size: 1.125rem;
  }
  .nav__cta {
    margin-top: var(--s-5);
    margin-left: 0;
    align-self: flex-start;
  }
  body.is-open .nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  body.is-open { overflow: hidden; }
}

/* -----------------------------------------------------------------------------
   5. Buttons
----------------------------------------------------------------------------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 48px;
  padding: 0 var(--s-5);
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--dur-2) var(--ease),
              color var(--dur-1) var(--ease),
              border-color var(--dur-1) var(--ease),
              transform var(--dur-1) var(--ease),
              box-shadow var(--dur-2) var(--ease);
  text-decoration: none;
  letter-spacing: -0.005em;
}

.btn:active { transform: translateY(1px); }

.btn--primary {
  background: linear-gradient(135deg, var(--c-cta) 0%, #4F76FF 100%);
  background-size: 200% 200%;
  background-position: 0% 50%;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 6px 20px rgba(46, 92, 242, .28);
}
.btn--primary::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='9 18 15 12 9 6'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform var(--dur-2) var(--ease);
}
.btn--primary:hover {
  background-position: 100% 50%;
  color: #fff;
  box-shadow: 0 12px 32px rgba(46, 92, 242, .38);
  transform: translateY(-1px);
}
.btn--primary:hover::after { transform: translateX(4px); }

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border-color: var(--c-border-strong);
}
.btn--outline:hover {
  border-color: var(--c-text);
  color: var(--c-text);
  background: rgba(11, 16, 32, .03);
}

.btn--outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  background: transparent;
}
.btn--outline-light:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}

/* Compatibility: outline on dark surface auto-adopts light styling */
.section--dark .btn--outline,
.hero .btn--outline,
.cta-band .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, .35);
  background: transparent;
}
.section--dark .btn--outline:hover,
.hero .btn--outline:hover,
.cta-band .btn--outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}

.btn--lg {
  min-height: 56px;
  padding: 0 var(--s-6);
  font-size: 1.0625rem;
}

/* -----------------------------------------------------------------------------
   6. Hero — Aurora mesh
----------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, var(--c-bg-dark-2) 0%, var(--c-bg-dark) 60%);
  color: #E6EAF5;
  padding: clamp(80px, 10vw, 140px) 0 clamp(72px, 9vw, 120px);
  isolation: isolate;
}
/* Compact top padding when breadcrumb nav sits directly above hero */
nav[aria-label="Breadcrumb"] + .hero,
.breadcrumbs + .hero {
  padding-top: clamp(28px, 3.5vw, 44px);
}

/* Aurora blobs */
.hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(closest-side at 80% 18%, rgba(255, 211, 0, 0.55), transparent 70%),
    radial-gradient(closest-side at 12% 50%, rgba(46, 92, 242, 0.55), transparent 70%),
    radial-gradient(closest-side at 50% 92%, rgba(6, 147, 227, 0.45), transparent 70%),
    radial-gradient(closest-side at 14% 8%, rgba(255, 105, 0, 0.40), transparent 70%);
  filter: blur(80px);
  mix-blend-mode: screen;
  opacity: 0.55;
  z-index: -2;
  pointer-events: none;
}

/* Subtle noise overlay */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  background-size: 160px 160px;
  opacity: 0.04;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: overlay;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
  align-items: center;
}

@media (min-width: 900px) {
  .hero__inner {
    grid-template-columns: 60% 40%;
    gap: var(--s-8);
  }
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #B6C7FF;
  margin-bottom: var(--s-4);
}
.hero__eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-brand);
  box-shadow: 0 0 0 0 rgba(255, 211, 0, 0.6);
  animation: pulse-dot 2s ease-out infinite;
}

@keyframes pulse-dot {
  0%   { box-shadow: 0 0 0 0 rgba(255, 211, 0, 0.6); }
  70%  { box-shadow: 0 0 0 10px rgba(255, 211, 0, 0); }
  100% { box-shadow: 0 0 0 0 rgba(255, 211, 0, 0); }
}

.hero__title {
  margin: 0 0 var(--s-5);
  color: #FFFFFF;
  font-size: clamp(2.4rem, 5.2vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.hero__title .hl {
  position: relative;
  white-space: nowrap;
  padding: 0 .12em;
}
.hero__title .hl::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.36em;
  background: var(--c-brand);
  z-index: -1;
  transform-origin: left center;
  transform: scaleX(0);
  animation: hl-fill 900ms var(--ease-out) 300ms forwards;
}

@keyframes hl-fill {
  to { transform: scaleX(1); }
}

.hero__lead {
  font-size: clamp(1.0625rem, 1.4vw, 1.25rem);
  color: rgba(230, 234, 245, 0.78);
  max-width: 56ch;
  margin: 0 0 var(--s-7);
  line-height: 1.55;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 720px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--s-5);
}
@media (min-width: 700px) {
  .hero__metrics { grid-template-columns: repeat(4, 1fr); }
}

.hero__metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--s-3) var(--s-5) var(--s-3) 0;
  position: relative;
}
.hero__metric + .hero__metric {
  padding-left: var(--s-5);
}
@media (min-width: 700px) {
  .hero__metric + .hero__metric::before {
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
  }
}

.hero__metric strong {
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.hero__metric span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(230, 234, 245, 0.6);
  font-weight: 700;
}

/* Hero visual (right column) */
.hero__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-width: 480px;
  justify-self: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-elevated);
  animation: float-y 6s ease-in-out infinite alternate;
}
.hero__visual img,
.hero__visual svg,
.hero__visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes float-y {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

/* Service hero variant: lighter, smaller */
.hero--service {
  padding: clamp(64px, 7vw, 96px) 0 clamp(56px, 6vw, 80px);
}
.hero--service .hero__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
}
.hero--service .hero__inner {
  max-width: 1200px;
}

/* Service hero video layer: poster <img> + autoplay <video> stacked, video on top.
   If video fails to load or user prefers reduced motion, poster stays visible. */
.hero__visual--video > img,
.hero__visual--video > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__visual--video > video { z-index: 1; }
@media (prefers-reduced-motion: reduce) {
  .hero__visual--video > video { display: none; }
}

/* -----------------------------------------------------------------------------
   7. Cards
----------------------------------------------------------------------------- */
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-6);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transition: transform var(--dur-2) var(--ease),
              box-shadow var(--dur-2) var(--ease),
              border-color var(--dur-2) var(--ease);
  isolation: isolate;
}

/* Animated gradient border using mask trick */
.card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--c-brand) 0%, var(--c-accent-cyan) 50%, var(--c-cta) 100%);
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--dur-2) var(--ease);
  pointer-events: none;
  z-index: 1;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
  border-color: transparent;
}
.card:hover::before { opacity: 1; }

.card__icon {
  width: 64px;
  height: 64px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: var(--c-cta-soft);
  color: var(--c-cta);
  font-size: 1.75rem;
  margin-bottom: var(--s-2);
  transition: transform var(--dur-2) var(--ease);
}
.card__icon svg {
  width: 32px;
  height: 32px;
}
.card:hover .card__icon { transform: scale(1.05) rotate(-2deg); }

.card__title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

.card__text {
  color: var(--c-text-muted);
  margin: 0;
  line-height: 1.55;
}

.card__link {
  margin-top: auto;
  font-weight: 800;
  color: var(--c-cta);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding-top: var(--s-2);
}
.card__link::after {
  content: "→";
  transition: transform var(--dur-2) var(--ease);
  font-weight: 700;
}
.card__link:hover { color: var(--c-cta-hover); }
.card__link:hover::after { transform: translateX(4px); }

.card__body {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.card__meta {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  margin-top: var(--s-3);
}

.card__tag { margin-bottom: var(--s-2); }

/* Service cards */
.card--service .card__icon {
  background: var(--c-cta-soft);
  color: var(--c-cta);
}

/* Industry cards */
.card--industry {
  padding-top: 0;
}
.card--industry .card__icon {
  width: 100%;
  height: 140px;
  margin: 0 0 var(--s-4) 0;
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 70% 30%, rgba(255, 105, 0, 0.18), transparent 60%),
    linear-gradient(135deg, var(--c-brand-soft) 0%, var(--c-cta-soft) 100%);
  color: var(--c-accent-orange);
  font-size: 2.5rem;
}
.card--industry .card__icon svg {
  width: 56px;
  height: 56px;
}
.card--industry {
  /* re-add top padding via icon margin already handled */
  padding-top: var(--s-6);
}

/* Case cards */
.card--case {
  padding: 0;
  overflow: hidden;
}
.card--case .card__cover,
.card--case .card__media {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, var(--c-cta) 0%, var(--c-accent-cyan) 100%) center/cover no-repeat;
  position: relative;
  overflow: hidden;
}
.card--case .card__cover img,
.card--case .card__cover svg,
.card--case .card__media img,
.card--case .card__media svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card--case .card__body {
  padding: var(--s-5) var(--s-6) var(--s-6);
  gap: var(--s-3);
}

/* Fallback when markup omits .card__body — pad direct text children so
   tag/title/copy/link don't touch the card edges. */
.card--case > .card__tag,
.card--case > .card__title,
.card--case > .card__text,
.card--case > .card__meta,
.card--case > .card__link {
  padding-left: var(--s-6);
  padding-right: var(--s-6);
}
.card--case > .card__tag {
  display: inline-block;
  margin-top: var(--s-5);
}
.card--case > .card__cover + .card__tag,
.card--case > .card__media + .card__tag {
  margin-top: var(--s-5);
}
.card--case > .card__title { margin-top: var(--s-3); }
.card--case > .card__link {
  display: inline-block;
  margin-top: var(--s-3);
  padding-bottom: var(--s-6);
}
.card--case > :last-child:not(.card__cover):not(.card__media):not(.card__body) {
  padding-bottom: var(--s-6);
}

@media (min-width: 800px) {
  .card--case .card__cover,
  .card--case .card__media { height: 200px; }
}

/* -----------------------------------------------------------------------------
   8. Logo strip
----------------------------------------------------------------------------- */
.logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-5);
  align-items: center;
}
@media (min-width: 600px) { .logos { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .logos { grid-template-columns: repeat(6, 1fr); } }

.logos__item {
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1);
  opacity: 0.55;
  transition: filter var(--dur-2) var(--ease),
              opacity var(--dur-2) var(--ease),
              transform var(--dur-2) var(--ease);
}
.logos__item:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}
.logos__item img,
.logos__item svg {
  max-height: 36px;
  width: auto;
}

[data-reveal] .logos__item { transition-delay: calc(var(--i, 0) * 60ms); }

/* -----------------------------------------------------------------------------
   9. Stats
----------------------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}
@media (min-width: 800px) {
  .stats { grid-template-columns: repeat(4, 1fr); }
}

.stats__item {
  text-align: left;
  padding: var(--s-3) 0 var(--s-5);
  position: relative;
  opacity: 0;
  transform: translateY(8px);
  animation: fade-up var(--dur-3) var(--ease-out) forwards;
  animation-delay: calc(var(--i, 0) * 80ms);
}
@keyframes fade-up {
  to { opacity: 1; transform: none; }
}

.stats__num {
  display: block;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: var(--s-3);
  color: var(--c-text);
  font-variant-numeric: tabular-nums;
  position: relative;
}
.stats__num::after {
  content: "";
  display: block;
  margin-top: var(--s-2);
  width: 36px;
  height: 4px;
  background: var(--c-brand);
  border-radius: 2px;
}

.section--dark .stats__num { color: #fff; }

.stats__label {
  display: block;
  color: var(--c-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}
.section--dark .stats__label { color: rgba(230, 234, 245, 0.6); }

/* -----------------------------------------------------------------------------
   10. Process
----------------------------------------------------------------------------- */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-6);
  counter-reset: step;
  position: relative;
}
@media (min-width: 600px) { .process { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) {
  .process {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--s-7);
  }
  /* Connecting dotted line */
  .process::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 0;
    border-top: 2px dotted var(--c-border-strong);
    z-index: 0;
  }
}

.process__step {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  position: relative;
  z-index: 1;
}

.process__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-brand);
  color: var(--c-text);
  font-weight: 800;
  font-size: 1.25rem;
  box-shadow: 0 6px 18px rgba(255, 211, 0, 0.35);
  flex: 0 0 auto;
}

.process__title {
  font-size: 1.125rem;
  font-weight: 800;
  margin: var(--s-2) 0 0;
  letter-spacing: -0.01em;
}

.process__text {
  color: var(--c-text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}

.process__step h3 {
  margin: var(--s-2) 0 0;
  font-size: 1.125rem;
}
.process__step p {
  margin: 0;
  color: var(--c-text-muted);
}

/* -----------------------------------------------------------------------------
   11. Testimonials
----------------------------------------------------------------------------- */
.testimonial {
  position: relative;
  padding: var(--s-7) var(--s-6) var(--s-6);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: 8px;
  left: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--c-brand);
  opacity: 0.3;
  font-weight: 800;
  pointer-events: none;
}

.testimonial__quote {
  font-size: 1.125rem;
  line-height: 1.55;
  margin: 0;
  position: relative;
  color: var(--c-text);
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-border);
}
.testimonial__author strong {
  color: var(--c-text);
  font-weight: 800;
  display: block;
}

/* -----------------------------------------------------------------------------
   12. FAQ
----------------------------------------------------------------------------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 820px;
  margin: 0 auto;
}

.faq__item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--c-border);
  border-radius: 0;
  padding: 0;
  overflow: hidden;
  transition: background var(--dur-2) var(--ease);
}
.faq__item[open] {
  background: var(--c-bg-soft);
}

.faq__q {
  list-style: none;
  cursor: pointer;
  padding: var(--s-5) var(--s-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-4);
  font-weight: 800;
  font-size: 1.125rem;
  color: var(--c-text);
  letter-spacing: -0.01em;
}
.faq__q::-webkit-details-marker { display: none; }

.faq__q::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-cta-soft);
  color: var(--c-cta);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  transition: transform var(--dur-2) var(--ease),
              background var(--dur-2) var(--ease);
  flex: 0 0 auto;
}

.faq__item[open] .faq__q::after {
  content: "\00d7";
  transform: rotate(0deg);
  background: var(--c-cta);
  color: #fff;
  font-size: 1.5rem;
}

.faq__a {
  padding: 0 var(--s-4) var(--s-5);
  color: var(--c-text-muted);
  line-height: 1.6;
  animation: faq-open var(--dur-3) var(--ease-out);
}
.faq__a > *:first-child { margin-top: 0; }
.faq__a > *:last-child  { margin-bottom: 0; }

@keyframes faq-open {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* -----------------------------------------------------------------------------
   13. CTA band
----------------------------------------------------------------------------- */
.cta-band {
  background: var(--c-bg-dark);
  color: #E6EAF5;
  padding: clamp(64px, 8vw, 112px) 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(closest-side at 80% 20%, rgba(255, 211, 0, 0.35), transparent 70%),
    radial-gradient(closest-side at 20% 80%, rgba(46, 92, 242, 0.45), transparent 70%),
    radial-gradient(closest-side at 90% 90%, rgba(6, 147, 227, 0.30), transparent 70%);
  filter: blur(70px);
  mix-blend-mode: screen;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-band__title {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin: 0;
  max-width: 28ch;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.cta-band p {
  max-width: 56ch;
  color: rgba(230, 234, 245, 0.78);
  margin: 0;
}

/* -----------------------------------------------------------------------------
   14. Footer
----------------------------------------------------------------------------- */
.site-footer {
  background: var(--c-bg-dark);
  color: rgba(230, 234, 245, 0.7);
  padding: clamp(64px, 8vw, 96px) 0 var(--s-6);
  position: relative;
}

.site-footer a {
  color: rgba(230, 234, 245, 0.7);
  transition: color var(--dur-1) var(--ease);
}
.site-footer a:hover { color: #fff; }

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-7);
}
@media (min-width: 600px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .site-footer__grid {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: var(--s-8);
  }
}

.site-footer__col p {
  color: rgba(230, 234, 245, 0.6);
  font-size: 0.9375rem;
}

.site-footer__title {
  color: #fff;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 var(--s-4);
  font-weight: 800;
}

.site-footer__links,
.site-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}
.site-footer__links a,
.site-footer__list a {
  font-size: 0.9375rem;
}

.site-footer__about {
  color: rgba(230, 234, 245, 0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 32ch;
  margin: 0 0 var(--s-4);
}

.logo--footer {
  display: inline-block;
  margin-bottom: var(--s-4);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo--footer img,
.logo--footer svg { height: 32px; width: auto; }

.site-footer__bottom {
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--s-3);
  font-size: 0.875rem;
  color: rgba(230, 234, 245, 0.5);
}

/* Social */
.social {
  display: flex;
  gap: var(--s-2);
  margin-top: var(--s-4);
}
.social a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transition: background var(--dur-2) var(--ease),
              transform var(--dur-2) var(--ease),
              color var(--dur-1) var(--ease);
}
.social a:hover {
  background: var(--c-cta);
  color: #fff;
  transform: translateY(-2px);
}
.social svg {
  width: 18px;
  height: 18px;
}
.social--center {
  justify-content: center;
  margin-top: var(--s-3);
}

/* -----------------------------------------------------------------------------
   15. Forms
----------------------------------------------------------------------------- */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  max-width: 560px;
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

@media (min-width: 600px) {
  .form__row--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--s-4);
  }
}

.form__label {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--c-text);
}

.form__input,
.form__textarea {
  width: 100%;
  font: inherit;
  color: var(--c-text);
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  min-height: 52px;
  transition: border-color var(--dur-1) var(--ease),
              box-shadow var(--dur-1) var(--ease),
              background var(--dur-1) var(--ease);
}

.form__textarea {
  min-height: 160px;
  resize: vertical;
  line-height: 1.5;
}

.form__input:hover,
.form__textarea:hover {
  border-color: var(--c-border-strong);
}

.form__input:focus,
.form__textarea:focus {
  outline: none;
  border-color: var(--c-cta);
  box-shadow: 0 0 0 4px rgba(46, 92, 242, 0.18);
  background: #fff;
}

.form__input[aria-invalid="true"],
.form__textarea[aria-invalid="true"] {
  border-color: #E11D48;
  box-shadow: 0 0 0 4px rgba(225, 29, 72, 0.15);
}

.form__error {
  display: none;
  font-size: 0.875rem;
  color: #E11D48;
  font-weight: 700;
}
.form__error.is-visible { display: block; }

.form__success {
  display: none;
  padding: var(--s-4) var(--s-5);
  background: rgba(6, 147, 227, 0.08);
  border: 1px solid rgba(6, 147, 227, 0.35);
  border-radius: var(--radius-md);
  color: #036FA8;
  font-weight: 700;
  outline: none;
}
.form__success.is-visible {
  display: block;
  animation: form-success-in 360ms var(--ease-out, cubic-bezier(.2,.7,.2,1));
}
@keyframes form-success-in {
  0%   { opacity: 0; transform: translateY(-4px) scale(.98); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}

/* Inline-valid email checkmark */
.form__input.is-valid {
  border-color: #10B981;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2310B981' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px 18px;
  padding-right: 44px;
}

/* Privacy/consent checkbox — bigger tap target, clearer affordance */
.form__label:has(> input[type="checkbox"]) {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  line-height: 1.45;
  cursor: pointer;
}
.form__label input[type="checkbox"] {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 2px 0 0;
  accent-color: var(--c-cta);
  cursor: pointer;
}

/* -----------------------------------------------------------------------------
   16. Utilities — eyebrow / muted / hidden / badges / hl
----------------------------------------------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--c-cta);
  margin-bottom: var(--s-3);
}
.section--dark .eyebrow { color: var(--c-brand); }

.text-muted { color: var(--c-text-muted); }

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--c-brand);
  color: var(--c-text);
  line-height: 1.4;
}
.badge--ai {
  background: var(--c-cta-soft);
  color: var(--c-cta);
}
.badge--gdpr {
  background: rgba(6, 147, 227, 0.12);
  color: #036FA8;
}

/* Inline highlight (used outside hero too) */
.hl {
  background: linear-gradient(180deg, transparent 62%, var(--c-brand) 62%);
  padding: 0 0.1em;
}

/* -----------------------------------------------------------------------------
   17. Breadcrumbs / chips / tags
----------------------------------------------------------------------------- */
.breadcrumbs {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  padding: var(--s-5) 0 0;
}
.breadcrumbs ol,
.breadcrumbs ul {
  list-style: none;
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-2);
  max-width: var(--container-max);
}
.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}
.breadcrumbs li + li::before {
  content: "/";
  color: var(--c-border-strong);
  margin-right: var(--s-1);
}
.breadcrumbs a {
  color: var(--c-text-muted);
  text-decoration: none;
}
.breadcrumbs a:hover { color: var(--c-cta); }
.breadcrumbs [aria-current="page"] {
  color: var(--c-text);
  font-weight: 700;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--c-border);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
  transition: background var(--dur-2) var(--ease),
              border-color var(--dur-2) var(--ease),
              transform var(--dur-2) var(--ease),
              color var(--dur-1) var(--ease);
}
.chip:hover {
  background: var(--c-cta-soft);
  border-color: var(--c-cta);
  color: var(--c-cta);
  transform: translateY(-1px);
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--c-cta);
  background: var(--c-cta-soft);
  border-radius: 999px;
  padding: 5px 12px;
}

/* -----------------------------------------------------------------------------
   18. Contact info side panel
----------------------------------------------------------------------------- */
.contact-info {
  display: grid;
  gap: var(--s-4);
}
.contact-info__note {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  padding: var(--s-4) var(--s-5);
  background: var(--c-bg-soft);
  border-left: 3px solid var(--c-cta);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  line-height: 1.55;
}
.contact-info__gdpr {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
}
.contact-info__gdpr a { color: var(--c-cta); }

/* -----------------------------------------------------------------------------
   19. Scroll-progress (NEW)
----------------------------------------------------------------------------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 100;
  background: transparent;
  pointer-events: none;
}
.scroll-progress::before {
  content: "";
  display: block;
  height: 100%;
  width: var(--progress, 0%);
  background: linear-gradient(90deg, var(--c-brand) 0%, var(--c-accent-orange) 100%);
  transition: width 80ms linear;
}

/* -----------------------------------------------------------------------------
   20. Sticky CTA (NEW)
----------------------------------------------------------------------------- */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 14px 22px;
  background: linear-gradient(135deg, var(--c-cta) 0%, #4F76FF 100%);
  color: #fff;
  font-weight: 800;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(46, 92, 242, 0.42);
  transform: translate(20px, 20px);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--dur-3) var(--ease-out),
              opacity var(--dur-3) var(--ease-out),
              box-shadow var(--dur-2) var(--ease);
  text-decoration: none;
}
.sticky-cta::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 2px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='13 6 19 12 13 18'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'><line x1='5' y1='12' x2='19' y2='12'/><polyline points='13 6 19 12 13 18'/></svg>") center/contain no-repeat;
  transition: transform var(--dur-2) var(--ease);
}
.sticky-cta:hover::after { transform: translateX(2px); }
.sticky-cta:hover {
  color: #fff;
  box-shadow: 0 22px 50px rgba(46, 92, 242, 0.55);
  transform: translate(0, -2px) !important;
}
body.is-past-hero .sticky-cta,
.sticky-cta.is-visible {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}
@media (max-width: 600px) {
  .sticky-cta {
    bottom: 16px;
    right: 88px;
    left: 16px;
    justify-content: center;
  }
}

/* -----------------------------------------------------------------------------
   20b. Floating WhatsApp FAB
----------------------------------------------------------------------------- */
.fab-wa {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 61;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.42);
  text-decoration: none;
  transition: transform var(--dur-2) var(--ease),
              box-shadow var(--dur-2) var(--ease),
              width var(--dur-2) var(--ease);
  overflow: hidden;
  white-space: nowrap;
}
.fab-wa:hover,
.fab-wa:focus-visible {
  color: #fff;
  width: 168px;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
}
.fab-wa svg { flex: 0 0 auto; }
.fab-wa__label {
  font-weight: 800;
  font-size: 0.9375rem;
  max-width: 0;
  opacity: 0;
  margin-left: 0;
  transition: max-width var(--dur-2) var(--ease),
              opacity var(--dur-2) var(--ease),
              margin-left var(--dur-2) var(--ease);
}
.fab-wa:hover .fab-wa__label,
.fab-wa:focus-visible .fab-wa__label {
  max-width: 120px;
  opacity: 1;
  margin-left: 8px;
}
/* Lift FAB above sticky-cta on desktop; stack vertically on mobile */
body.is-past-hero .fab-wa,
.sticky-cta.is-visible ~ .fab-wa,
body:has(.sticky-cta.is-visible) .fab-wa {
  bottom: 96px;
}
@media (max-width: 600px) {
  .fab-wa {
    bottom: 16px;
    right: 16px;
    width: 56px;
    height: 56px;
  }
  body.is-past-hero .fab-wa,
  body:has(.sticky-cta.is-visible) .fab-wa {
    bottom: 16px;
  }
  .fab-wa:hover { width: 56px; }
  .fab-wa__label { display: none; }
}

/* -----------------------------------------------------------------------------
   21. Scroll-reveal
----------------------------------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--dur-4) var(--ease-out),
              transform var(--dur-4) var(--ease-out);
  will-change: opacity, transform;
}
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* -----------------------------------------------------------------------------
   21b. Mobile conversion polish (header / form / hero metrics / contact bar)
----------------------------------------------------------------------------- */
@media (max-width: 600px) {
  /* Tighter sticky header — reclaim 16px of viewport on small phones */
  :root { --header-h: 56px; }

  /* iOS auto-zoom guard on form focus: require ≥16px input font */
  .form__input,
  .form__textarea {
    font-size: 16px;
    min-height: 56px;
    padding: 16px;
  }

  /* Print all caps and avoid hover-only affordances */
  .form__label:has(> input[type="checkbox"]) {
    padding: 8px 0;
  }

  /* Mobile contact info bar above form */
  .contact-info-mobile {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 14px 16px;
    margin: 0 0 var(--s-4);
    background: linear-gradient(135deg, #eef3ff, #f6faff);
    border: 1px solid rgba(46, 92, 242, 0.18);
    border-radius: var(--radius-md);
    font-size: 0.9375rem;
  }
  .contact-info-mobile a {
    font-weight: 800;
    color: var(--c-cta);
    text-decoration: none;
  }
  .contact-info-mobile a + a { margin-top: 2px; }
}
@media (min-width: 601px) {
  .contact-info-mobile { display: none; }
}

/* Hero metrics collapse on the smallest phones (e.g. iPhone SE portrait) */
@media (max-width: 360px) {
  .hero__metrics { grid-template-columns: 1fr; }
  .hero__metric + .hero__metric { padding-left: 0; }
}

/* -----------------------------------------------------------------------------
   22. Reduced motion
----------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .hero__visual { animation: none; }
  .hero__eyebrow::before { animation: none; }
  .hero__title .hl::before { transform: scaleX(1); animation: none; }
}

/* -----------------------------------------------------------------------------
   23. Print
----------------------------------------------------------------------------- */
@media print {
  .site-header,
  .site-footer,
  .sticky-cta,
  .fab-wa,
  .scroll-progress,
  .cta-band { display: none !important; }
  .hero { background: #fff; color: #000; padding: 0; }
  .hero::before, .hero::after { display: none; }
  body { background: #fff; color: #000; }
  a { color: #000; text-decoration: underline; }
}


/* ============ CASE STUDIES ============ */

/* --- Cases listing page --- */
.cases-hero {
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
}
.cases-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 16px;
}
.cases-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 16px;
}
.cases-hero__lead {
  color: var(--c-text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0;
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(16px, 2.5vw, 32px);
}
@media (min-width: 600px) {
  .cases-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .cases-grid { grid-template-columns: repeat(3, 1fr); }
}

.case-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.case-card:hover,
.case-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(46, 92, 242, 0.16);
  border-color: transparent;
}
.case-card__cover {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--c-bg-soft);
}
.case-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.case-card:hover .case-card__cover img,
.case-card:focus-visible .case-card__cover img {
  transform: scale(1.04);
}
.case-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.case-card__industry {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-cta);
  font-weight: 800;
}
.case-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.01em;
  line-height: 1.25;
  margin: 0;
}
.case-card__excerpt {
  color: var(--c-text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin: 0;
}
.case-card__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  color: var(--c-text-muted);
}
.case-card__link-arrow {
  color: var(--c-cta);
  font-weight: 800;
  font-size: 0.9375rem;
}
.case-card__link-arrow::after {
  content: " \2192";
  display: inline-block;
  transition: transform 0.3s ease;
}
.case-card:hover .case-card__link-arrow::after,
.case-card:focus-visible .case-card__link-arrow::after {
  transform: translateX(4px);
}

/* --- Case detail page --- */
.case-detail { display: block; }

.case-detail__hero {
  padding: clamp(64px, 8vw, 104px) 0;
  background: linear-gradient(180deg, #F6F9FE 0%, #FFFFFF 60%);
}
.case-detail__hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
@media (min-width: 900px) {
  .case-detail__hero-inner {
    grid-template-columns: 60fr 40fr;
  }
}
.case-detail__hero-eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-cta);
  font-weight: 800;
  margin-bottom: 12px;
}
.case-detail__hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 20px;
}
.case-detail__hero-lead {
  color: var(--c-text-muted);
  font-size: 1.0625rem;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 56ch;
}
.case-detail__hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.case-detail__hero-meta > * {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.case-detail__hero-meta .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-muted);
  font-weight: 700;
}
.case-detail__hero-meta .value {
  font-size: 0.9375rem;
  color: var(--c-text);
  font-weight: 700;
}
.case-detail__hero-cover {
  border-radius: 22px;
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: 0 30px 80px rgba(11, 16, 32, 0.12);
  background: var(--c-bg-soft);
}
.case-detail__hero-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.case-detail__section {
  padding: clamp(56px, 7vw, 88px) 0;
}
.case-detail__section--soft {
  background: var(--c-bg-soft);
}
.case-detail__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
}
.case-detail__lead {
  max-width: 64ch;
  font-size: 1.0625rem;
  color: var(--c-text-muted);
  line-height: 1.6;
  margin: 0 0 32px;
}

/* Feature blocks */
.case-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 40px);
  align-items: center;
}
.case-feature + .case-feature { margin-top: clamp(48px, 6vw, 80px); }
@media (min-width: 900px) {
  .case-feature {
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 64px);
  }
  .case-feature--reverse .case-feature__media { order: 2; }
  .case-feature--reverse .case-feature__body { order: 1; }
}
.case-feature__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 18px 60px rgba(11, 16, 32, 0.08);
  background: var(--c-bg-soft);
}
.case-feature__media img {
  width: 100%;
  height: auto;
  display: block;
}
.case-feature__title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 16px;
  line-height: 1.2;
}
.case-feature__text {
  color: var(--c-text);
  font-size: 1rem;
  line-height: 1.65;
}
.case-feature__text p { margin: 0 0 12px; }
.case-feature__text p:last-child { margin-bottom: 0; }
.case-feature__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.case-feature__list li::before {
  content: "\2713";
  color: var(--c-brand);
  font-weight: 800;
  margin-right: 10px;
}

/* Highlight chips */
.case-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.case-highlight {
  background: var(--c-bg-soft);
  border: 1px solid var(--c-border);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--c-text);
}

/* Results metrics */
.case-results {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2vw, 32px);
  padding: 32px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
}
@media (min-width: 700px) {
  .case-results { grid-template-columns: repeat(4, 1fr); }
}
.case-results__item { text-align: center; }
.case-results__num {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--c-cta);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.case-results__label {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* Optional gallery */
.case-detail__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}
.case-detail__gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

/* Ensure responsive imagery in case content */
.case-detail img { max-width: 100%; height: auto; }

/* Prev / Next pagination */
.case-nav {
  padding: clamp(48px, 6vw, 72px) 0;
  border-top: 1px solid var(--c-border);
}
.case-nav__inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: space-between;
}
@media (min-width: 600px) {
  .case-nav__inner { flex-direction: row; }
}
.case-nav__link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-decoration: none;
  color: inherit;
  flex: 1;
  min-width: 0;
}
.case-nav__direction {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-text-muted);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.case-nav__link--prev .case-nav__direction::before {
  content: "\2190";
  display: inline-block;
  transition: transform 0.3s ease;
}
.case-nav__link--prev:hover .case-nav__direction::before,
.case-nav__link--prev:focus-visible .case-nav__direction::before {
  transform: translateX(-4px);
}
.case-nav__link--next { text-align: right; }
.case-nav__link--next .case-nav__direction { justify-content: flex-end; }
.case-nav__link--next .case-nav__direction::after {
  content: "\2192";
  display: inline-block;
  transition: transform 0.3s ease;
}
.case-nav__link--next:hover .case-nav__direction::after,
.case-nav__link--next:focus-visible .case-nav__direction::after {
  transform: translateX(4px);
}
.case-nav__title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--c-text);
  letter-spacing: -0.01em;
  line-height: 1.3;
}

/* ============================================================
   DARK-THEME OVERRIDES
   Site is dark-only. These rules adjust components that were
   originally tuned for a light page background.
   ============================================================ */

html, body { background: var(--c-bg); color: var(--c-text); color-scheme: dark; }

/* Headings + body inherit text color */
h1, h2, h3, h4, h5, h6 { color: var(--c-text); }
p, li, dd { color: inherit; }

/* Cards become elevated surfaces on dark body */
.card,
.card--service,
.card--industry,
.card--case,
.case-card {
  background: var(--c-surface-card);
  border-color: var(--c-border);
  color: var(--c-text);
}
.card:hover,
.card--service:hover,
.card--industry:hover,
.card--case:hover,
.case-card:hover {
  background: var(--c-surface-card-2);
  box-shadow: 0 24px 60px rgba(46, 92, 242, .22), 0 6px 18px rgba(0, 0, 0, .35);
}
.card__title, .case-card__title, .case-feature__title { color: var(--c-text); }
.card__text, .case-card__excerpt, .case-feature__text { color: var(--c-text-muted); }
.card__meta, .case-card__meta { color: var(--c-text-muted); }
.card__icon { background: var(--c-cta-soft); }

/* Section variants on dark body */
.section { background: var(--c-bg); color: var(--c-text); }
.section--soft, .section--alt, .case-detail__section--soft, .cases-hero {
  background: var(--c-bg-soft);
}
.section--dark { background: var(--c-bg-dark); }
.section__title { color: var(--c-text); }
.section__lead, .section__note, .case-detail__lead { color: var(--c-text-muted); }

/* Hero (already dark) — slight adjustment for new tokens */
.hero { background: linear-gradient(180deg, #06091A 0%, var(--c-bg) 100%); color: var(--c-text); }
.hero__title, .hero__lead, .hero__metric { color: var(--c-text); }
.hero__metric .stats__label, .hero__metrics .stats__label { color: var(--c-text-muted); }

/* Header */
.site-header { background: rgba(11, 16, 32, .72); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--c-border); }
.site-header.is-scrolled { background: rgba(11, 16, 32, .92); }
.nav__link { color: var(--c-text); }
.nav__link:hover, .nav__link[aria-current="page"] { color: var(--c-brand); }

/* Buttons on dark */
.btn--outline { color: var(--c-text); border-color: rgba(255, 255, 255, .24); background: transparent; }
.btn--outline:hover { background: var(--c-text); color: var(--c-bg); border-color: var(--c-text); }

/* Logo: HTML uses color logo.svg site-wide (blue text + yellow arc on dark navy); no filter needed. */

/* Forms: dark inputs */
.form__input, .form__textarea, select.form__input {
  background: var(--c-surface-card);
  color: var(--c-text);
  border: 1px solid var(--c-border-strong);
}
.form__input:focus, .form__textarea:focus, select.form__input:focus {
  outline: none;
  border-color: var(--c-cta);
  box-shadow: 0 0 0 3px rgba(46, 92, 242, .25);
}
.form__label { color: var(--c-text); }
.form__error { color: #FF6B6B; }
.form__success { background: rgba(46, 92, 242, .15); color: var(--c-text); border: 1px solid rgba(46, 92, 242, .35); }
::placeholder { color: var(--c-text-muted); opacity: .8; }

/* Chips and highlights */
.chip { background: var(--c-surface-card); border-color: var(--c-border); color: var(--c-text); }
.chip:hover { background: var(--c-surface-card-2); border-color: var(--c-cta); color: var(--c-text); }
.case-highlight { background: var(--c-surface-card); border-color: var(--c-border); color: var(--c-text); }
.tag, .card__tag { background: rgba(46, 92, 242, .18); color: #B6C7FF; }

/* Breadcrumbs */
.breadcrumbs, .breadcrumbs a { color: var(--c-text-muted); }
.breadcrumbs a:hover { color: var(--c-brand); }
.breadcrumbs [aria-current="page"] { color: var(--c-text); }

/* FAQ */
.faq__item { border-bottom-color: var(--c-border); }
.faq__q { color: var(--c-text); }
.faq__a, .faq__a p { color: var(--c-text-muted); }
.faq__q::after { color: var(--c-brand); }

/* Process */
.process__title { color: var(--c-text); }
.process__text { color: var(--c-text-muted); }
.process__num { background: var(--c-brand); color: #0B1020; }

/* Testimonials */
.testimonial { background: var(--c-surface-card); border-color: var(--c-border); color: var(--c-text); }
.testimonial__quote { color: var(--c-text); }
.testimonial__author { color: var(--c-text-muted); }

/* Logos strip */
.logos__item { color: var(--c-text-muted); filter: grayscale(1) opacity(.55) invert(.85); }
.logos__item:hover { filter: grayscale(0) opacity(1); }

/* Stats */
.stats__num { color: var(--c-text); }
.stats__label { color: var(--c-text-muted); }

/* CTA band already dark — keep it darker than body */
.cta-band { background: linear-gradient(180deg, var(--c-bg-dark) 0%, var(--c-bg-soft) 100%); }
.cta-band__title { color: var(--c-text); }

/* Footer is already dark — refine borders */
.site-footer { background: var(--c-bg-dark); }
.site-footer__bottom { border-top-color: rgba(255, 255, 255, .08); }

/* Sticky CTA, scroll progress, badges */
.sticky-cta { background: var(--c-brand); color: #0B1020; box-shadow: 0 12px 30px rgba(255, 211, 0, .25); }
.scroll-progress { background: linear-gradient(90deg, var(--c-brand), var(--c-cta)); }
.badge { background: var(--c-surface-card); border-color: var(--c-border); color: var(--c-text); }

/* Case-detail hero */
.case-detail__hero { background: linear-gradient(180deg, var(--c-bg-soft) 0%, var(--c-bg) 60%); }
.case-detail__hero-meta-label { color: var(--c-text-muted); }
.case-detail__hero-meta-value { color: var(--c-text); }

/* Light screenshots inside case-feature need a subtle frame so they don't burn */
.case-feature__media,
.case-detail__hero-cover,
.case-card__cover,
.card__cover {
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

/* Industry card cover area on dark */
.card--industry .card__cover {
  background: rgba(46, 92, 242, .06);
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
}
.card--industry .card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Service card cover — real hero photo from the corresponding service page */
.card--service .card__cover {
  background: rgba(46, 92, 242, .06);
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
  margin-bottom: var(--s-3, 1rem);
}
.card--service .card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-3, .35s) var(--ease, ease);
}
.card--service:hover .card__cover img,
.card--service:focus-within .card__cover img {
  transform: scale(1.04);
}

/* Whole-card click target — link's ::before overlays the entire card.
   .card { position: relative } provides the positioning context.
   Scoped to <article> cards so anchor-wrapped variants (blog/case related-services)
   stay unaffected — there .card__link is a <span> and the parent <a> already
   handles the click. */
article.card--industry > .card__link::before,
article.card--service > .card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
article.card--industry,
article.card--service { cursor: pointer; transition: transform var(--dur-2) var(--ease), box-shadow var(--dur-2) var(--ease); }
article.card--industry:hover,
article.card--service:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
article.card--industry:focus-within,
article.card--service:focus-within { outline: 2px solid var(--c-cta); outline-offset: 2px; }

/* Concept card cover — real photo for non-service/industry feature cards
   (Why YuSMP, Engagement models, etc.) */
.card--concept .card__cover {
  background: rgba(46, 92, 242, .06);
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
  border-radius: var(--radius-md);
  margin-bottom: var(--s-3, 1rem);
}
.card--concept .card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--dur-3, .35s) var(--ease, ease);
}
.card--concept:hover .card__cover img,
.card--concept:focus-within .card__cover img {
  transform: scale(1.04);
}

/* Compliance / standards card grids inherit .card — already styled above */

/* Selection */
::selection { background: var(--c-brand); color: #0B1020; }

/* Scrollbar (subtle dark) */
*::-webkit-scrollbar { width: 12px; height: 12px; }
*::-webkit-scrollbar-track { background: var(--c-bg); }
*::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, .1); border-radius: 999px; border: 3px solid var(--c-bg); }
*::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, .2); }

/* Inline links inside body copy on dark */
.section a:not(.btn):not(.card__link):not(.case-card):not(.card):not(.nav__link):not(.case-nav__link):not(.breadcrumbs a) {
  color: #8AA8FF;
}
.section a:not(.btn):hover { color: var(--c-brand); }

/* Case nav (prev/next) */
.case-nav { border-top-color: var(--c-border); }
.case-nav__direction { color: var(--c-text-muted); }
.case-nav__title { color: var(--c-text); }
.case-nav__link:hover .case-nav__title { color: var(--c-brand); }

/* Misc text-muted utility */
.text-muted { color: var(--c-text-muted); }
