/* ============================================================
   Sensory Revolution — main stylesheet
   Inspired by the design tokens from sss.html (blue/green gradient,
   rounded shapes, soft backdrops, premium spacing).
   ============================================================ */

:root {
  --bg:          #f6f8fc;
  --bg-soft:     #ffffff;
  --ink:         #071426;
  --ink-2:       #344054;
  --muted:       #667085;
  --muted-2:     #98a2b3;
  --green:       #14b88a;
  --green-dark:  #08745a;
  /* Warm primary palette — replaces blue as the dominant brand colour */
  --orange:        #ff7a45;        /* coral, used for accents/icons */
  --orange-dark:   #ea5f2e;        /* hover/active state */
  --orange-deep:   #c64a1d;        /* WCAG AA-safe with white text (≈5.0:1) */
  --orange-darker: #a73a16;        /* hover state for primary buttons */
  --orange-tint:   rgba(255, 122, 69, 0.12);
  --orange-border: rgba(255, 122, 69, 0.30);
  --border:      rgba(15, 23, 42, 0.09);
  --border-soft: rgba(15, 23, 42, 0.05);
  --shadow-lg:   0 26px 80px rgba(7, 20, 38, 0.13);
  --shadow-md:   0 18px 46px rgba(7, 20, 38, 0.07);
  --shadow-sm:   0 10px 26px rgba(7, 20, 38, 0.04);
  --radius-xl:   32px;
  --radius-lg:   22px;
  --radius-md:   16px;
  --radius-sm:   12px;
  --container:   1180px;
  --header-h:    80px;
  --transition:  0.18s cubic-bezier(.4, .0, .2, 1);
}

* { box-sizing: border-box; }
*::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px; /* room for sticky header on anchor jumps */
  -webkit-text-size-adjust: 100%;
}

/* Accessible focus ring for keyboard navigation — invisible on mouse focus */
*:focus { outline: none; }
*:focus-visible {
  outline: 2px solid var(--orange-deep);
  outline-offset: 3px;
  border-radius: 6px;
}
a:focus-visible, button:focus-visible, .btn:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--orange-deep);
  outline-offset: 3px;
}
.lang-switch a:focus-visible { outline-offset: 1px; }
.btn--primary:focus-visible { outline-color: #fff; box-shadow: 0 0 0 4px rgba(255, 122, 69, 0.45); }
::selection { background: rgba(255, 122, 69, 0.22); color: var(--ink); }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(circle at 85% -10%, rgba(255, 122, 69, 0.09), transparent 40%),
    radial-gradient(circle at -10% 90%, rgba(20, 184, 138, 0.10), transparent 40%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: var(--orange-deep); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange-darker); }

h1, h2, h3, h4 { margin: 0; color: var(--ink); letter-spacing: -0.035em; }

p { margin: 0; }

ul { list-style: none; padding: 0; margin: 0; }

.skip-link {
  position: absolute; left: -10000px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus {
  left: 16px; top: 16px; width: auto; height: auto; padding: 10px 16px; z-index: 200;
  background: var(--ink); color: #fff; border-radius: 12px;
}

.container { width: min(var(--container), 100%); margin: 0 auto; padding: 0 22px; }
.container--prose { max-width: 760px; }

.gradient-text {
  /* Brand gradient: orange → green (3-stop, orange dominates) */
  background: linear-gradient(115deg, #ff9966 0%, var(--orange) 45%, var(--green) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  font-weight: 900;
}

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(246, 248, 252, 0.78);
  border-bottom: 1px solid var(--border-soft);
}
.site-header__wrap {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 18px 22px;
  display: flex; align-items: center; gap: 24px;
}

.site-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 900; letter-spacing: -0.02em; color: var(--ink);
  flex-shrink: 0;             /* never compress the brand */
  text-decoration: none;
}
.site-logo__mark { display: inline-flex; flex: 0 0 auto; }
.site-logo__text {
  font-size: 18px;
  white-space: nowrap;        /* keep "Sensory Revolution" on one line */
}

.site-nav { margin-left: 18px; }
.site-nav ul { display: flex; gap: 6px; }
.site-nav a {
  display: inline-flex; align-items: center;
  padding: 8px 14px; border-radius: 999px;
  color: var(--ink-2); font-weight: 700; font-size: 14.5px;
  transition: var(--transition);
}
.site-nav a:hover { background: rgba(255, 122, 69, 0.06); color: var(--orange-deep); }
.site-nav a.is-active { background: var(--ink); color: #fff; }

.site-tools { margin-left: auto; display: inline-flex; align-items: center; gap: 12px; }

.lang-switch {
  display: inline-flex; gap: 4px; padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.lang-switch a {
  min-width: 36px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-weight: 900; font-size: 12px; letter-spacing: 0.04em;
  transition: var(--transition);
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.is-active {
  background: var(--ink); color: #fff;
  box-shadow: 0 6px 14px rgba(7, 20, 38, 0.18);
}

.nav-toggle {
  display: none; appearance: none; border: 0; background: transparent;
  width: 42px; height: 42px; cursor: pointer; padding: 10px;
  border-radius: 12px; transition: var(--transition);
}
.nav-toggle:hover { background: rgba(7, 20, 38, 0.05); }
.nav-toggle span {
  display: block; height: 2px; background: var(--ink); border-radius: 2px;
  margin: 4px 0; transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  padding: 16px 22px 22px;
  border-top: 1px solid var(--border-soft);
}
.mobile-nav a {
  display: block; padding: 12px 4px;
  font-weight: 800; font-size: 16px; color: var(--ink);
  border-bottom: 1px solid var(--border-soft);
}
.mobile-nav .btn { margin-top: 14px; }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px;
  border-radius: 999px; cursor: pointer; border: 0;
  font-family: inherit; font-weight: 900; font-size: 15px;
  letter-spacing: -0.015em;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  color: #fff; background: var(--orange-deep);
  box-shadow: 0 18px 34px rgba(198, 74, 29, 0.28);
}
.btn--primary:hover {
  background: var(--orange-darker); color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 22px 44px rgba(198, 74, 29, 0.34);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink); border: 1px solid var(--border);
}
.btn--ghost:hover { background: #fff; }
.btn--dark {
  background: var(--ink); color: #fff;
}
.btn--dark:hover { background: #000; color: #fff; transform: translateY(-2px); }
.btn--block { width: 100%; }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.hero__blob {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: .35;
}
.hero__blob--a {
  width: 480px; height: 480px; top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(255, 122, 69, 0.40), transparent 60%);
}
.hero__blob--b {
  width: 520px; height: 520px; bottom: -160px; left: -120px;
  background: radial-gradient(circle, rgba(20, 184, 138, 0.45), transparent 60%);
}
.hero__wrap {
  position: relative; z-index: 1;
  display: grid; gap: 56px;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.82fr);
  align-items: center;
}

.badge {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 34px; padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 122, 69, 0.16);
  box-shadow: var(--shadow-sm);
  color: var(--orange-darker);
  font-size: 12px; font-weight: 850; letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.badge__dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(20, 184, 138, 0.14);
}

.hero__title {
  max-width: 720px; margin: 0;
  font-size: clamp(40px, 5.6vw, 70px); line-height: 0.96;
  font-weight: 900; letter-spacing: -0.078em;
}
.hero__title span { display: block; }

.hero__intro {
  max-width: 600px; margin: 22px 0 0;
  color: var(--muted);
  font-size: 17.5px; line-height: 1.62; font-weight: 450; letter-spacing: -0.02em;
}

.hero__actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

.chips {
  margin-top: 28px;
  display: flex; flex-wrap: wrap; gap: 8px;
  max-width: 640px;
}
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 36px; padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(15, 23, 42, 0.08);
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
  font-size: 13px; font-weight: 750; letter-spacing: -0.015em;
}
.chip::before {
  content: ""; width: 7px; height: 7px; border-radius: 999px; background: var(--orange-deep);
}

.hero__stats {
  margin-top: 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  max-width: 560px;
}
.stat {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.stat strong {
  display: block; margin-bottom: 8px;
  font-size: 28px; font-weight: 900; letter-spacing: -0.05em; line-height: 1;
}
.stat span { display: block; color: var(--muted); font-size: 13px; font-weight: 650; line-height: 1.3; }

/* Hero side card — photo + live overlay */
.hero__card {
  position: relative;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-lg);
  padding: 14px;
  backdrop-filter: blur(20px);
}
.hero__media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #eafff8, #fff1e8);
  aspect-ratio: 4 / 5;
  min-height: 380px;
}
.hero__media-bg { position: absolute; inset: 0; pointer-events: none; }
.hero__photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.01);
  transition: transform 0.6s ease;
}
.hero__card:hover .hero__photo { transform: scale(1.05); }

.hero__live {
  position: absolute; left: 14px; right: 14px; bottom: 14px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(7, 20, 38, 0.16);
  backdrop-filter: blur(18px);
}
.hero__live-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-bottom: 14px;
}
.hero__live-title { font-size: 13px; font-weight: 900; letter-spacing: -0.02em; color: var(--ink); }
.hero__live-status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(20, 184, 138, 0.14);
  color: var(--green-dark);
  font-size: 11px; font-weight: 900;
  position: relative;
}
/* Small warm dot on the live indicator — adds a touch of urgency */
.hero__live-status::after {
  content: ""; position: absolute;
  right: -2px; top: -2px;
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 2px #fff, 0 0 0 4px rgba(255, 122, 69, 0.30);
}
.hero__live-bars { display: grid; gap: 9px; }
.hero__live-bars .bar { grid-template-columns: 80px 1fr 36px; font-size: 11.5px; }
.dash {
  background: linear-gradient(135deg, #eafff8, #fff1e8);
  border-radius: var(--radius-lg);
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.dash__top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.dash__title { font-weight: 900; font-size: 14px; color: var(--ink); letter-spacing: -0.02em; }
.dash__status {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 999px;
  background: rgba(20, 184, 138, 0.16); color: var(--green-dark);
  font-size: 11px; font-weight: 900;
}
.dash__status::before {
  content: ""; width: 6px; height: 6px; border-radius: 999px; background: var(--green);
}
.dash__metric {
  padding: 18px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}
.dash__metric strong {
  display: block; font-size: 44px; line-height: 1; font-weight: 900;
  letter-spacing: -0.055em;
  background: linear-gradient(115deg, var(--orange), var(--orange-dark), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.dash__metric span {
  display: block; margin-top: 8px;
  color: var(--muted); font-size: 13px; line-height: 1.45; font-weight: 600;
}
.dash__bars { display: grid; gap: 10px; }
.bar {
  display: grid; grid-template-columns: 92px 1fr 38px; gap: 10px;
  align-items: center;
  color: var(--muted); font-size: 12px; font-weight: 750;
}
.bar strong { color: var(--ink); font-weight: 900; text-align: right; }
.bar__track {
  height: 8px; overflow: hidden; border-radius: 999px;
  background: rgba(15, 23, 42, 0.06);
}
.bar__fill {
  display: block; height: 100%; border-radius: inherit;
  width: var(--w, 0%);
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 40%, var(--green) 100%);
  animation: barFill 1.2s ease-out;
}
@keyframes barFill { from { width: 0; } to { width: var(--w); } }

.dash__cta { margin-top: 18px; }
.dash__cta .btn { width: 100%; }

/* =================================================================
   SECTIONS
   ================================================================= */
.section { padding: 80px 0; }
.section--soft {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 69, 0.06), transparent 40%),
    rgba(255, 255, 255, 0.5);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
}
.section__head {
  max-width: 720px; margin-bottom: 48px;
}
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 {
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.04; font-weight: 900;
  letter-spacing: -0.05em;
}
.section__head p {
  margin-top: 16px;
  color: var(--muted); font-size: 17px; line-height: 1.6;
}
.section__foot { margin-top: 38px; text-align: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--orange-darker);
  font-size: 13px; font-weight: 900; letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--green); box-shadow: 0 0 0 6px rgba(20, 184, 138, 0.14);
}
/* Warm variant for recognition / social proof contexts */
.eyebrow--warm { color: var(--orange-dark); }
.eyebrow--warm .dot {
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 122, 69, 0.16);
}

/* Page hero (subpages) */
.page-hero {
  padding: 80px 0 30px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ""; position: absolute; top: -180px; right: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 69, 0.18), transparent 60%);
  filter: blur(60px); pointer-events: none;
}
.page-hero__wrap { max-width: 820px; }
.page-hero h1 {
  font-size: clamp(36px, 5vw, 60px); line-height: 0.98; font-weight: 900;
  letter-spacing: -0.07em;
}
.page-hero h1 strong { display: block; }
.page-hero .lead {
  margin-top: 18px; color: var(--muted);
  font-size: 18px; line-height: 1.6; font-weight: 450;
}
.page-hero--center { text-align: center; }
.page-hero--center .page-hero__wrap { margin: 0 auto; }

/* =================================================================
   SERVICES
   ================================================================= */
.services-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.services-grid--full { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.service-card {
  position: relative;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 69, 0.25);
  box-shadow: var(--shadow-md);
}
.service-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20, 184, 138, 0.12), rgba(255, 122, 69, 0.12));
  color: var(--green-dark);
  font-weight: 900; font-size: 14px; letter-spacing: -0.02em;
}
.service-card h3 {
  font-size: 19px; font-weight: 900; letter-spacing: -0.03em;
  margin-bottom: 10px;
}
.service-card p {
  color: var(--muted); font-size: 14.5px; line-height: 1.55; font-weight: 500;
}

/* Clients */
.clients {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 14px;
}
.client {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--ink-2);
  font-weight: 900; letter-spacing: -0.02em;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.client:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.client__mark {
  width: 14px; height: 14px; border-radius: 4px;
  background: linear-gradient(135deg, var(--green), var(--orange));
}

/* Process */
.process {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: step;
}
.process__step {
  position: relative;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.process__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 12px;
  background: var(--ink); color: #fff;
  font-weight: 900; font-size: 14px;
  margin-bottom: 14px;
}
.process__step h3 {
  font-size: 18px; font-weight: 900; margin-bottom: 6px;
}
.process__step p {
  color: var(--muted); font-size: 14px; line-height: 1.55; font-weight: 500;
}

/* Testimonials */
.testimonials {
  display: grid; gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}
.testimonial {
  margin: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: var(--shadow-sm);
}
.testimonial blockquote {
  margin: 0 0 16px;
  font-size: 16px; line-height: 1.55; font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -0.015em;
}
.testimonial figcaption strong { display: block; color: var(--ink); font-weight: 900; }
.testimonial figcaption span { color: var(--muted); font-size: 13px; font-weight: 600; }

/* Values */
.values {
  display: grid; gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}
.value {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.value__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20, 184, 138, 0.12), rgba(255, 122, 69, 0.12));
  color: var(--green-dark);
  font-weight: 900;
}
.value h3 { font-size: 22px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 8px; }
.value p { color: var(--muted); font-size: 15px; line-height: 1.6; font-weight: 500; }

.stats-row {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, 1fr);
}
.stat-big {
  text-align: center; padding: 30px 20px;
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--border); box-shadow: var(--shadow-sm);
}
.stat-big strong {
  display: block;
  font-size: clamp(36px, 4vw, 52px); line-height: 1; font-weight: 900;
  letter-spacing: -0.05em; margin-bottom: 10px;
}
.stat-big span { color: var(--muted); font-weight: 700; font-size: 14px; }

/* Summary card on services */
.summary-card {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  padding: 36px;
  border-radius: var(--radius-xl);
  background: var(--ink); color: #fff;
  box-shadow: var(--shadow-lg);
}
.summary-card h2 { color: #fff; font-size: 26px; font-weight: 900; letter-spacing: -0.03em; }
.summary-card p { margin-top: 8px; color: rgba(255, 255, 255, 0.72); font-size: 15px; max-width: 540px; }
.summary-card .btn--primary { box-shadow: 0 18px 40px rgba(255, 122, 69, 0.45); }

/* CTA section */
.cta {
  padding: 80px 0;
}
.cta__wrap {
  text-align: center;
  padding: 50px 32px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 122, 69, 0.22), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(20, 184, 138, 0.22), transparent 50%),
    var(--ink);
  color: #fff;
  box-shadow: var(--shadow-lg);
}
.cta__wrap h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px); font-weight: 900; letter-spacing: -0.045em;
}
.cta__wrap p {
  max-width: 540px; margin: 14px auto 28px;
  color: rgba(255, 255, 255, 0.78); font-size: 17px;
}

/* =================================================================
   CONTACT
   ================================================================= */
.contact-grid {
  display: grid; gap: 24px;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
}
.contact-info { display: grid; gap: 14px; }
.contact-info h2 { font-size: 24px; font-weight: 900; letter-spacing: -0.035em; margin-bottom: 4px; }
.info-card {
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.info-card h3 { font-size: 13px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; color: var(--muted); margin-bottom: 8px; }
.info-card a { font-weight: 900; color: var(--ink); }
.info-card a:hover { color: var(--orange-deep); }
.info-card p { color: var(--ink-2); font-weight: 600; }

.contact-form-card {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.contact-form-card h2 { font-size: 26px; font-weight: 900; letter-spacing: -0.035em; margin-bottom: 22px; }

/* =================================================================
   FORM
   ================================================================= */
.form { display: grid; gap: 14px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form__note {
  margin-top: 6px; color: var(--muted-2);
  font-size: 12.5px; line-height: 1.4; text-align: center; font-weight: 500;
}

.field { display: grid; gap: 6px; }
.field label {
  font-size: 13px; font-weight: 800; color: var(--ink-2); letter-spacing: -0.01em;
}
.field input, .field select, .field textarea {
  width: 100%; height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(7, 20, 38, 0.11);
  border-radius: 15px;
  background: #fff;
  color: var(--ink);
  font-family: inherit; font-size: 14.5px; font-weight: 600;
  letter-spacing: -0.015em;
  outline: none;
  transition: var(--transition);
}
.field textarea { height: auto; padding: 14px; resize: vertical; min-height: 120px; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(255, 122, 69, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 122, 69, 0.10);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: rgba(220, 38, 38, 0.6);
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.08);
}
.field__error { color: #b91c1c; font-size: 12.5px; font-weight: 700; }

.checkbox {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--muted); line-height: 1.5;
  cursor: pointer;
}
.checkbox input { margin-top: 4px; accent-color: var(--orange-deep); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Alerts */
.alert {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  margin-bottom: 18px;
  display: grid; gap: 4px;
  font-size: 14px; line-height: 1.5; font-weight: 600;
}
.alert strong { font-weight: 900; }
.alert--success {
  background: rgba(20, 184, 138, 0.10);
  border: 1px solid rgba(20, 184, 138, 0.30);
  color: var(--green-dark);
}
.alert--error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.25);
  color: #991b1b;
}

/* Prose (legal page) */
.prose { padding: 22px 0; border-bottom: 1px solid var(--border-soft); }
.prose:last-child { border-bottom: 0; }
.prose h2 { font-size: 22px; margin-bottom: 8px; font-weight: 900; letter-spacing: -0.03em; }
.prose p { color: var(--ink-2); line-height: 1.65; font-size: 15.5px; }

/* =================================================================
   PRE-FOOTER CTA (gradient banner above the dark footer)
   ================================================================= */
.prefooter-cta {
  padding: 0 22px;
  margin-top: 80px;
}
.prefooter-cta__wrap {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 56px;
  border-radius: var(--radius-xl);
  /* Three-stop gradient: cool blue → warm orange → cool green */
  background: linear-gradient(135deg, #ff7a45 0%, #ff7a45 60%, #14b88a 115%);
  box-shadow:
    0 36px 80px rgba(255, 122, 69, 0.24),
    0 18px 40px rgba(255, 122, 69, 0.18);
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto;
  gap: 36px;
  align-items: center;
  color: #fff;
}
.prefooter-cta__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.prefooter-cta__glow { position: absolute; border-radius: 50%; filter: blur(20px); }
.prefooter-cta__glow--a { width: 320px; height: 320px; right: -80px; top: -120px; background: rgba(255,255,255,0.18); }
.prefooter-cta__glow--b { width: 240px; height: 240px; left: -60px;  bottom: -100px; background: rgba(255,255,255,0.10); }
.prefooter-cta__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.10) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), transparent 90%);
  opacity: 0.5;
}
.prefooter-cta__content { position: relative; z-index: 1; max-width: 640px; }
.prefooter-cta__actions { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 12px; }
.prefooter-cta__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 13px 5px 11px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 122, 69, 0.20);
  border: 1px solid rgba(255, 122, 69, 0.45);
  color: #ffe2d3;
  font-size: 11.5px; font-weight: 900;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.prefooter-cta__eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 69, 0.30);
}
.prefooter-cta h2 {
  color: #fff;
  font-size: clamp(28px, 3.4vw, 42px); line-height: 1.05;
  font-weight: 900; letter-spacing: -0.045em;
  margin-bottom: 12px;
  max-width: 600px;
}
.prefooter-cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px; line-height: 1.55;
  max-width: 540px;
}
.btn--ghost-light {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.26);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, 0.18); color: #fff; transform: translateY(-2px); }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 60px 22px 24px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute; left: 50%; top: 0;
  width: 120%; height: 200px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center top, rgba(255, 122, 69, 0.18), transparent 60%);
  pointer-events: none;
}

.site-footer__main {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid; gap: 40px;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

/* Brand column */
.site-footer .site-logo,
.site-footer .site-logo__text { color: #fff; }
.site-footer__tagline {
  margin: 18px 0 22px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
}
.site-footer__address {
  display: grid; gap: 4px;
  margin-bottom: 22px;
  font-style: normal;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}
.site-footer__address strong {
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 6px;
}
.site-footer__contact {
  display: grid; gap: 8px;
  margin-bottom: 22px;
}
.site-footer__contact-link {
  display: inline-flex; align-items: center; gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px; font-weight: 600;
  transition: color .18s ease;
}
.site-footer__contact-link:hover { color: #fff; }
.site-footer__contact-link svg { color: rgba(255, 255, 255, 0.45); flex: 0 0 16px; }
.site-footer__contact-link:hover svg { color: #fff; }

.site-footer__social {
  display: inline-flex; gap: 8px;
  list-style: none; padding: 0; margin: 0;
}
.site-footer__social a {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.70);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.site-footer__social a:hover {
  background: rgba(255, 122, 69, 0.20);
  border-color: rgba(255, 122, 69, 0.45);
  color: #fff;
  transform: translateY(-2px);
}

/* Link columns */
.site-footer__col h4 {
  color: #fff; font-size: 12px; font-weight: 900;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 20px;
}
.site-footer__col ul { list-style: none; padding: 0; margin: 0; }
.site-footer__col li { margin-bottom: 10px; font-size: 14px; line-height: 1.4; }
.site-footer__col a {
  color: rgba(255, 255, 255, 0.65);
  border-bottom: none;
  transition: color .18s ease, transform .18s ease;
}
.site-footer__col a:hover { color: #fff; }
.site-footer__col-cta {
  display: inline-block;
  margin-top: 6px;
  color: var(--orange-deep) !important;
  font-weight: 800 !important;
  letter-spacing: -0.01em;
}
.site-footer__col-cta:hover { color: #ff9966 !important; transform: translateX(2px); }

/* Newsletter band */
.site-footer__newsletter {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 36px 0;
  display: grid;
  gap: 24px 56px;
  grid-template-columns: 1.1fr 1fr;
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__newsletter-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 4px 10px; margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 122, 69, 0.16);
  border: 1px solid rgba(255, 122, 69, 0.36);
  color: #ffb088;
  font-size: 10.5px; font-weight: 900;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.site-footer__newsletter-text h4 {
  color: #fff; font-size: 22px; font-weight: 900; letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.site-footer__newsletter-text p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px; line-height: 1.55;
  max-width: 440px;
}
.newsletter-form {
  display: flex; gap: 10px;
  align-items: center;
}
.newsletter-form input[type="email"] {
  flex: 1; min-width: 0;
  height: 50px; padding: 0 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  color: #fff;
  font-family: inherit; font-size: 14px;
  outline: none;
  transition: background .2s ease, border-color .2s ease;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.42); }
.newsletter-form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 122, 69, 0.55);
  box-shadow: 0 0 0 4px rgba(255, 122, 69, 0.16);
}
.newsletter-form .btn {
  height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-size: 14px;
  white-space: nowrap;
}
.site-footer__newsletter-consent {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.36);
  font-size: 11.5px;
  margin: 0;
  line-height: 1.4;
}

/* Trust strip */
.site-footer__trust {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 24px 0;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-footer__trust-label {
  color: rgba(255, 255, 255, 0.36);
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-right: 8px;
}
.site-footer__trust ul {
  display: flex; flex-wrap: wrap; gap: 14px 22px;
  list-style: none; padding: 0; margin: 0;
}
.site-footer__trust li {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12.5px; font-weight: 800;
  letter-spacing: -0.01em;
}
.site-footer__trust li svg { color: var(--green); flex: 0 0 14px; }
/* WCAG gets the warm accent — accessibility = welcoming */
.site-footer__trust li:nth-child(4) svg { color: var(--orange); }

/* Bottom bar */
.site-footer__bottom {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 22px 0 0;
  display: grid; gap: 12px 24px;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.50);
}
.site-footer__bottom-left  { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.site-footer__bottom-center { display: flex; justify-content: center; }
.site-footer__bottom-right { display: flex; justify-content: flex-end; align-items: center; gap: 14px; }
.site-footer__bottom a { color: rgba(255, 255, 255, 0.68); }
.site-footer__bottom a:hover { color: #fff; }
.site-footer__sep { opacity: 0.4; }

.site-footer__status {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(20, 184, 138, 0.10);
  border: 1px solid rgba(20, 184, 138, 0.28);
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 12px; font-weight: 700;
}
.site-footer__status:hover { color: #fff !important; background: rgba(20, 184, 138, 0.18); }
.site-footer__status-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #14b88a;
  box-shadow: 0 0 0 3px rgba(20, 184, 138, 0.22);
  flex: 0 0 8px;
  animation: pulseRing 2s ease-out infinite;
}

.site-footer__langs {
  display: inline-flex; gap: 2px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.site-footer__langs a {
  min-width: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.50);
  font-size: 11.5px; font-weight: 900; letter-spacing: 0.04em;
  transition: var(--transition);
}
.site-footer__langs a:hover { color: rgba(255, 255, 255, 0.85); }
.site-footer__langs a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.16);
}
.site-footer__top {
  display: grid; place-items: center;
  width: 34px; height: 34px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.60) !important;
  transition: var(--transition);
}
.site-footer__top:hover {
  background: rgba(255, 122, 69, 0.18);
  border-color: rgba(255, 122, 69, 0.40);
  color: #fff !important;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1100px) {
  .site-footer__main { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer__col:nth-child(4),
  .site-footer__col:nth-child(5) { grid-column: span 1; }
  .site-footer__newsletter { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .prefooter-cta { padding: 0 14px; margin-top: 60px; }
  .prefooter-cta__wrap { grid-template-columns: 1fr; padding: 36px 28px; gap: 22px; }
  .prefooter-cta__actions .btn { width: 100%; }

  .site-footer { padding: 50px 16px 20px; }
  .site-footer__main { grid-template-columns: 1fr 1fr; gap: 28px; }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__newsletter { padding: 28px 0; gap: 16px; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form .btn { width: 100%; }
  .site-footer__bottom { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .site-footer__bottom-left,
  .site-footer__bottom-center,
  .site-footer__bottom-right { justify-content: center; }
}
@media (max-width: 480px) {
  .site-footer__main { grid-template-columns: 1fr; }
}

/* =================================================================
   RESPONSIVE
   ================================================================= */
@media (max-width: 980px) {
  .hero { padding: 56px 0 36px; }
  .hero__wrap { grid-template-columns: 1fr; gap: 36px; }
  .hero__title { font-size: clamp(36px, 7vw, 56px); letter-spacing: -0.06em; }
  .services-grid, .services-grid--full { grid-template-columns: 1fr 1fr; }
  .process { grid-template-columns: 1fr 1fr; }
  .testimonials { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .summary-card { grid-template-columns: 1fr; }
  .site-footer__wrap { grid-template-columns: 1fr 1fr; }

  .site-nav { display: none; }
  .site-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-nav[data-open="true"] { display: block; }
}

@media (max-width: 620px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 36px 0 24px; }
  .hero__stats { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .services-grid, .services-grid--full { grid-template-columns: 1fr; }
  .process { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .site-footer__wrap { grid-template-columns: 1fr; gap: 28px; }
  .contact-form-card { padding: 22px; }
  .cta__wrap { padding: 36px 20px; }
  .summary-card { padding: 26px; }
  .hero__actions .btn { flex: 1; }
}

/* =================================================================
   VISUALLY HIDDEN (a11y helper)
   ================================================================= */
.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;
}

/* =================================================================
   AI / TECH SECTION (home)
   ================================================================= */
.ai-section {
  padding: 80px 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 122, 69, 0.08), transparent 40%),
    linear-gradient(180deg, transparent, rgba(255,255,255,0.6) 40%);
}
.ai-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.ai-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fafbfd);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.ai-card::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0; width: 3px;
  background: linear-gradient(180deg, var(--green), var(--orange));
  opacity: 0; transition: opacity .25s ease;
}
.ai-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(255, 122, 69, 0.20); }
.ai-card:hover::before { opacity: 1; }
.ai-card__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px; margin-bottom: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(20, 184, 138, 0.12), rgba(255, 122, 69, 0.12));
  color: var(--green-dark);
}
.ai-card h3 { font-size: 17px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 8px; line-height: 1.2; }
.ai-card p  { color: var(--muted); font-size: 13.5px; line-height: 1.55; font-weight: 500; }

/* =================================================================
   AWARDS STRIP (home)
   ================================================================= */
.awards { padding: 36px 0 60px; }
.awards__eyebrow {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  font-size: 11px; font-weight: 900; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--orange-dark);
  margin-bottom: 18px;
}
.awards__eyebrow::before,
.awards__eyebrow::after {
  content: "";
  width: 24px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange));
  border-radius: 999px;
}
.awards__eyebrow::after { background: linear-gradient(90deg, var(--orange), transparent); }
.awards__list {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px;
}
.awards__item {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.awards__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
/* The CX award (4th item) gets the warm orange treatment */
.awards__item:nth-child(4) {
  background: linear-gradient(135deg, rgba(255, 122, 69, 0.08), rgba(255, 255, 255, 0.92));
  border-color: var(--orange-border);
}
.awards__item:nth-child(4):hover { border-color: var(--orange); }
.awards__item:nth-child(4) .awards__badge {
  background: linear-gradient(135deg, var(--orange-tint), rgba(255, 122, 69, 0.18));
  color: var(--orange-dark);
}
.awards__badge {
  display: grid; place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(20, 184, 138, 0.12), rgba(255, 122, 69, 0.12));
  color: var(--green-dark);
}
.awards__item strong { font-size: 14.5px; font-weight: 900; letter-spacing: -0.02em; color: var(--ink); }
.awards__item span { color: var(--muted); font-size: 12px; font-weight: 700; }

/* =================================================================
   FAQ
   ================================================================= */
.faq {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 10px;
  max-width: 880px;
  margin-left: auto; margin-right: auto;
}
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq__item:hover { border-color: rgba(255, 122, 69, 0.22); }
.faq__item details summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px; align-items: center;
}
.faq__item details summary::-webkit-details-marker { display: none; }
.faq__cat {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 122, 69, 0.08);
  color: var(--orange-deep);
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap;
}
.faq__q { font-size: 16px; font-weight: 850; letter-spacing: -0.02em; color: var(--ink); line-height: 1.35; }
.faq__chev {
  display: grid; place-items: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255, 122, 69, 0.08);
  color: var(--orange-deep);
  transition: transform .25s ease;
}
.faq__item details[open] .faq__chev { transform: rotate(180deg); }
.faq__a {
  padding: 0 22px 22px;
  color: var(--ink-2);
  font-size: 14.5px; line-height: 1.65; font-weight: 500;
}
.faq--compact .faq__item details summary { grid-template-columns: 1fr auto; }
.faq--compact .faq__cat { display: none; }

/* FAQ filtering (same pattern as partners) */
.faq-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  max-width: max-content;
  margin-left: auto; margin-right: auto;
}
.faq[data-active-filter]:not([data-active-filter="all"]) .faq__item { display: none; }
.faq[data-active-filter="operations"]  .faq__item[data-category="operations"]  { display: block; }
.faq[data-active-filter="commercial"]  .faq__item[data-category="commercial"]  { display: block; }
.faq[data-active-filter="tech"]        .faq__item[data-category="tech"]        { display: block; }
.faq[data-active-filter="compliance"]  .faq__item[data-category="compliance"]  { display: block; }

/* =================================================================
   CAREERS
   ================================================================= */
.benefits {
  display: grid; gap: 12px;
  grid-template-columns: repeat(2, 1fr);
  list-style: none; padding: 0; margin: 0;
}
.benefits__item {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 14.5px; font-weight: 700; color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.benefits__icon {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border-radius: 999px;
  background: rgba(20, 184, 138, 0.14);
  color: var(--green-dark);
  flex: 0 0 30px;
}
.openings {
  list-style: none; padding: 0; margin: 0;
  display: grid; gap: 12px;
}
.opening {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.opening:hover { transform: translateY(-2px); border-color: rgba(255, 122, 69, 0.22); box-shadow: var(--shadow-md); }
.opening__title { font-size: 18px; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 6px; }
.opening__meta { color: var(--muted); font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.opening__sep { opacity: 0.6; margin: 0 4px; }
.opening__type { color: var(--orange-deep); }
.opening__tags { display: flex; flex-wrap: wrap; gap: 6px; }
.opening__tags span {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 122, 69, 0.08);
  color: var(--orange-darker);
  font-size: 11.5px; font-weight: 800;
  letter-spacing: -0.01em;
}

/* =================================================================
   FOOTER NEWSLETTER
   ================================================================= */
.site-footer__newsletter {
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: 36px 22px 24px;
  display: grid;
  gap: 18px 32px;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}
.site-footer__newsletter-text h4 {
  color: #fff; font-size: 18px; font-weight: 900; letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.site-footer__newsletter-text p {
  color: rgba(255, 255, 255, 0.60);
  font-size: 13.5px; line-height: 1.5;
  max-width: 380px;
}
.newsletter-form {
  display: flex; gap: 10px;
  align-items: center;
}
.newsletter-form input[type="email"] {
  flex: 1; min-width: 0;
  height: 46px; padding: 0 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  color: #fff;
  font-family: inherit; font-size: 14px;
  outline: none;
  transition: background .2s ease, border-color .2s ease;
}
.newsletter-form input[type="email"]::placeholder { color: rgba(255, 255, 255, 0.50); }
.newsletter-form input[type="email"]:focus {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.30);
}
.newsletter-form .btn {
  height: 46px;
  padding: 0 22px;
  border-radius: 12px;
  font-size: 14px;
}
.site-footer__newsletter-consent {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.40);
  font-size: 11.5px;
  margin: 0;
}

@media (max-width: 760px) {
  .ai-grid { grid-template-columns: 1fr 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .opening { grid-template-columns: 1fr; }
  .opening .btn { justify-self: start; }
  .site-footer__newsletter { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form .btn { width: 100%; }
}
@media (max-width: 520px) {
  .ai-grid { grid-template-columns: 1fr; }
}

/* =================================================================
   INDUSTRIES (listing + detail)
   ================================================================= */
.industries-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.industry-card {
  position: relative;
  display: grid; gap: 10px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, #fff, #fafbfd);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.industry-card::after {
  content: ""; position: absolute;
  width: 100px; height: 100px;
  right: -34px; top: -34px;
  border-radius: 50%;
  background: rgba(255, 122, 69, 0.10);
  transition: transform .4s ease;
}
.industry-card--green::after { background: rgba(20, 184, 138, 0.10); }
.industry-card:hover {
  transform: translateY(-5px);
  border-color: var(--orange-border);
  box-shadow: var(--shadow-md);
}
.industry-card:hover::after { transform: scale(1.15); }
.industry-card__icon {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 10px 22px rgba(255, 122, 69, 0.30);
}
.industry-card--green .industry-card__icon {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 10px 22px rgba(20, 184, 138, 0.28);
}
.industry-card h3 { position: relative; z-index: 1; font-size: 19px; font-weight: 900; letter-spacing: -0.035em; line-height: 1.1; }
.industry-card p  { position: relative; z-index: 1; color: var(--muted); font-size: 13.5px; line-height: 1.4; font-weight: 500; }
.industry-card__cta {
  position: relative; z-index: 1;
  margin-top: auto;
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange-deep);
  font-size: 13px; font-weight: 800; letter-spacing: -0.015em;
  transition: gap .2s ease;
}
.industry-card:hover .industry-card__cta { gap: 10px; }

/* Pain & solution cards on industry detail */
.pain-grid, .solution-grid {
  display: grid; gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.pain-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.pain-card { transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.pain-card:hover { transform: translateY(-3px); border-color: var(--orange-border); box-shadow: 0 18px 36px rgba(255, 122, 69, 0.10); }
.pain-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  margin-bottom: 12px;
  border-radius: 12px;
  background: var(--orange-tint);
  color: var(--orange-dark);
  font-weight: 900; font-size: 13px;
  box-shadow: inset 0 0 0 1px var(--orange-border);
}
.pain-card h3 { font-size: 17px; font-weight: 850; letter-spacing: -0.025em; margin-bottom: 6px; }
.pain-card p  { color: var(--muted); font-size: 14px; line-height: 1.5; font-weight: 500; }

.solution-card {
  position: relative;
  padding: 22px 22px 22px 56px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.solution-card__icon {
  position: absolute; top: 22px; left: 18px;
  display: grid; place-items: center;
  width: 28px; height: 28px;
  border-radius: 999px;
  background: rgba(20, 184, 138, 0.14);
  color: var(--green-dark);
}
.solution-card--blue .solution-card__icon { background: rgba(255, 122, 69, 0.10); color: var(--orange-deep); }
.solution-card h3 { font-size: 17px; font-weight: 850; letter-spacing: -0.025em; margin-bottom: 6px; }
.solution-card p  { color: var(--muted); font-size: 14px; line-height: 1.5; font-weight: 500; }

/* KPI tiles on industry detail */
.kpi-row {
  display: grid; gap: 14px;
  grid-template-columns: repeat(3, 1fr);
}
.kpi-tile {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.kpi-tile strong {
  display: block;
  font-size: clamp(36px, 4vw, 50px);
  line-height: 1; font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}
.kpi-tile span { color: var(--muted); font-size: 13.5px; font-weight: 700; }
/* The third KPI tile gets the warm accent — rhythm blue→green→orange */
.kpi-tile:nth-child(3) strong {
  background: linear-gradient(115deg, var(--orange), var(--orange-dark));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.kpi-tile:nth-child(3) {
  background: linear-gradient(180deg, #fff, rgba(255, 122, 69, 0.04));
  border-color: var(--orange-border);
}

/* Featured testimonial on industry page */
.testimonial--featured {
  max-width: 760px; margin: 0 auto;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}
.testimonial--featured blockquote {
  font-size: 22px; line-height: 1.45;
  letter-spacing: -0.02em; font-weight: 600;
}

/* =================================================================
   RESOURCES (listing + detail)
   ================================================================= */
.resource-grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.resource-card {
  display: flex; flex-direction: column;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.resource-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 122, 69, 0.20);
  box-shadow: var(--shadow-md);
}
.resource-card__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}
.resource-card__head time { letter-spacing: -0.01em; }
.resource-card__type {
  display: inline-flex; align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.resource-card__type--guide      { background: rgba(255, 122, 69, 0.10);  color: var(--orange-deep); }
.resource-card__type--whitepaper { background: var(--orange-tint);        color: var(--orange-dark); }
.resource-card__type--article    { background: rgba(20, 184, 138, 0.12); color: var(--green-dark); }
.resource-card__type--podcast    { background: rgba(124, 92, 255, 0.12); color: #5b3fc8; }
.resource-card__title {
  font-size: 19px; font-weight: 900;
  letter-spacing: -0.035em; line-height: 1.2;
  margin-bottom: 10px;
}
.resource-card__excerpt {
  color: var(--muted);
  font-size: 14px; line-height: 1.55; font-weight: 500;
  flex: 1;
}
.resource-card__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  font-size: 12.5px;
  color: var(--muted);
  font-weight: 700;
}
.resource-card__more {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--orange-deep);
  font-weight: 800;
}

.resource-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
  margin-bottom: 30px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  max-width: max-content;
  margin-left: auto; margin-right: auto;
}
.resource-grid[data-active-filter]:not([data-active-filter="all"]) .resource-card { display: none; }
.resource-grid[data-active-filter="guide"]      .resource-card[data-type="guide"]      { display: flex; }
.resource-grid[data-active-filter="whitepaper"] .resource-card[data-type="whitepaper"] { display: flex; }
.resource-grid[data-active-filter="article"]    .resource-card[data-type="article"]    { display: flex; }
.resource-grid[data-active-filter="podcast"]    .resource-card[data-type="podcast"]    { display: flex; }

/* Resource detail */
.page-hero__back {
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
}
.page-hero__back a { color: var(--muted); }
.page-hero__back a:hover { color: var(--ink); }
.resource-meta {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  display: inline-flex; align-items: center; gap: 8px;
}
.resource-body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--ink-2);
}
.resource-body p { margin: 0 0 20px; }
.resource-body p strong { color: var(--ink); }
.resource-download { margin-top: 28px; text-align: center; }

/* =================================================================
   HEADER PORTAL LINK
   ================================================================= */
.portal-link {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 122, 69, 0.06);
  color: var(--orange-deep);
  font-size: 13px; font-weight: 800; letter-spacing: -0.015em;
  text-decoration: none;
  transition: background .18s ease;
}
.portal-link:hover { background: rgba(255, 122, 69, 0.12); color: var(--orange-darker); }
@media (max-width: 980px) { .portal-link { display: none; } }

/* =================================================================
   FOOTER STATUS LINK
   ================================================================= */
.site-footer__status {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255, 255, 255, 0.86) !important;
}
.site-footer__status:hover { color: #fff !important; }
.site-footer__status-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #14b88a;
  box-shadow: 0 0 0 3px rgba(20, 184, 138, 0.18);
  flex: 0 0 8px;
}

/* Responsive overrides */
@media (max-width: 1100px) {
  .industries-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .resource-grid   { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .industries-grid, .resource-grid { grid-template-columns: 1fr; }
  .pain-grid, .solution-grid { grid-template-columns: 1fr; }
  .kpi-row { grid-template-columns: 1fr; }
}

/* =================================================================
   BREADCRUMB (visual)
   ================================================================= */
.breadcrumb {
  padding: 18px 22px 0;
  font-size: 13px;
}
.breadcrumb ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  margin: 0; padding: 0; list-style: none;
}
.breadcrumb li {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--muted-2);
  font-weight: 700; letter-spacing: -0.01em;
}
.breadcrumb li + li::before {
  content: "›";
  color: var(--muted-2);
  font-weight: 600;
  opacity: 0.6;
}
.breadcrumb a {
  color: var(--muted);
  border-bottom: none;
}
.breadcrumb a:hover { color: var(--orange-deep); }
.breadcrumb li[aria-current="page"] { color: var(--ink); }

/* =================================================================
   LEGAL PAGE
   ================================================================= */
.page-hero__meta {
  margin-top: 18px;
  font-size: 13px; color: var(--muted-2);
  font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase;
}
.legal-layout {
  display: grid; gap: 48px;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: start;
}
.legal-toc {
  position: sticky; top: 100px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.legal-toc h2 {
  font-size: 12px; font-weight: 900;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}
.legal-toc ol { display: grid; gap: 4px; counter-reset: none; }
.legal-toc a {
  display: flex; gap: 10px; align-items: baseline;
  padding: 8px 10px; border-radius: 10px;
  color: var(--ink-2); font-size: 14px; font-weight: 700; line-height: 1.35;
  transition: var(--transition);
}
.legal-toc a:hover { background: rgba(255, 122, 69, 0.06); color: var(--orange-deep); }
.legal-toc a span { color: var(--muted-2); font-weight: 800; font-size: 12px; }

.legal-content { max-width: 760px; min-width: 0; }
.legal-block {
  padding: 28px 0 36px;
  border-bottom: 1px solid var(--border-soft);
  scroll-margin-top: 100px;
}
.legal-block:last-child { border-bottom: 0; }
.legal-block h2 {
  font-size: clamp(24px, 2.8vw, 32px);
  font-weight: 900; letter-spacing: -0.035em;
  margin-bottom: 12px;
}
.legal-block h3 {
  margin-top: 22px;
  font-size: 16px; font-weight: 850;
  letter-spacing: -0.02em; color: var(--ink-2);
}
.legal-block p {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 15px; line-height: 1.7; font-weight: 500;
}
.legal-block a {
  color: var(--orange-deep);
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 122, 69, 0.25);
}
.legal-block a:hover { color: var(--orange-darker); border-bottom-color: var(--orange-deep); }
.legal-list {
  list-style: none; padding: 0; margin: 14px 0 0;
  display: grid; gap: 10px;
}
.legal-list li {
  position: relative; padding-left: 22px;
  color: var(--ink-2); font-size: 14.5px; line-height: 1.6; font-weight: 500;
}
.legal-list li::before {
  content: ""; position: absolute; left: 4px; top: 10px;
  width: 8px; height: 8px; border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--orange));
}
.legal-list--rich li { padding-left: 24px; }
.legal-list--rich strong { color: var(--ink); font-weight: 900; }
.legal-dl {
  display: grid; gap: 14px;
  grid-template-columns: 220px 1fr;
  margin-top: 18px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, #fafbfd);
}
.legal-dl dt {
  font-size: 12px; font-weight: 900;
  letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--muted);
}
.legal-dl dd {
  margin: 0;
  font-size: 14.5px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.015em;
  word-break: break-word;
}
.legal-table-wrap {
  margin-top: 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: auto;
}
.legal-table {
  width: 100%; min-width: 560px;
  border-collapse: collapse;
  font-size: 13.5px;
}
.legal-table th, .legal-table td {
  text-align: left; padding: 14px 16px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}
.legal-table th {
  background: #fafbfd;
  color: var(--muted);
  font-size: 11px; font-weight: 900;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.legal-table tr:last-child td { border-bottom: 0; }
.legal-table td { color: var(--ink-2); font-weight: 500; line-height: 1.5; }
.legal-table code {
  display: inline-block;
  padding: 3px 8px;
  background: rgba(255, 122, 69, 0.08);
  color: var(--orange-darker);
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 12.5px;
  font-weight: 800;
}

@media (max-width: 980px) {
  .legal-layout { grid-template-columns: 1fr; gap: 24px; }
  .legal-toc { position: relative; top: auto; }
  .legal-dl { grid-template-columns: 1fr; gap: 4px; }
  .legal-dl dt { margin-top: 8px; }
}

/* =================================================================
   PULSE DOT (shared)
   ================================================================= */
.pulse-dot {
  position: relative; display: inline-block;
  width: 9px; height: 9px; border-radius: 999px;
  background: var(--green); flex: 0 0 9px;
}
.pulse-dot::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: rgba(20, 184, 138, 0.42);
  animation: pulseRing 1.8s ease-out infinite;
}
.pulse-dot--white { background: #fff; }
.pulse-dot--white::after { background: rgba(255,255,255,0.45); }
.pulse-dot--lime { background: #58d96a; }
.pulse-dot--lime::after { background: rgba(88, 217, 106, 0.45); }
@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.8; }
  70%  { transform: scale(2.7); opacity: 0;   }
  100% { transform: scale(2.7); opacity: 0;   }
}

/* =================================================================
   TRUST STRIP
   ================================================================= */
.trust-strip { padding: 0 0 40px; margin-top: -32px; position: relative; z-index: 2; }
.trust-strip__inner {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 0 0 22px 22px;
  border-top: none;
  padding: 18px 36px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: center;
  box-shadow: 0 18px 50px rgba(7, 20, 38, 0.06);
}
.trust-strip__item { display: flex; align-items: center; gap: 14px; }
.trust-strip__icon {
  display: grid; place-items: center;
  width: 42px; height: 42px; flex: 0 0 42px;
  border-radius: 14px;
  background: #fff5ed; color: var(--orange-deep);
}
.trust-strip__item:nth-child(2) .trust-strip__icon { background: #eafff8; color: var(--green-dark); }
.trust-strip__item p {
  margin: 0; color: var(--ink); font-size: 15px; font-weight: 800;
  letter-spacing: -0.02em; line-height: 1.3;
}

/* =================================================================
   WHY US ("Pourquoi nous choisir")
   ================================================================= */
.why { padding: 90px 0; overflow: hidden; }
.why__wrap {
  display: grid; gap: 56px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.9fr);
  align-items: center;
}
.why h2 {
  font-size: clamp(32px, 4vw, 50px); line-height: 1.04;
  font-weight: 900; letter-spacing: -0.05em; margin-bottom: 18px;
}
.why .lead {
  color: var(--muted); font-size: 17px; line-height: 1.6;
  max-width: 610px; margin-bottom: 28px;
}
.features {
  display: grid; gap: 4px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 680px;
}
.feature {
  display: grid; grid-template-columns: 40px minmax(0, 1fr);
  gap: 14px; align-items: flex-start;
  padding: 14px;
  border-radius: 14px;
  transition: var(--transition);
}
.feature + .feature { border-top: 1px solid var(--border-soft); }
.feature:hover { background: #f7faff; }
.feature__icon {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border-radius: 999px;
}
.feature__icon--blue { background: #fff1e8; color: var(--orange-deep); box-shadow: inset 0 0 0 1px rgba(255, 122, 69, 0.10); }
.feature__icon--green { background: #eafff8; color: var(--green-dark); box-shadow: inset 0 0 0 1px rgba(20, 184, 138, 0.12); }
.feature h3 { font-size: 16px; font-weight: 850; letter-spacing: -0.025em; }
.feature p { margin-top: 4px; color: var(--muted); font-size: 13.5px; line-height: 1.45; font-weight: 500; }

.why-photo {
  position: relative;
  width: 100%; max-width: 480px;
  margin-left: auto;
  padding: 12px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(7, 20, 38, 0.07);
  box-shadow: var(--shadow-lg);
}
.why-photo::before {
  content: ""; position: absolute;
  inset: 28px -18px -20px 36px; z-index: -1;
  border-radius: 30px;
  background: linear-gradient(135deg, #eafff8, #fff1e8);
  transform: rotate(-4deg);
}
.why-photo__placeholder {
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, #eafff8, #fff1e8);
  aspect-ratio: 280 / 360;
}
.why-photo__frame {
  position: relative;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(135deg, #eafff8, #fff1e8);
  aspect-ratio: 4 / 5;
}
.why-photo__img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transition: transform 0.6s ease;
}
.why-photo:hover .why-photo__img { transform: scale(1.04); }
.why-photo__card {
  position: absolute; left: -22px; top: 60px;
  width: 240px; padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  box-shadow: 0 18px 48px rgba(7, 20, 38, 0.14);
  backdrop-filter: blur(12px);
}
.why-photo__card-top { display: flex; align-items: center; gap: 9px; }
.why-photo__card-top strong { font-size: 17px; font-weight: 900; letter-spacing: -0.04em; }
.why-photo__card-bar { height: 4px; margin-top: 12px; border-radius: 999px; background: #edf1f5; overflow: hidden; }
.why-photo__card-bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-dark), var(--green)); border-radius: inherit; }
.why-photo__card p { margin-top: 10px; color: var(--muted); font-size: 12.5px; line-height: 1.4; font-weight: 600; }

/* =================================================================
   MINI PROCESS
   ================================================================= */
.mini-proc { padding: 70px 0; }
.mini-proc__grid { display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); }
.mini-proc__step {
  position: relative; padding: 22px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, rgba(255,255,255,0.78));
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.mini-proc__step::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 88% 10%, rgba(255, 122, 69, 0.11), transparent 35%);
  opacity: 0; transition: var(--transition);
}
.mini-proc__step:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: rgba(255, 122, 69, 0.22); }
.mini-proc__step:hover::before { opacity: 1; }
.mini-proc__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; position: relative; z-index: 1; }
.mini-proc__icon {
  display: grid; place-items: center;
  width: 46px; height: 46px;
  border-radius: 16px;
  color: #fff;
  box-shadow: 0 12px 26px rgba(7, 20, 38, 0.12);
}
.mini-proc__icon--blue   { background: linear-gradient(135deg, #ff7a45, #ff9966); }
.mini-proc__icon--purple { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); box-shadow: 0 12px 26px rgba(255, 122, 69, 0.32); }
.mini-proc__icon--green  { background: linear-gradient(135deg, #14b88a, #0c9f75); }
.mini-proc__num { color: rgba(7, 20, 38, 0.17); font-size: 31px; line-height: 1; font-weight: 900; letter-spacing: -0.08em; }
.mini-proc__step h3 { font-size: 17px; font-weight: 850; letter-spacing: -0.035em; position: relative; z-index: 1; }
.mini-proc__step p  { margin-top: 8px; color: var(--muted); font-size: 13.6px; line-height: 1.45; font-weight: 500; position: relative; z-index: 1; }

/* =================================================================
   COMPARE TABLE
   ================================================================= */
.compare { padding: 80px 0; }
.compare__card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-lg);
}
.compare__grid {
  display: grid;
  grid-template-columns: 170px 1fr 1fr;
}
.compare__grid--head { padding: 12px; gap: 12px; background: #fff; }
.compare__title {
  min-height: 56px;
  padding: 0 18px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  color: #fff; font-weight: 850; font-size: 16px; letter-spacing: -0.025em;
  text-align: center;
}
.compare__title--dark { background: linear-gradient(135deg, #202838, #111827); }
.compare__title--blue { background: linear-gradient(135deg, var(--orange-deep), var(--green)); flex-direction: column; }
.compare__title--blue small { opacity: 0.82; font-size: 12px; font-weight: 600; }
.compare__row { min-height: 72px; border-top: 1px solid var(--border-soft); }
.compare__label {
  display: flex; align-items: center; padding: 16px 22px;
  background: #fff; color: var(--ink);
  font-size: 14px; font-weight: 850; letter-spacing: -0.02em;
}
.compare__cell {
  display: flex; align-items: center; justify-content: center;
  padding: 16px 22px; background: #fff;
  color: #323844; font-size: 14px; line-height: 1.4; font-weight: 500;
  text-align: center;
}
.compare__cell--highlight {
  color: var(--ink); font-weight: 650;
  background: linear-gradient(90deg, rgba(234, 255, 248, 0.92), rgba(255, 240, 230, 0.88));
}

/* =================================================================
   ANIMATED PROCESS
   ================================================================= */
.proc-anim { padding: 80px 0; overflow: hidden; }
.proc-anim__wrap {
  display: grid; gap: 60px;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
}
.proc-anim__title {
  font-size: clamp(34px, 4.4vw, 60px); line-height: 0.98;
  font-weight: 900; letter-spacing: -0.06em; margin-bottom: 18px;
}
.proc-anim__title strong { display: block; }
.proc-anim__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.info-pill {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 44px; padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 13.5px; font-weight: 800; color: var(--ink);
  letter-spacing: -0.02em;
}
.proc-anim__card-slot { display: flex; justify-content: flex-end; }
.proc-anim__card {
  position: relative;
  width: 100%; max-width: 420px;
  min-height: 590px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}
.proc-anim__card-main { transition: opacity 0.6s ease, transform 0.6s ease; }
.proc-anim__card.is-complete .proc-anim__card-main {
  opacity: 0; transform: translateY(-12px); pointer-events: none;
}
.proc-anim__card-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 24px;
  background: linear-gradient(135deg, #e9fff7, #fff1e8);
}
.proc-anim__card-head strong { font-size: 22px; font-weight: 900; letter-spacing: -0.04em; }
.proc-anim__card-head small { display: block; margin-top: 6px; color: rgba(7, 20, 38, 0.58); font-size: 13px; font-weight: 600; }
.proc-anim__card-icon { color: var(--green-dark); }
.proc-anim__progress-row {
  display: grid; grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center; gap: 12px;
  padding: 10px 24px 14px;
}
.proc-anim__progress {
  height: 7px; border-radius: 999px;
  background: #edf2f7; overflow: hidden;
}
.proc-anim__progress span {
  display: block; width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-dark) 40%, var(--green) 100%);
  border-radius: 999px;
  transition: width 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}
.proc-anim__percent {
  font-size: 13px; font-weight: 900; color: var(--green-dark);
  text-align: right; letter-spacing: -0.02em;
}
.proc-anim__steps { padding: 18px 24px 28px; }
.proc-anim__step {
  position: relative;
  display: grid; grid-template-columns: 38px minmax(0, 1fr); gap: 15px;
  min-height: 78px;
}
.proc-anim__step::after {
  content: ""; position: absolute;
  left: 18px; top: 42px;
  width: 2px; height: calc(100% - 28px);
  background: #e6eaf0; transition: background 520ms ease;
}
.proc-anim__step:last-child::after { display: none; }
.proc-anim__dot {
  position: relative; z-index: 2;
  display: grid; place-items: center;
  width: 38px; height: 38px; border-radius: 999px;
  background: #f1f5f9; border: 1px solid rgba(15, 23, 42, 0.05);
  transition: background 420ms ease, border-color 420ms ease, box-shadow 420ms ease, transform 420ms ease;
}
.proc-anim__dot span { color: #94a3b8; font-size: 13px; font-weight: 800; transition: color 420ms ease; }
.proc-anim__step-body strong { display: block; color: var(--ink); font-size: 15px; line-height: 1.2; font-weight: 850; letter-spacing: -0.025em; transition: color 420ms ease; }
.proc-anim__step-body p { margin-top: 6px; color: var(--muted); font-size: 13px; line-height: 1.4; font-weight: 500; letter-spacing: -0.015em; }
.proc-anim__step.is-current::after { background: linear-gradient(180deg, var(--orange), #e6eaf0); }
.proc-anim__step.is-current .proc-anim__dot {
  background: var(--orange); border-color: var(--orange);
  box-shadow: 0 0 0 7px rgba(255, 122, 69, 0.18), 0 10px 22px rgba(255, 122, 69, 0.30);
  transform: scale(1.02);
}
.proc-anim__step.is-current .proc-anim__dot span { color: #fff; }
.proc-anim__step.is-current .proc-anim__step-body strong { color: var(--orange-dark); }
.proc-anim__step.is-done::after { background: var(--green); }
.proc-anim__step.is-done .proc-anim__dot {
  background: #e9fff7; border-color: rgba(20, 184, 138, 0.12);
}
.proc-anim__step.is-done .proc-anim__dot span,
.proc-anim__step.is-done .proc-anim__step-body strong { color: #07976f; }

.proc-anim__success {
  position: absolute; inset: 0; z-index: 2;
  display: grid; place-items: center;
  padding: 40px 24px;
  background: #fff;
  opacity: 0; transform: translateY(18px) scale(0.985);
  pointer-events: none;
  transition: opacity 0.65s ease, transform 0.65s ease;
  text-align: center;
}
.proc-anim__card.is-complete .proc-anim__success {
  opacity: 1; transform: translateY(0) scale(1); pointer-events: auto;
}
.proc-anim__success-visual {
  position: relative;
  width: 112px; height: 112px; margin: 0 auto 24px;
  display: grid; place-items: center;
}
.proc-anim__success-halo {
  position: absolute; inset: 0; border-radius: 999px;
  background: rgba(20, 184, 138, 0.12);
  animation: successHalo 1.95s ease infinite;
}
.proc-anim__success-icon {
  position: relative;
  width: 82px; height: 82px; border-radius: 999px;
  display: grid; place-items: center;
  background: var(--green); color: #fff;
  box-shadow: 0 14px 30px rgba(20, 184, 138, 0.22), 0 0 0 10px rgba(20, 184, 138, 0.08);
  animation: successPop 0.58s cubic-bezier(0.22, 1.2, 0.36, 1) both;
}
.proc-anim__success h3 { font-size: 23px; font-weight: 900; letter-spacing: -0.035em; margin-bottom: 8px; }
.proc-anim__success p { color: var(--muted); font-size: 15px; line-height: 1.5; font-weight: 550; max-width: 280px; margin: 0 auto; }
@keyframes successPop  { 0% { opacity: 0; transform: scale(0.72); } 70% { opacity: 1; transform: scale(1.06); } 100% { opacity: 1; transform: scale(1); } }
@keyframes successHalo { 0% { opacity: 0.7; transform: scale(0.72); } 70% { opacity: 0; transform: scale(1.12); } 100% { opacity: 0; transform: scale(1.12); } }

/* =================================================================
   DIGITAL SERVICE CARDS (services page)
   ================================================================= */
.digital-grid {
  display: grid; gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.dig-card {
  position: relative;
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.78));
  box-shadow: 0 18px 48px rgba(7, 20, 38, 0.06);
  overflow: hidden;
  backdrop-filter: blur(14px);
  transition: 0.3s ease;
}
.dig-card::before {
  content: ""; position: absolute;
  width: 150px; height: 150px;
  right: -54px; top: -54px;
  border-radius: 999px;
  background: rgba(255, 122, 69, 0.08);
}
.dig-card--green::before { background: rgba(20, 184, 138, 0.08); }
.dig-card::after {
  content: ""; position: absolute;
  inset: auto 22px 16px 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 69, 0.22), transparent);
}
.dig-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 69, 0.18);
  box-shadow: 0 28px 68px rgba(7, 20, 38, 0.10);
}
.dig-card--featured {
  background:
    radial-gradient(circle at top right, rgba(20, 184, 138, 0.16), transparent 36%),
    linear-gradient(135deg, #ffffff, #eef7ff);
}
.dig-card__head {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 22px;
}
.dig-card__icon {
  display: grid; place-items: center;
  width: 48px; height: 48px;
  border-radius: 16px;
  color: var(--orange-deep);
  background: #fff1e8;
  border: 1px solid rgba(255, 122, 69, 0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9);
}
.dig-card--green .dig-card__icon { color: var(--green-dark); background: #eafff8; border-color: rgba(20, 184, 138, 0.14); }
.dig-card__num { color: rgba(7, 20, 38, 0.16); font-size: 34px; font-weight: 900; letter-spacing: -0.08em; line-height: 1; }
.dig-card h3 { position: relative; z-index: 1; font-size: 21px; font-weight: 900; letter-spacing: -0.04em; line-height: 1.12; }
.dig-card p { position: relative; z-index: 1; margin-top: 10px; color: var(--muted); font-size: 14.5px; line-height: 1.55; font-weight: 500; }

.dig-card__metric {
  position: relative; z-index: 1;
  margin-top: 18px; padding: 14px;
  border-radius: 16px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border-soft);
}
.dig-card__metric-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; }
.dig-card__metric-head strong { font-size: 24px; font-weight: 900; letter-spacing: -0.05em; line-height: 1; }
.dig-card__metric-head span { color: var(--muted); font-size: 12px; font-weight: 800; }
.dig-card__bar { height: 7px; border-radius: 999px; background: #edf2f7; overflow: hidden; }
.dig-card__bar span { display: block; height: 100%; background: linear-gradient(90deg, var(--orange), var(--orange-dark), var(--green)); }

.dig-card__tags { position: relative; z-index: 1; margin-top: 18px; display: flex; flex-wrap: wrap; gap: 6px; }
.dig-card__tags span {
  display: inline-flex; align-items: center;
  min-height: 28px; padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 122, 69, 0.10);
  color: var(--orange-darker);
  font-size: 12px; font-weight: 800; letter-spacing: -0.015em;
}
.dig-card__dash { position: relative; z-index: 1; margin-top: 16px; display: grid; gap: 8px; }
.dig-card__dash-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--border-soft);
  color: var(--ink-2);
  font-size: 13px; font-weight: 700;
}
.dig-card__dash-dot { width: 8px; height: 8px; border-radius: 999px; }
.dig-card__dash-dot--blue  { background: var(--orange-deep); }
.dig-card__dash-dot--green { background: var(--green); }
.dig-card__dash-dot--mint  { background: #79e3c1; }
.dig-card__live {
  position: relative; z-index: 1;
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(20, 184, 138, 0.12);
  color: var(--green-dark);
  font-size: 13px; font-weight: 900;
}

/* =================================================================
   SECTORS GRID
   ================================================================= */
.sectors { padding: 80px 0; }
.sectors__grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.sector-card {
  position: relative;
  padding: 22px;
  min-height: 200px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.78));
  box-shadow: 0 14px 38px rgba(7, 20, 38, 0.05);
  overflow: hidden;
  transition: var(--transition);
}
.sector-card::before {
  content: ""; position: absolute;
  width: 130px; height: 130px;
  right: -58px; top: -58px;
  border-radius: 999px;
  background: rgba(255, 122, 69, 0.08);
}
.sector-card:hover { transform: translateY(-4px); border-color: rgba(255, 122, 69, 0.18); box-shadow: var(--shadow-md); }
.sector-card--highlight::before { background: rgba(20, 184, 138, 0.12); }
.sector-card__icon {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 48px; height: 48px;
  margin-bottom: 16px;
  border-radius: 16px;
  background: #fff1e8; color: var(--orange-deep);
  border: 1px solid rgba(255, 122, 69, 0.12);
}
.sector-card:nth-child(even) .sector-card__icon,
.sector-card--highlight .sector-card__icon {
  background: #eafff8; color: var(--green-dark);
  border-color: rgba(20, 184, 138, 0.14);
}
.sector-card h3 { position: relative; z-index: 1; font-size: 17px; font-weight: 900; letter-spacing: -0.035em; line-height: 1.18; }
.sector-card p  { position: relative; z-index: 1; margin-top: 8px; color: var(--muted); font-size: 13.5px; line-height: 1.48; font-weight: 500; }

/* =================================================================
   ABOUT IMAGE CARDS
   ================================================================= */
.about-cards { padding: 70px 0; }
.about-cards__grid { display: grid; gap: 16px; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.about-card {
  position: relative;
  min-height: 380px;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 22px 54px rgba(7, 20, 38, 0.08);
  transition: var(--transition);
}
.about-card:hover { transform: translateY(-5px); box-shadow: 0 32px 76px rgba(7, 20, 38, 0.13); border-color: rgba(255, 122, 69, 0.16); }
.about-card__bg {
  position: absolute; inset: 0; z-index: 1;
}
.about-card__img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  transform: scale(1.02);
  transition: transform 0.8s ease;
  display: block;
}
.about-card:hover .about-card__img { transform: scale(1.06); }
.about-card--mission .about-card__bg {
  background: linear-gradient(135deg, #cfe0ff 0%, #b3d4ff 100%);
}
.about-card--method .about-card__bg {
  background: linear-gradient(135deg, #d4ddef 0%, #aebed6 100%);
}
.about-card--team .about-card__bg {
  background: linear-gradient(135deg, #d4f8e9 0%, #a8e9c8 100%);
}
.about-card--commitments .about-card__bg {
  background: linear-gradient(135deg, #1c2a44 0%, #0a162c 100%);
}
.about-card__overlay { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.about-card--mission .about-card__overlay {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02) 0%, rgba(255,255,255,0.26) 45%, rgba(255,255,255,0.96) 100%),
    radial-gradient(circle at 80% 18%, rgba(255, 122, 69, 0.10), transparent 34%);
}
.about-card--method .about-card__overlay {
  background:
    linear-gradient(180deg, rgba(241,247,255,0.02) 0%, rgba(241,247,255,0.34) 48%, rgba(241,247,255,0.97) 100%),
    radial-gradient(circle at 18% 18%, rgba(255, 122, 69, 0.14), transparent 34%);
}
.about-card--team .about-card__overlay {
  background:
    linear-gradient(180deg, rgba(240,253,249,0.02) 0%, rgba(240,253,249,0.34) 48%, rgba(240,253,249,0.97) 100%),
    radial-gradient(circle at 84% 18%, rgba(20, 184, 138, 0.14), transparent 34%);
}
.about-card--commitments .about-card__overlay {
  background:
    linear-gradient(180deg, rgba(7,20,38,0.00) 0%, rgba(7,20,38,0.10) 48%, rgba(7,20,38,0.65) 100%),
    radial-gradient(circle at 84% 20%, rgba(20, 184, 138, 0.14), transparent 34%);
}
.about-card__content {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  z-index: 3;
}
.about-card__label {
  display: inline-flex; align-items: center;
  padding: 0 12px; min-height: 28px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  color: var(--orange-deep);
  box-shadow: 0 10px 20px rgba(7, 20, 38, 0.06);
  backdrop-filter: blur(12px);
  font-size: 10.5px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
}
.about-card__label--light {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.28);
}
.chat-stack { display: grid; gap: 8px; }
.chat-bubble {
  width: 100%; padding: 12px 14px;
  border-radius: 18px;
  box-shadow: 0 16px 36px rgba(7, 20, 38, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  font-size: 13px; line-height: 1.4; font-weight: 760; letter-spacing: -0.014em;
}
.chat-bubble--white { background: rgba(255, 255, 255, 0.96); border: 1px solid rgba(7, 20, 38, 0.10); color: var(--ink); border-bottom-left-radius: 7px; }
.chat-bubble--blue  { justify-self: end; max-width: 92%; background: var(--orange-deep); border: 1px solid rgba(255, 255, 255, 0.16); color: #fff; border-bottom-right-radius: 7px; }
.chat-bubble--green { justify-self: end; max-width: 92%; background: var(--green); border: 1px solid rgba(255, 255, 255, 0.16); color: #fff; border-bottom-right-radius: 7px; font-weight: 900; }
.chat-status {
  justify-self: end; max-width: 92%;
  display: inline-flex; align-items: center; gap: 9px;
  min-height: 37px; padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--border);
  color: var(--ink);
  box-shadow: 0 14px 30px rgba(7, 20, 38, 0.12);
  font-size: 12.5px; font-weight: 900; letter-spacing: -0.012em;
}
.chat-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.chat-tags span {
  display: inline-flex; align-items: center;
  min-height: 28px; padding: 0 10px;
  border-radius: 999px;
  background: rgba(20, 184, 138, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  box-shadow: 0 12px 24px rgba(7, 20, 38, 0.16);
  font-size: 11px; font-weight: 900; letter-spacing: -0.015em;
}

/* =================================================================
   PARTNERS (rich cards)
   ================================================================= */
.partners {
  padding: 80px 0;
  /* Section break — subtle gradient between testimonials and partners */
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 122, 69, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.6) 0%, transparent 30%);
  border-top: 1px solid var(--border-soft);
}

/* Aggregate rating in header */
.partners-rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 20px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 13.5px;
}
.partners-rating__stars { display: inline-flex; gap: 2px; color: #e2e8f0; }
.partners-rating__stars svg.is-on { color: var(--orange); filter: drop-shadow(0 2px 4px rgba(255, 122, 69, 0.30)); }
.partners-rating strong { font-weight: 900; letter-spacing: -0.02em; color: var(--ink); }
.partners-rating__count { color: var(--muted); font-weight: 600; font-size: 12.5px; }

/* Trust badges row */
.trust-badges {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
  margin: 14px 0 36px;
  padding: 0;
  list-style: none;
}
.trust-badges li {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 13px;
  border-radius: 10px;
  background: rgba(20, 184, 138, 0.08);
  border: 1px solid rgba(20, 184, 138, 0.20);
  color: var(--green-dark);
  font-size: 12.5px; font-weight: 800;
  letter-spacing: -0.01em;
}
.trust-badges__icon { display: inline-flex; color: var(--green); }

/* Filter chips */
.partners-filters {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  max-width: max-content;
  margin-left: auto; margin-right: auto;
}
.filter-chip {
  appearance: none; border: 0; cursor: pointer;
  padding: 8px 14px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-family: inherit;
  font-size: 13px; font-weight: 800; letter-spacing: -0.015em;
  transition: background .18s ease, color .18s ease;
  white-space: nowrap;
}
.filter-chip:hover { color: var(--ink); background: rgba(255, 122, 69, 0.08); }
.filter-chip.is-active {
  background: linear-gradient(115deg, var(--orange), var(--orange-dark));
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 122, 69, 0.36);
}
.filter-chip.is-active:hover { color: #fff; }

/* Proof bar above the grid */
.partners-proof {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 8px 14px;
  margin: -16px 0 40px;
  padding: 0;
  list-style: none;
  font-size: 13px;
}
.partners-proof li {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  color: var(--ink-2);
  box-shadow: var(--shadow-sm);
}
.partners-proof li + li::before {
  content: ""; width: 6px; height: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--orange));
  margin-right: -4px;
}
.partners-proof strong {
  font-weight: 900;
  letter-spacing: -0.015em;
}

/* Grid */
.partners__grid {
  display: grid; gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Filtering: hide cards whose sector doesn't match the active filter */
.partners__grid[data-active-filter]:not([data-active-filter="all"]) .partner-card { display: none; }
.partners__grid[data-active-filter="banking"]   .partner-card[data-sector="banking"]   { display: grid; }
.partners__grid[data-active-filter="energy"]    .partner-card[data-sector="energy"]    { display: grid; }
.partners__grid[data-active-filter="health"]    .partner-card[data-sector="health"]    { display: grid; }
.partners__grid[data-active-filter="retail"]    .partner-card[data-sector="retail"]    { display: grid; }
.partners__grid[data-active-filter="mobility"]  .partner-card[data-sector="mobility"]  { display: grid; }
.partners__grid[data-active-filter="telecom"]   .partner-card[data-sector="telecom"]   { display: grid; }
.partners__grid[data-active-filter="public"]    .partner-card[data-sector="public"]    { display: grid; }
.partners__grid[data-active-filter="insurance"] .partner-card[data-sector="insurance"] { display: grid; }

/* Card — entire card is a clickable <a> */
.partner-card {
  position: relative;
  display: grid; gap: 14px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #fafbfd);
  box-shadow: 0 14px 36px rgba(7, 20, 38, 0.05), inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  /* Skip painting off-screen cards (Chrome / Edge / Opera) */
  content-visibility: auto;
  contain-intrinsic-size: 240px;
  /* Staggered reveal animation */
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .55s ease, transform .55s ease,
              border-color .25s ease, box-shadow .25s ease;
}
.partner-card.is-revealed {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--reveal-delay, 0ms));
}
.partner-card::before {
  content: ""; position: absolute;
  width: 110px; height: 110px;
  right: -42px; top: -42px;
  border-radius: 999px;
  background: rgba(255, 122, 69, 0.07);
  transition: transform 0.4s ease;
  pointer-events: none;
}
.partner-card--green::before { background: rgba(20, 184, 138, 0.09); }
.partner-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 122, 69, 0.22);
  box-shadow: 0 26px 60px rgba(7, 20, 38, 0.10);
  /* will-change is set only on hover to avoid permanent GPU layers */
  will-change: transform;
}
.partner-card:focus-visible {
  outline-offset: 4px;
}
.partner-card:hover::before { transform: scale(1.15) translate(-6px, 6px); }

/* Featured: gradient border + badge */
.partner-card--featured {
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(135deg, var(--green), var(--orange)) border-box;
  border: 1.5px solid transparent;
  box-shadow: 0 18px 44px rgba(255, 122, 69, 0.18);
}
.partner-card__badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 11px;
  border-radius: 999px;
  background: linear-gradient(115deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: 10px; font-weight: 900;
  letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(255, 122, 69, 0.35);
}
.partner-card__badge::before {
  content: "★";
  font-size: 11px;
  line-height: 1;
}

/* Top row: monogram + since */
.partner-card__top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  position: relative; z-index: 1;
}
.partner-card__mark {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #fff;
  font-size: 14px; font-weight: 900;
  letter-spacing: -0.02em;
  box-shadow: 0 10px 22px rgba(255, 122, 69, 0.30);
}
.partner-card--green .partner-card__mark {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  box-shadow: 0 10px 22px rgba(20, 184, 138, 0.28);
}
.partner-card__since {
  color: var(--muted-2);
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.03em; text-transform: uppercase;
}

/* Name + sector */
.partner-card__name {
  position: relative; z-index: 1;
  font-size: 19px; font-weight: 900;
  letter-spacing: -0.035em; line-height: 1.1;
}
.partner-card__sector {
  position: relative; z-index: 1;
  margin-top: -4px;
  color: var(--muted);
  font-size: 13px; line-height: 1.4; font-weight: 600;
  letter-spacing: -0.015em;
  /* Truncate long sector labels with ellipsis + native title tooltip */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Stat — dense bottom proof */
.partner-card__stat {
  position: relative; z-index: 1;
  margin-top: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--border-soft);
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 10px;
}
.partner-card__stat strong {
  font-size: 22px; font-weight: 900;
  letter-spacing: -0.05em; line-height: 1;
  background: linear-gradient(115deg, var(--orange), var(--orange-dark), var(--green));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.partner-card__stat span {
  color: var(--muted);
  font-size: 11.5px; font-weight: 700;
  letter-spacing: -0.01em;
  text-align: right;
  line-height: 1.3;
}

/* Hover-revealed row: animated grid-template-rows expansion */
.partner-card__reveal {
  position: relative; z-index: 1;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(.4, 0, .2, 1);
}
.partner-card__reveal-inner {
  overflow: hidden;
  min-height: 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.partner-card__extra {
  font-size: 11.5px;
  color: var(--muted);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.partner-card__extra em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted-2);
}
.partner-card__case {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 11px;
  border-radius: 999px;
  background: linear-gradient(115deg, var(--orange-deep), var(--green));
  color: #fff;
  font-size: 11.5px; font-weight: 900; letter-spacing: -0.01em;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(255, 122, 69, 0.30);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease 0.05s, transform 0.25s ease 0.05s;
}
/* Reveal on hover/focus (≥ tablet only — mobile already shows the metric) */
@media (hover: hover) and (min-width: 761px) {
  .partner-card:hover .partner-card__reveal,
  .partner-card:focus-visible .partner-card__reveal {
    grid-template-rows: 1fr;
    padding-top: 10px;
    margin-top: -4px;
    border-top: 1px solid var(--border-soft);
  }
  .partner-card:hover .partner-card__case,
  .partner-card:focus-visible .partner-card__case {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Subtle geometric patterns by sector (in the corner blob area) */
.partner-card__pattern {
  position: absolute;
  width: 110px; height: 110px;
  right: -42px; top: -42px;
  z-index: 0;
  opacity: 0.20;
  pointer-events: none;
}
.partner-card__pattern--banking {
  background-image:
    linear-gradient(90deg, transparent 50%, rgba(255, 122, 69, 0.55) 50%, rgba(255, 122, 69, 0.55) 52%, transparent 52%),
    linear-gradient(0deg,  transparent 50%, rgba(255, 122, 69, 0.55) 50%, rgba(255, 122, 69, 0.55) 52%, transparent 52%);
  background-size: 12px 12px;
  border-radius: 50%;
}
.partner-card__pattern--health {
  background:
    radial-gradient(circle at 50% 50%, transparent 38%, rgba(255, 122, 69, 0.45) 38% 44%, transparent 44%),
    radial-gradient(circle at 50% 50%, transparent 22%, rgba(255, 122, 69, 0.45) 22% 28%, transparent 28%);
  border-radius: 50%;
}
.partner-card__pattern--mobility {
  background-image: linear-gradient(45deg, rgba(20, 184, 138, 0.45) 25%, transparent 25%, transparent 50%, rgba(20, 184, 138, 0.45) 50%, rgba(20, 184, 138, 0.45) 75%, transparent 75%);
  background-size: 10px 10px;
  border-radius: 50%;
}
.partner-card__pattern--telecom {
  background:
    radial-gradient(circle at center, transparent 30%, rgba(255, 122, 69, 0.40) 30% 34%, transparent 34% 50%, rgba(255, 122, 69, 0.30) 50% 53%, transparent 53%);
  border-radius: 50%;
}
.partner-card__pattern--energy {
  background-image: linear-gradient(135deg, rgba(20, 184, 138, 0.45) 0 4px, transparent 4px 14px);
  background-size: 14px 14px;
  border-radius: 50%;
}
.partner-card__pattern--retail {
  background-image:
    linear-gradient(90deg, rgba(20, 184, 138, 0.40) 0 3px, transparent 3px 10px),
    linear-gradient(0deg,  rgba(20, 184, 138, 0.40) 0 3px, transparent 3px 10px);
  background-size: 10px 10px;
  border-radius: 50%;
}
.partner-card__pattern--public {
  background:
    conic-gradient(rgba(255, 122, 69, 0.45) 0 25%, transparent 0 50%, rgba(255, 122, 69, 0.45) 0 75%, transparent 0 100%);
  border-radius: 50%;
}
.partner-card__pattern--insurance {
  background:
    radial-gradient(circle at 50% 35%, rgba(20, 184, 138, 0.45) 0 4px, transparent 4px),
    radial-gradient(circle at 30% 65%, rgba(20, 184, 138, 0.45) 0 4px, transparent 4px),
    radial-gradient(circle at 70% 65%, rgba(20, 184, 138, 0.45) 0 4px, transparent 4px);
  border-radius: 50%;
}
/* Hide the generic blob (::before) when a pattern is present */
.partner-card:has(.partner-card__pattern)::before { opacity: 0; }

/* Segmented CTA row at the bottom of the section */
.partners__cta-row {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 12px;
  margin-top: 40px;
}

/* -----------------------------------------------------------------
   Mobile (<= 760px): horizontal carousel with scroll-snap
   ----------------------------------------------------------------- */
@media (max-width: 760px) {
  .partners-rating, .trust-badges, .partners-filters { margin-left: auto; margin-right: auto; }
  .partners-filters { overflow-x: auto; max-width: 100%; flex-wrap: nowrap; justify-content: flex-start; padding-right: 14px; -webkit-overflow-scrolling: touch; }
  .partners-filters::-webkit-scrollbar { display: none; }
  .partners-filters { scrollbar-width: none; }

  .partners__grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 16px;
    padding: 4px 14px 14px;
    margin: 0 -14px; /* let cards reach the edges of the container */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .partners__grid::-webkit-scrollbar { display: none; }
  .partner-card {
    flex: 0 0 82%;
    scroll-snap-align: start;
    /* On mobile, give the stat number more presence */
  }
  .partner-card__stat strong { font-size: 28px; }
  .partner-card__stat span { font-size: 12.5px; }

  /* On mobile, the reveal row should always show (touch — no hover) */
  .partner-card__reveal { grid-template-rows: 1fr; padding-top: 10px; margin-top: -4px; border-top: 1px solid var(--border-soft); }
  .partner-card__case { opacity: 1; transform: none; }

  .partners__cta-row { flex-direction: column; }
  .partners__cta-row .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .partner-card { opacity: 1 !important; transform: none !important; }
  .partner-card__reveal { transition: none !important; }
}

/* =================================================================
   CONSULT (green gradient block)
   ================================================================= */
.consult {
  padding: 0;
  margin: 56px 0;
}
.consult__wrap {
  display: grid; gap: 56px;
  grid-template-columns: 420px minmax(0, 1fr);
  align-items: center;
  padding: 56px;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 40%),
    linear-gradient(135deg, #14b88a 0%, #0c9f75 60%, #08745a 100%);
  box-shadow: 0 30px 80px rgba(20, 184, 138, 0.24);
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.consult__visual {
  position: relative;
  width: 100%; max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.20), transparent 50%),
    rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.30);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.consult__status {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #08745a;
  font-size: 11px; line-height: 1; font-weight: 800;
  letter-spacing: -0.01em;
  backdrop-filter: blur(10px);
}
.consult__art { position: absolute; inset: 0; padding: 24px; }
.consult__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
}
.consult__content { color: #fff; max-width: 540px; }
.consult__pill {
  display: inline-flex; align-items: center;
  min-height: 28px; padding: 0 12px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.30);
  color: #fff;
  font-size: 11px; line-height: 1; font-weight: 800;
  letter-spacing: 0.05em; text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.consult__content h2 {
  color: #fff;
  font-size: clamp(34px, 4.2vw, 50px); line-height: 1.03;
  font-weight: 800; letter-spacing: -0.06em;
}
.consult__content > p {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 17px; line-height: 1.6; font-weight: 400;
  letter-spacing: -0.015em;
}
.consult__list {
  display: grid; gap: 10px;
  margin-top: 22px;
}
.consult__list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14.5px; line-height: 1.4; font-weight: 600;
  letter-spacing: -0.015em;
}
.consult__list li::before {
  content: ""; position: absolute;
  left: 2px; top: 8px;
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
}
.consult__link {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 26px;
  color: #fff;
  font-size: 14.5px; font-weight: 800; letter-spacing: -0.015em;
  text-decoration: none;
  border-bottom: none;
  transition: gap 0.2s ease, opacity 0.2s ease;
}
.consult__link:hover { gap: 14px; color: #fff; opacity: 0.9; }
.consult__link svg { transition: transform 0.2s ease; }
.consult__link:hover svg { transform: translateX(4px); }

/* =================================================================
   BLUE CTA (final)
   ================================================================= */
.blue-cta { padding: 80px 0; }
.blue-cta__wrap {
  position: relative;
  display: grid; gap: 36px;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  padding: 44px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #2dadff 0%, #2dadff 52%, #1697ef 100%);
  box-shadow: 0 30px 80px rgba(45, 173, 255, 0.26), inset 0 1px 0 rgba(255,255,255,0.25);
  overflow: hidden;
  isolation: isolate;
}
.blue-cta__glow { position: absolute; border-radius: 999px; filter: blur(20px); pointer-events: none; z-index: 0; }
.blue-cta__glow--a { width: 280px; height: 280px; right: -60px; top: -80px; background: rgba(255,255,255,0.18); animation: ctaFloat1 7.2s ease-in-out infinite; }
.blue-cta__glow--b { width: 180px; height: 180px; left: -40px;  bottom: -50px; background: rgba(255,255,255,0.12); animation: ctaFloat2 8.6s ease-in-out infinite; }
.blue-cta__grid-bg {
  position: absolute; inset: 0; z-index: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.18) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.7), transparent 95%);
}
.blue-cta__content, .blue-cta__panel { position: relative; z-index: 1; }
.blue-cta__badge {
  display: inline-flex; align-items: center; gap: 10px;
  min-height: 32px; padding: 0 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: -0.01em;
  backdrop-filter: blur(10px);
}
.blue-cta__content h2 {
  color: #fff; max-width: 600px;
  font-size: clamp(34px, 4.6vw, 56px); line-height: 1; font-weight: 800;
  letter-spacing: -0.06em;
}
.blue-cta__content > p {
  max-width: 580px; margin-top: 14px;
  color: rgba(255,255,255,0.92);
  font-size: 16px; line-height: 1.6; font-weight: 400; letter-spacing: -0.015em;
}
.blue-cta__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.blue-cta__chip {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 36px; padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 13px; font-weight: 600;
  animation: chipFloat 6s ease-in-out infinite;
}
.blue-cta__chip:nth-child(2) { animation-delay: 0.8s; }
.blue-cta__chip:nth-child(3) { animation-delay: 1.6s; }
.blue-cta__panel {
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 24px 54px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
}
.blue-cta__panel-text { color: #4b5563; font-size: 13px; font-weight: 650; letter-spacing: -0.01em; margin-bottom: 12px; }
.blue-cta__actions { display: grid; gap: 10px; }
.blue-cta__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  height: 50px; padding: 0 18px;
  border-radius: 14px;
  font-size: 14px; font-weight: 800; letter-spacing: -0.02em;
  transition: var(--transition);
  text-decoration: none;
}
.blue-cta__btn--primary { color: var(--ink); background: #fff; box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12); }
.blue-cta__btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 42px rgba(15, 23, 42, 0.16); color: var(--ink); }
.blue-cta__btn--soft { color: var(--ink); background: #eaf7ff; border: 1px solid rgba(45, 173, 255, 0.12); }
.blue-cta__btn--soft:hover { transform: translateY(-2px); background: #dff2ff; }
.blue-cta__btn--dark { color: #fff; background: var(--ink); }
.blue-cta__btn--dark:hover { transform: translateY(-2px); background: #000; color: #fff; }

@keyframes ctaFloat1 { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(-10px, 10px, 0); } }
@keyframes ctaFloat2 { 0%,100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(12px, -8px, 0); } }
@keyframes chipFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-3px); } }

/* =================================================================
   RESPONSIVE OVERRIDES FOR NEW SECTIONS
   ================================================================= */
@media (max-width: 1100px) {
  .digital-grid, .sectors__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .about-cards__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partners__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .trust-strip__inner { grid-template-columns: 1fr; gap: 12px; padding: 16px 22px; border-radius: 0 0 18px 18px; }
  .why__wrap, .proc-anim__wrap { grid-template-columns: 1fr; gap: 40px; }
  .mini-proc__grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; }
  .blue-cta__wrap { grid-template-columns: 1fr; padding: 32px; }
  .blue-cta__panel { max-width: 560px; }
  .why-photo { margin: 0; }
  .why-photo__card { left: 20px; top: 30px; }
  .proc-anim__card-slot { justify-content: flex-start; }
  .partners__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .consult__wrap { grid-template-columns: 1fr; padding: 36px; gap: 32px; }
  .consult__visual { max-width: 460px; }
}
@media (max-width: 760px) {
  .digital-grid, .sectors__grid, .about-cards__grid, .partners__grid { grid-template-columns: 1fr; }
  .consult__wrap { padding: 28px; border-radius: 24px; }

  /* Compare → vertical cards on mobile */
  .compare__card { background: transparent; border: none; box-shadow: none; display: grid; gap: 12px; overflow: visible; }
  .compare__grid--head { display: none; }
  .compare__row {
    display: grid; grid-template-columns: 1fr; min-height: auto;
    border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
    background: #fff; box-shadow: var(--shadow-sm);
  }
  .compare__label { background: #f7f9fc; padding: 14px 16px; border-bottom: 1px solid var(--border-soft); }
  .compare__cell { justify-content: flex-start; text-align: left; padding: 14px 16px; }
  .compare__cell::before {
    display: block; min-width: 120px;
    margin-right: 12px; color: #8a93a0;
    font-size: 11px; font-weight: 900; letter-spacing: 0.06em; text-transform: uppercase;
  }
  .compare__cell[data-col="internal"]::before { content: attr(data-col); }
  .compare__cell[data-col="external"]::before { content: attr(data-col); color: var(--orange-deep); }
  .compare__cell--highlight { background: #f0f7ff; }
}
@media (max-width: 560px) {
  .trust-strip__inner { padding: 14px 16px; }
  .features { padding: 6px; }
  .feature { padding: 12px; grid-template-columns: 34px minmax(0, 1fr); }
  .feature__icon { width: 34px; height: 34px; }
  .blue-cta__chip { width: 100%; }
}

/* =================================================================
   STICKY CTA BAR (mobile only)
   ================================================================= */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  display: none; /* shown via JS once user scrolls past hero */
  align-items: center;
  gap: 10px;
  padding: 10px 12px 10px 16px;
  border-radius: 18px;
  background: rgba(7, 20, 38, 0.94);
  color: #fff;
  box-shadow: 0 18px 48px rgba(7, 20, 38, 0.28);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13.5px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(.4,.0,.2,1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__label {
  flex: 1; min-width: 0;
  font-weight: 700;
  color: rgba(255,255,255,0.86);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta__btn {
  display: inline-flex; align-items: center; gap: 6px;
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 12px;
  background: linear-gradient(115deg, var(--orange-deep) 0%, var(--orange) 60%, var(--green) 100%);
  color: #fff;
  font-size: 13px; font-weight: 900; letter-spacing: -0.015em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(255, 122, 69, 0.30);
  transition: transform .18s ease;
}
.sticky-cta__btn:hover { transform: translateY(-1px); color: #fff; }
.sticky-cta__close {
  display: grid; place-items: center;
  width: 30px; height: 30px;
  border: 0; cursor: pointer;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.65);
  border-radius: 10px;
  transition: background .18s ease, color .18s ease;
}
.sticky-cta__close:hover { background: rgba(255,255,255,0.12); color: #fff; }

@media (max-width: 760px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 72px; } /* avoid the bar covering the footer's last row */
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
