/* ================================================================
   VALON DESIGN SYSTEM
   design-system.css — tokens + reset + components
   Light mode — warm white / beige backgrounds
   ================================================================ */

/* Google Fonts loaded via <link> in each page <head> — removed @import to avoid chained request delay */

/* ----------------------------------------------------------------
   TOKENS
   ---------------------------------------------------------------- */

:root {

  /* Background layers — warm white / beige */
  --bg-base:    #F8F7F4;
  --bg-raised:  #FFFFFF;
  --bg-surface: #EFEDE8;
  --bg-hover:   #E7E5DF;

  /* Borders */
  --border:        rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.15);

  /* Text */
  --text-primary: #141210;
  --text-muted:   rgba(20, 18, 16, 0.55);
  --text-dim:     rgba(20, 18, 16, 0.32);

  /* Accent — Valon orange, extracted from brand SVG */
  --accent:       #F15A22;
  --accent-hover: #D94E1C;
  --accent-light: #E04A14;
  --accent-dim:   rgba(241, 90, 34, 0.10);
  --accent-halo:  rgba(241, 90, 34, 0.05);

  /* Grid lines (quadrillage) */
  --grid-line: rgba(0, 0, 0, 0.055);
  --grid-size: 60px;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, sans-serif;

  /* Type scale */
  --text-2xs:  0.6875rem;   /* 11px */
  --text-xs:   0.75rem;     /* 12px */
  --text-sm:   0.8125rem;   /* 13px */
  --text-md:   0.9375rem;   /* 15px */
  --text-base: 1rem;        /* 16px */
  --text-lg:   1.125rem;    /* 18px */
  --text-xl:   1.25rem;     /* 20px */
  --text-2xl:  1.5rem;      /* 24px */
  --text-3xl:  1.875rem;    /* 30px */
  --text-4xl:  2.25rem;     /* 36px */
  --text-5xl:  3rem;        /* 48px */
  --text-6xl:  3.75rem;     /* 60px */

  /* Leading */
  --leading-tight:  1.1;
  --leading-snug:   1.25;
  --leading-normal: 1.65;

  /* Tracking */
  --tracking-tight:   -0.035em;
  --tracking-snug:    -0.02em;
  --tracking-normal:  -0.01em;
  --tracking-wide:    0.08em;
  --tracking-widest:  0.14em;

  /* Spacing — 4px base */
  --s-1:  0.25rem;    /*  4px */
  --s-2:  0.5rem;     /*  8px */
  --s-3:  0.75rem;    /* 12px */
  --s-4:  1rem;       /* 16px */
  --s-5:  1.25rem;    /* 20px */
  --s-6:  1.5rem;     /* 24px */
  --s-7:  1.75rem;    /* 28px */
  --s-8:  2rem;       /* 32px */
  --s-10: 2.5rem;     /* 40px */
  --s-12: 3rem;       /* 48px */
  --s-14: 3.5rem;     /* 56px */
  --s-16: 4rem;       /* 64px */
  --s-20: 5rem;       /* 80px */
  --s-24: 6rem;       /* 96px */
  --s-32: 8rem;       /* 128px */

  /* Border radius */
  --r-xs:   4px;
  --r-sm:   6px;
  --r-md:   8px;
  --r-lg:   8px;
  --r-xl:   8px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08), 0 0 0 1px var(--border);
  --shadow-lg: 0 4px 24px rgba(0, 0, 0, 0.10), 0 0 0 1px var(--border);

  /* Halo / glow — accent orange */
  --halo-xs: 0 0 20px rgba(241, 90, 34, 0.18);
  --halo-sm: 0 0 40px rgba(241, 90, 34, 0.18), 0 0 80px rgba(241, 90, 34, 0.07);
  --halo-md: 0 0 60px rgba(241, 90, 34, 0.22), 0 0 140px rgba(241, 90, 34, 0.08);
  --halo-lg: 0 0 80px rgba(241, 90, 34, 0.28), 0 0 200px rgba(241, 90, 34, 0.10);

  /* Transitions */
  --ease-fast: 120ms cubic-bezier(0.2, 0, 0, 1);
  --ease-base: 220ms cubic-bezier(0.2, 0, 0, 1);
  --ease-slow: 380ms cubic-bezier(0.2, 0, 0, 1);

  /* Layout */
  --max-w: 1080px;
  --px: clamp(var(--s-4), 4vw, var(--s-8));
}

/* ----------------------------------------------------------------
   RESET
   ---------------------------------------------------------------- */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--text-primary);
  color: var(--bg-base);
  padding: 8px 16px;
  z-index: 999;
  font-size: var(--text-sm);
  font-weight: 600;
  text-decoration: none;
  border-radius: 0 0 4px 0;
  transition: top 0.1s;
}
.skip-link:focus {
  top: 0;
}

body {
  font-family: var(--font);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-primary);
  background: var(--bg-base);
  letter-spacing: var(--tracking-normal);
}

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

a { color: inherit; text-decoration: none; }

button { cursor: pointer; border: none; background: none; font: inherit; }

ul, ol { list-style: none; }

/* ----------------------------------------------------------------
   TYPOGRAPHY CLASSES
   ---------------------------------------------------------------- */

.text-sm { font-size: var(--text-sm); color: var(--text-muted); }

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

/* ----------------------------------------------------------------
   LAYOUT UTILITIES
   ---------------------------------------------------------------- */

/* Default section vertical rhythm — overridden by media queries below */
/* section base rule defined at line ~965; do not duplicate here */

/* The quadrillage — CSS grid background pattern */

.divider {
  height: 1px;
  background: var(--border);
}

/* ----------------------------------------------------------------
   COMPONENT — BUTTONS
   ---------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-3) var(--s-6);
  font-size: var(--text-sm);
  font-weight: 500;
  border-radius: var(--r-full);
  transition: all var(--ease-base);
  white-space: nowrap;
  letter-spacing: -0.01em;
  line-height: 1;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: var(--halo-xs);
}

.btn-secondary {
  background: var(--bg-raised);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}

.btn-secondary:hover {
  background: var(--bg-surface);
  border-color: rgba(0, 0, 0, 0.22);
}

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

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-surface);
}

.btn-sm {
  padding: var(--s-2) var(--s-4);
  font-size: var(--text-xs);
}

.btn-lg {
  padding: 14px var(--s-8);
  font-size: var(--text-base);
}

/* ----------------------------------------------------------------
   COMPONENT — CARDS / BENTO
   ---------------------------------------------------------------- */

.card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  transition: border-color var(--ease-base), box-shadow var(--ease-base);
}

.card:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.card-bento {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.card-stat {
  padding: var(--s-6) var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ----------------------------------------------------------------
   COMPONENT — SERVICE ICON
   ---------------------------------------------------------------- */

/* ----------------------------------------------------------------
   COMPONENT — TAGS & BADGES
   ---------------------------------------------------------------- */

.tag {
  display: inline-flex;
  align-items: center;
  padding: 3px var(--s-3);
  font-size: var(--text-xs);
  font-weight: 500;
  border-radius: var(--r-full);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
}

.tag-accent {
  background: var(--accent-dim);
  border-color: rgba(241, 90, 34, 0.22);
  color: var(--accent);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-1);
  padding: 3px var(--s-2);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--r-sm);
  background: var(--bg-hover);
  border: 1px solid var(--border);
  color: var(--text-dim);
}

/* ----------------------------------------------------------------
   COMPONENT — INPUTS
   ---------------------------------------------------------------- */

textarea.input {
  resize: vertical;
  min-height: 100px;
  line-height: var(--leading-normal);
}

/* ----------------------------------------------------------------
   COMPONENT — STEPS / PROCESS
   ---------------------------------------------------------------- */

.steps {
  display: flex;
  position: relative;
}

.step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-6);
  position: relative;
}

.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: var(--s-4);
  bottom: var(--s-4);
  right: 0;
  width: 1px;
  background: var(--border);
}

.step-title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.step-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.65;
}

.step-duration {
  font-size: var(--text-2xs);
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   COMPONENT — QUOTE / TESTIMONIAL
   ---------------------------------------------------------------- */

.quote {
  padding: var(--s-8);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-6);
}

/* ----------------------------------------------------------------
   DESIGN SYSTEM PAGE — SHOWCASE LAYOUT
   ---------------------------------------------------------------- */

/* Top bar */

/* Body — sidebar + content */

/* Sidebar */

/* Main content */

/* Section */

/* Row of items */

/* Label */

/* Color swatches */

/* Type scale */

/* Grid demo */

/* Halo demos */

/* Spacing bars */

/* Bento grid */

/* Hero preview */

/* ================================================================
   SHARED LAYOUT — PAGE BASE + SECTIONS + NAV + FOOTER + ANIMATIONS
   ================================================================ */

/* ── Page Base ─────────────────────────────────────────────────── */

section {
  padding-block: var(--s-24);
}

.section-inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
}

.section-eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

.section-title {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  margin-bottom: var(--s-5);
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  max-width: 540px;
  margin-bottom: var(--s-10);
}

/* ── Navigation ─────────────────────────────────────────────────── */

.nav-inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.nav-icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  overflow: visible;
}

#nav-icon-p1, #nav-icon-p2, #nav-icon-circle {
  transform-box: fill-box;
  transform-origin: center;
}

.nav-logo-text {
  height: 15px;
  width: auto;
}

.nav-sf-badge {
  height: 22px;
  width: auto;
  opacity: 0.75;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-8);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.nav-cta { display: flex; align-items: center; }

.nav-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s-1);
  color: var(--text-primary);
  line-height: 0;
}

/* ── Mobile Drawer ───────────────────────────────────────────────── */

.nav-drawer.open {
  display: block;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 78%;
  max-width: 340px;
  background: var(--bg-raised);
  display: flex;
  flex-direction: column;
  padding: var(--s-6);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-drawer.open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--s-5);
  border-bottom: 1px solid var(--border);
}

.nav-drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--s-1);
  color: var(--text-primary);
  line-height: 0;
}

.nav-drawer-links {
  list-style: none;
  padding: 0;
  margin: var(--s-3) 0 0;
  flex: 1;
}

.nav-drawer-links a {
  display: block;
  padding: var(--s-3) 0;
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--text-primary);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav-drawer-links a:hover {
  color: var(--accent);
}

.nav-drawer-cta {
  padding-top: var(--s-5);
}

.nav-drawer-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ── Footer ─────────────────────────────────────────────────────── */

.footer-inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: 35fr 21.667fr 21.667fr 21.667fr;
  gap: var(--s-12);
}

.footer-brand { display: flex; flex-direction: column; gap: var(--s-4); }

.footer-brand-name {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 700;
  font-size: var(--text-base);
  letter-spacing: var(--tracking-snug);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

.footer-col { display: flex; flex-direction: column; gap: var(--s-4); }

.footer-col-label {
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}

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

.footer-links a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
  padding-top: var(--s-6);
  margin-top: var(--s-10);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--text-dim);
}

.footer-address {
  font-size: var(--text-xs);
  color: var(--text-dim);
  text-align: right;
}

.footer-legal {
  display: flex;
  gap: var(--s-5);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-legal a {
  font-size: var(--text-xs);
  color: var(--text-dim);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: var(--s-4);
    align-items: flex-start;
  }
  .footer-legal {
    justify-content: flex-start;
  }
}

/* ── Legal pages ────────────────────────────────────────────────── */

.legal-wrap {
  grid-template-columns: 1fr;
  max-width: 740px;
  padding-bottom: var(--s-20);
}

.legal-wrap .art-header {
  padding-block: var(--s-14) var(--s-8);
}

.legal-wrap .art-title {
  font-size: clamp(var(--text-2xl), 4vw, 40px);
}

/* ── Scroll Animations ───────────────────────────────────────────── */

.anim-scale {
  opacity: 0;
  transform: scale(0.96);
}

/* ── Mobile Nav + Footer (responsive) ───────────────────────────── */

/* ================================================================

   Shared page components (hero, CTA, sliders, etc.)

================================================================ */

.appexchange-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: var(--s-2) var(--s-4);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}
.appexchange-badge:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 2px 12px rgba(241,90,34,0.15);
}

.article-card {
  flex: 0 0 300px;
  width: 300px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.article-card-body {
  padding: var(--s-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-card-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  flex: 1;
  margin-bottom: var(--s-5);
}

.article-card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--s-1);
}

.article-card-link:hover {
  opacity: 0.8;
}

.article-card-tag {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
}

.article-card-thumb {
  height: 180px;
  background: var(--bg-base);
  position: relative;
  overflow: hidden;
}

.article-card-thumb-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  background: linear-gradient(135deg, rgba(241,90,34,0.06) 0%, rgba(241,90,34,0.02) 100%);
}

.article-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a.article-card {
  text-decoration: none;
  color: inherit;
}

.article-card-title {
  font-size: var(--text-base);
  font-weight: 600;
  line-height: var(--leading-snug);
  margin-bottom: var(--s-3);
  color: var(--text-primary);
}

.article-card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  border-color: rgba(241, 90, 34, 0.45);
}

.articles-controls {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  justify-content: flex-end;
  gap: var(--s-3);
  margin-top: var(--s-8);
}

.articles-header {
  margin-bottom: var(--s-12);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-6);
}

.articles-inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
}

.articles-slider-outer {
  overflow-x: clip;
  overflow-y: visible;
  padding-left: var(--px);
  padding-block: 20px;
  margin-block: -20px;
  margin-left: calc(50% - 540px);
  margin-right: 0;
}

.articles-track {
  display: flex;
  gap: var(--s-6);
  will-change: transform;
}

.benefit-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-8);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.benefit-card:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  border-color: rgba(241, 90, 34, 0.45);
}

.benefit-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

.benefit-icon {
  width: 36px;
  height: 36px;
  background: rgba(241, 90, 34, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
  color: var(--accent);
}

.benefit-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--s-2);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-4);
}

.benefits-grid .benefit-card:nth-child(-n+3) {
  grid-column: span 2;
}

.benefits-grid .benefit-card:nth-child(n+4) {
  grid-column: span 3;
}

.benefits-header {
  margin-bottom: var(--s-14);
  max-width: 600px;
}

.benefits-inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
}

.benefits-section .section-eyebrow {
  color: rgba(241,90,34,0.85);
}

.benefits-section .section-title {
  color: #ffffff;
}

.benefits-section .benefit-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.benefits-section .benefit-card:hover {
  border-color: rgba(241,90,34,0.45);
}

.benefits-section .benefit-title {
  color: rgba(255,255,255,0.9);
}

.benefits-section .benefit-desc {
  color: rgba(255,255,255,0.5);
}

.benefits-section .benefit-icon {
  background: rgba(241,90,34,0.12);
}

/* ai-agentforce: revert benefits-section to light */

.ai-agentforce .benefits-section {
  background: var(--bg-base);
}

.ai-agentforce .benefits-section .section-eyebrow {
  color: var(--accent);
}

.ai-agentforce .benefits-section .section-title {
  color: var(--text-primary);
}

.ai-agentforce .benefits-section .benefit-card {
  background: var(--bg-raised);
  border-color: var(--border);
}

.ai-agentforce .benefits-section .benefit-title {
  color: var(--text-primary);
}

.ai-agentforce .benefits-section .benefit-desc {
  color: var(--text-muted);
}

.ai-agentforce .benefits-section .benefit-icon {
  background: rgba(241,90,34,0.1);
}

.cta-actions {
  display: flex;
  gap: var(--s-3);
  position: relative;
}

.cta-box {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
}

.cta-grid {
  position: absolute;
  inset: 0;
  background-image:
  linear-gradient(rgba(0, 0, 0, 0.022) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0, 0, 0, 0.022) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-halo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 280px;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(241, 90, 34, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  position: relative;
  overflow: hidden;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  padding: var(--s-20) var(--s-12);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-6);
}

.cta-sub {
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 400px;
  line-height: var(--leading-normal);
  position: relative;
}

.cta-title {
  font-size: clamp(var(--text-2xl), 3.5vw, var(--text-4xl));
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  max-width: 520px;
  position: relative;
}

.faq-a {
  overflow: hidden; max-height: 0; transition: max-height 0.35s ease;
}

.faq-a-inner {
  padding: 0 var(--s-6) var(--s-6); padding-top: var(--s-2);
}

.faq-a-inner p {
  font-size: var(--text-base); color: var(--text-muted); line-height: var(--leading-normal);
}

.faq-a.faq-open {
  max-height: 500px;
}

.faq-chevron {
  flex-shrink: 0; transition: transform 0.25s ease; color: var(--text-muted);
}

.faq-header {
  margin-bottom: var(--s-12);
}

.faq-inner {
  max-width: 720px; margin-inline: auto; padding-inline: var(--px);
}

.faq-item {
  border: 1px solid var(--border); border-radius: var(--r-xl); background: var(--bg-raised); box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04); overflow: hidden;
}

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

.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--s-4); padding: var(--s-5) var(--s-6); background: none; border: none; cursor: pointer; text-align: left; font-size: var(--text-base); font-weight: 600; color: var(--text-primary); font-family: inherit; transition: color 0.2s;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q[aria-expanded="true"] {
  color: var(--accent);
}

.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg); color: var(--accent);
}

.hero-actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
  linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
  linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-halo {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 480px;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(241,90,34,0.11) 0%, transparent 70%);
  pointer-events: none;
}

.hero-img {
  position: absolute;
  top: 0;
  right: 0;
  width: 42%;
  height: 100%;
  pointer-events: none;
  opacity: 0.72;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 18%, black 42%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.4) 18%, black 42%);
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  padding: 5px var(--s-4) 5px var(--s-3);
  background: var(--accent-dim);
  border: 1px solid rgba(241, 90, 34, 0.2);
  border-radius: var(--r-full);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: var(--s-8);
}

.hero-pill-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.hero-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  max-width: 520px;
  margin-bottom: var(--s-10);
}

.hero-title {
  font-size: clamp(var(--text-4xl), 5.5vw, var(--text-6xl));
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1.08;
  margin-bottom: var(--s-6);
  max-width: 700px;
}

.hero-valon-icon {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 360px;
  height: 360px;
  opacity: 0.06;
  pointer-events: none;
}

.how-board {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}

.how-bottom-pad {
  height: var(--s-16);
}

.how-cell {
  padding: var(--s-8) var(--s-6);
}

.how-cell-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

.how-cell-num {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
}

.how-cell-title {
  font-size: var(--text-xl);
  font-weight: 600;
  margin-bottom: var(--s-2);
}

.how-cell:not(:last-child) {
  border-right: 1px solid var(--border);
}

.how-frame {
  max-width: 1080px;
  margin-inline: auto;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.how-header {
  padding: var(--s-16) var(--s-10) var(--s-8);
}

.how-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.icp-board {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.icp-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.icp-cell {
  padding: var(--s-12) var(--s-10);
}

.icp-cell:first-child {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.icp-check-icon {
  width: 24px;
  height: 24px;
  border-radius: var(--r-full);
  background: rgba(241, 90, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.icp-feature {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding-block: var(--s-4);
}

.icp-feature-text {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  padding-top: 2px;
}

.icp-frame {
  max-width: 1080px;
  margin-inline: auto;
  padding-block: var(--s-24);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.icp-stat-cell {
  padding: var(--s-8) var(--s-10);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.icp-stat-cell:not(:last-child) {
  border-right: 1px solid var(--border);
}

.icp-stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.icp-stat-num {
  font-size: var(--text-5xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  color: var(--text-primary);
}

.icp-stat-num.accent {
  color: var(--accent);
}

.icp-stat-tag {
  align-self: flex-start;
  margin-top: var(--s-2);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px var(--s-3);
  background: var(--accent-dim);
  border: 1px solid rgba(241, 90, 34, 0.2);
  border-radius: var(--r-full);
  white-space: nowrap;
}

.icp-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.nav-drawer {
  display: none; position: fixed; inset: 0; z-index: 400;
}

.page {
  overflow-x: hidden;
}

.slide-author-block {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.slide-author-name {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slide-author-role {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.slide-company {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.slide-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.slide-left {
  flex: 0 0 58%;
  padding: var(--s-10);
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  position: relative;
  z-index: 1;
}

.slide-stars {
  font-size: 14px;
  line-height: 1;
  letter-spacing: 1px;
}

.slide-quote {
  font-size: clamp(var(--text-lg), 1.8vw, var(--text-2xl));
  font-weight: 600;
  font-style: italic;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-snug);
  color: #fff;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.slide-read-more {
  display: none;
  margin-top: var(--s-2);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.06em;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: color 0.2s;
}
.slide-read-more.visible {
  display: block;
}
.slide-read-more:hover {
  color: rgba(255, 255, 255, 0.58);
}

.review-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: pointer;
}
.review-modal.open {
  display: flex;
}
.review-modal-card {
  background: var(--bg-raised);
  border-radius: 16px;
  padding: 36px 40px 32px;
  max-width: 560px;
  width: 100%;
  cursor: default;
  position: relative;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}
.review-modal-stars {
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 16px;
  line-height: 1;
}
.review-modal-quote {
  font-size: clamp(var(--text-lg), 1.8vw, var(--text-2xl));
  font-weight: 600;
  font-style: italic;
  line-height: var(--leading-snug);
  letter-spacing: var(--tracking-snug);
  color: var(--text-primary);
  margin-bottom: 20px;
}
.review-modal-meta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.slide-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  color: var(--text-primary);
}

.slider-btn:disabled {
  opacity: 0.35;
  cursor: default;
}

.slider-btn:hover {
  background: var(--bg-surface);
  border-color: rgba(0, 0, 0, 0.25);
}

.slider-btn:hover:not(:disabled) {
  background: var(--bg-base);
  border-color: rgba(0,0,0,0.16);
}

.testimonial-slide {
  opacity: 0.45;
  width: min(680px, calc(100vw - 280px));
  flex: 0 0 min(680px, calc(100vw - 280px));
  height: 380px;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  position: relative;
}

.testimonials {
  background: var(--bg-base);
  padding-block: var(--s-12);
  overflow: hidden;
}

.testimonials-header-row {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--s-6);
  margin-bottom: var(--s-10);
}

.testimonials-slider-outer {
  padding-left: max(40px, calc((100vw - 1080px) / 2 + 40px));
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  cursor: grab;
  user-select: none;
}

.testimonials-track.dragging {
  cursor: grabbing;
}

.trail-active::after {
  opacity: 1;
}

.what-badge {
  position: absolute;
  bottom: var(--s-6);
  left: var(--s-6);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: var(--r-lg);
  padding: var(--s-3) var(--s-5);
}

.what-badge-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-bottom: 2px;
}

.what-badge-value {
  font-size: var(--text-sm);
  font-weight: 700;
  color: #ffffff;
}

.what-bottom-pad {
  height: var(--s-16);
}

.what-frame {
  max-width: 1080px;
  margin-inline: auto;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  position: relative;
}

.what-frame::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: var(--border);
}

.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.what-text {
  padding: var(--s-12) var(--s-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.what-text h2 {
  font-size: clamp(var(--text-2xl), 3vw, var(--text-4xl));
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-snug);
  margin-bottom: var(--s-5);
}

.what-text p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--s-5);
}

.what-top-pad {
  height: var(--s-16);
}

.what-visual {
  position: relative;
  border-radius: 0;
  border-right: 1px solid var(--border);
  overflow: hidden;
  min-height: 420px;
}

.what-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.what-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(36,37,40,0.5) 0%, transparent 60%);
}

.what-visual::after,
    .what-text::after,
    .how-cell::after,
    .icp-cell::after,
    .icp-stat-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  background: conic-gradient(from var(--trail-angle, 0deg), transparent 70%, rgba(241, 90, 34, 0.6) 83%, rgba(241, 90, 34, 0.14) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

/* ── Animations ── */

.anim-fade-up {
  opacity: 0; transform: translateY(20px);
}

/* ── Articles ── */

.articles-section {
  background: var(--bg-base);
}

/* ── Benefits ── */

.benefits-section {
  background: #18191c;
}

/* ── Border trail ── */

.what-text, .how-cell, .icp-cell, .icp-stat-cell {
  position: relative;
}

/* ── CTA ── */

.cta-section {
  background: var(--bg-base); padding-block: var(--s-24);
}

/* ── FAQ ── */

.faq-section {
  padding-block: var(--s-20);
}

/* ── Footer ── */

.footer {
  background: var(--bg-raised); border-top: 1px solid var(--border); padding-top: var(--s-16); padding-bottom: var(--s-10);
}

/* ── Hero ── */

.hero {
  padding-top: 200px; padding-bottom: var(--s-24); position: relative; overflow: hidden; background: var(--bg-raised);
}

/* ── How It Works ── */

/* ── Navigation ── */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; height: 64px; display: flex; align-items: center; background: rgba(248, 247, 244, 0.88); backdrop-filter: blur(16px); border-bottom: 1px solid var(--border); box-shadow: 0 1px 10px rgba(0, 0, 0, 0.06);
}

/* ── What It Is ── */

.what-section {
  background: var(--bg-base); padding-block: 0;
}

/* ── Who It's For ── */

.icp-section {
  background: var(--bg-raised); padding-block: 0;
}

/* ── Per-page hero overrides ──────────────────────────────────────── */

/* cta-inner border on cloud-engagement and ai-agentforce */

/* ── cloud-care ─────────────────────────────────────────── */

/* ── Border trail — sequential JS-driven glow ──────────────── */

.what-visual::after,
    .what-text::after,
    .icp-cell::after,
    .icp-stat-cell::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  background: conic-gradient(from var(--trail-angle, 0deg), transparent 70%, rgba(241, 90, 34, 0.6) 83%, rgba(241, 90, 34, 0.14) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

/* ── Spotlight fill hover — cards ───────────────────────────── */

/* ── Border glow hover — CTA card ───────────────────────────── */

/* ── Included Section (dark) ── */

/* ── Timeline How-section ── */

.timeline-section {
  background: var(--bg-base); padding-block: var(--s-16);
}

.timeline-inner {
  max-width: 1080px; margin-inline: auto; padding-inline: var(--px);
}

.timeline-header {
  margin-bottom: var(--s-10); max-width: 580px;
}

.timeline-step:not(:last-child) {
  border-bottom: none;
}

.timeline-content h3 {
  font-size: var(--text-xl); font-weight: 700; letter-spacing: var(--tracking-tight); margin-bottom: var(--s-3);
}

.timeline-content p {
  font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-normal); max-width: 560px;
}

/* ── What's Included (quadrillage 3x3) ── */

.incl-section {
  background: var(--bg-raised); padding-block: 0;
}

.incl-frame {
  max-width: 1080px; margin-inline: auto; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
}

.incl-header {
  padding: var(--s-16) var(--s-10) var(--s-8);
}

.incl-board {
  display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}

/* ── About Bento ──────────────────────────────────────────────── */

.incl-cell {
  padding: var(--s-8) var(--s-6);
}

.incl-cell:not(:nth-child(3n)) {
  border-right: 1px solid var(--border);
}

.incl-cell:nth-child(-n+3) {
  border-bottom: 1px solid var(--border);
}

.incl-cell-num {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: var(--tracking-widest); text-transform: uppercase; color: var(--accent); margin-bottom: var(--s-3);
}

.incl-cell-title {
  font-size: var(--text-xl); font-weight: 600; margin-bottom: var(--s-2);
}

.incl-cell-desc {
  font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-normal);
}

.incl-bottom-pad {
  height: var(--s-16);
}

/* ── Timeline icon circles ── */

.timeline-dot {
  width: 48px; height: 48px; border-radius: 50%; background: var(--bg-raised); box-shadow: inset 0 0 0 48px rgba(241,90,34,0.08), 0 0 0 5px var(--bg-raised), 0 0 0 6px rgba(241,90,34,0.15); border: none; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; position: relative; z-index: 2;
}

.timeline-num {
  display: none;
}

.timeline-num-wrap {
  padding-top: 0;
}

.timeline-list {
  --tl-left: 28px; position: relative; display: flex; flex-direction: column;
}

.timeline-list::before {
  content: ''; position: absolute; left: var(--tl-left); top: 40px; bottom: 40px; width: 1px; background: linear-gradient(to bottom, rgba(241,90,34,0.3) 0%, rgba(241,90,34,0.08) 100%);
}

.timeline-num-wrap {
  display: flex; flex-direction: column; align-items: center; padding-top: 0;
}

.timeline-step {
  display: grid; grid-template-columns: 60px 1fr; gap: var(--s-8); padding-block: var(--s-8); position: relative; align-items: flex-start;
}

/* ── page-index ─────────────────────────────────────────── */

.page-index .hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.page-index .hero-actions {
  justify-content: center;
}

.page-index .hero-stats {
  margin-top: var(--s-10);
}

.hero-stat {
  padding: var(--s-5) var(--s-8);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.hero-stat:not(:last-child) {
  border-right: 1px solid var(--border);
}

.hero-stat-n {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  color: var(--text-primary);
}

.hero-stat-n.accent {
  color: var(--accent);
}

.hero-stat-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  white-space: nowrap;
}

/* Scroll indicator */

.partners {
  padding-block: var(--s-8);
  border-block: 1px solid var(--border);
  background: var(--bg-base);
}

.partners-inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-5);
  text-align: center;
}

.partners-label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-14);
  flex-wrap: wrap;
}

.partner-logo {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity var(--ease-base), filter var(--ease-base);
}

.partner-logo:hover {
  opacity: 0.85;
  filter: grayscale(0);
}

.services {
  background: var(--bg-base);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--s-3);
}

.svc-card {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-8);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  transition: border-color var(--ease-base), box-shadow var(--ease-base);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.svc-card:hover {
  border-color: rgba(241, 90, 34, 0.28);
  box-shadow: var(--shadow-md);
}

/* Border trail — sequential JS-driven glow (one cell at a time) */

.why-cell,
    .why-stat-cell {
  position: relative;
}

.why-cell::after,
    .why-stat-cell::after,
    .ai-step::after {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1.5px;
  background: conic-gradient(from var(--trail-angle, 0deg), transparent 70%, rgba(241, 90, 34, 0.6) 83%, rgba(241, 90, 34, 0.14) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

/* Border glow hover — specific cards only */

.svc-span-4 {
  grid-column: span 4;
}

.svc-span-2 {
  grid-column: span 2;
}

.svc-span-3 {
  grid-column: span 3;
}

.svc-card-ai {
  position: relative;
  overflow: hidden;
  border-color: rgba(241, 90, 34, 0.18);
  background: #FFFAF8;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
}

.svc-card-ai::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
  radial-gradient(ellipse 80% 55% at 50% 0%, rgba(241, 90, 34, 0.09) 0%, transparent 65%),
  linear-gradient(to bottom, transparent 45%, rgba(255, 255, 255, 0.65) 100%);
  pointer-events: none;
}

.svc-card-ai:hover {
  box-shadow: 0 0 28px rgba(241, 90, 34, 0.10), 0 0 60px rgba(241, 90, 34, 0.04);
  border-color: rgba(241, 90, 34, 0.30);
}

.service-icon {
  width: 36px; height: 36px; border-radius: var(--r-md);
  background: var(--accent-dim); border: 1px solid rgba(241, 90, 34, 0.18);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s ease;
}

.svc-card:hover .service-icon {
  transform: translateY(-2px) scale(1.1);
}

.svc-title {
  font-size: var(--text-xl);
  font-weight: 600;
  letter-spacing: var(--tracking-snug);
  position: relative;
}

.svc-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  position: relative;
}

.svc-link {
  margin-top: auto;
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: var(--s-1);
  position: relative;
}

.why {
  background: var(--bg-raised);
  padding-block: 0;
}

.why-frame {
  max-width: 1080px;
  margin-inline: auto;
  padding-block: var(--s-24);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.why-board {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.why-cell {
  padding: var(--s-12) var(--s-10);
}

.why-cell:first-child {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-cell-head {
  display: flex; flex-direction: column; gap: var(--s-5);
}

.why-feature {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding-block: var(--s-5);
}

.why-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-md);
  background: var(--accent-dim);
  border: 1px solid rgba(241, 90, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--accent);
}

.why-feature-body {
  display: flex; flex-direction: column; gap: var(--s-1);
}

.why-feature-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
}

.why-feature-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

.why-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.why-stat-cell {
  padding: var(--s-8) var(--s-10);
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
}

.why-stat-cell:not(:last-child) {
  border-right: 1px solid var(--border);
}

.why-stat-num {
  font-size: var(--text-5xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1;
  color: var(--text-primary);
}

.why-stat-num.accent {
  color: var(--accent);
}

.why-stat-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.why-stat-tag {
  align-self: flex-start;
  margin-top: var(--s-2);
  font-size: var(--text-2xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 3px var(--s-3);
  background: var(--accent-dim);
  border: 1px solid rgba(241, 90, 34, 0.2);
  border-radius: var(--r-full);
  white-space: nowrap;
}

.ai {
  background: var(--bg-base);
}

.ai-process-section {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  padding-block: 0;
}

.ai-inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
}

.ai-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-12);
  align-items: end;
  margin-bottom: var(--s-12);
}

.ai-header-right {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  align-items: flex-start;
}

.ai-use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-3);
  margin-bottom: var(--s-10);
}

.ai-use-case {
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
}

/* .service-icon reused, sm modifier overrides size only */

.service-icon-sm {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--accent-dim);
  border: 1px solid rgba(241, 90, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ai-use-case-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
}

.ai-use-case-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.65;
}

/* Steps */

.ai-process-block {
  background: var(--bg-raised);
}

.ai-process-frame {
  max-width: 1080px;
  margin-inline: auto;
  padding-block: var(--s-16);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.ai-process-header {
  padding: 0 var(--s-10) var(--s-6);
}

.ai-steps {
  overflow: hidden;
}

.ai-steps-row {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.ai-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: var(--s-6);
  position: relative;
}

.ai-step:not(:last-child) {
  border-right: 1px solid var(--border);
}

.ai-step-num {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  border: 1px solid rgba(241, 90, 34, 0.3);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.ai-step-title {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--text-primary);
}

.ai-step-desc {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: 1.65;
}

.ai-step-duration {
  font-size: var(--text-2xs);
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Controls */

/* ── consulting ─────────────────────────────────────────── */

/* Border trail */

.what-text,
    .how-cell,
    .icp-cell,
    .icp-stat-cell {
  position: relative;
}

/* Spotlight fill hover */

.benefit-card,
    .article-card {
  position: relative;
  overflow: hidden;
}

/* Border glow hover — CTA */

/* ── Alternating process steps ── */

/* ── Project types ── */

/* ── cloud-engagement ─────────────────────────────────────────── */

.how-row--2 {
  grid-template-columns: repeat(2, 1fr);
}

.how-row--2:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.benefit-card, .article-card {
  position: relative; overflow: hidden;
}

/* ── Before / After section ── */

.before-after-section {
  background: var(--bg-raised); padding-block: var(--s-20);
}

.before-after-inner {
  max-width: 1080px; margin-inline: auto; padding-inline: var(--px);
}

.before-after-header {
  margin-bottom: var(--s-12); max-width: 560px;
}

.before-after-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
}

.ba-col {
  padding: var(--s-10);
}

.ba-col-before {
  background: var(--bg-base);
}

.ba-col-after {
  background: var(--bg-raised);
}

.ba-col-label {
  font-size: var(--text-xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: var(--s-6); display: flex; align-items: center; gap: var(--s-2);
}

.ba-col-before .ba-col-label {
  color: var(--text-muted);
}

.ba-col-after .ba-col-label {
  color: var(--accent);
}

.ba-item {
  display: flex; align-items: flex-start; gap: var(--s-3); padding-block: var(--s-3);
}

.ba-item:not(:last-child) {
  border-bottom: none;
}

.ba-icon-no {
  width: 18px; height: 18px; border-radius: 50%; background: rgba(0,0,0,0.07); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: rgba(0,0,0,0.3);
}

.ba-icon-yes {
  width: 18px; height: 18px; border-radius: 50%; background: rgba(34, 197, 94, 0.12); border: 1px solid rgba(34, 197, 94, 0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; color: #16a34a;
}

.ba-item-text {
  font-size: var(--text-sm); line-height: var(--leading-normal);
}

.ba-col-before .ba-item-text {
  color: var(--text-muted);
}

.ba-col-after .ba-item-text {
  color: var(--text-muted);
}

/* ── Checklist benefits ── */

/* ── Before/After cloud icons ── */

.ba-cloud-icon {
  width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: var(--s-4);
}

.ba-cloud-icon--off {
  background: rgba(0,0,0,0.06); color: rgba(0,0,0,0.35);
}

.ba-cloud-icon--on {
  background: rgba(241,90,34,0.12); border: 1px solid rgba(241,90,34,0.25); color: #F15A22;
}

/* ── Section bg overrides for cloud-engagement ── */

/* ── Feature cards section ── */

.feature-cards-section {
  background: #18191c; padding-block: var(--s-20);
}

.feature-cards-section .section-eyebrow {
  color: rgba(241,90,34,0.85);
}

.feature-cards-section .section-title,
.feature-cards-section .feature-cards-header p {
  color: rgba(255,255,255,0.85) !important;
}

.feature-cards-section .fcard {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}

.feature-cards-section .fcard:hover {
  border-color: rgba(241,90,34,0.45);
}

.feature-cards-section .fcard-title {
  color: rgba(255,255,255,0.9);
}

.feature-cards-section .fcard-desc {
  color: rgba(255,255,255,0.5);
}

.feature-cards-section .fcard-body {
  border-top-color: rgba(255,255,255,0.08);
}

.feature-cards-section .fcard-visual {
  background: linear-gradient(135deg, rgba(241,90,34,0.06) 0%, rgba(0,0,0,0.2) 100%);
}

.feature-cards-section .fcard-visual-ring {
  border-color: rgba(241,90,34,0.1);
}

.feature-cards-inner {
  max-width: 1080px; margin-inline: auto; padding-inline: var(--px);
}

.feature-cards-header {
  margin-bottom: var(--s-12); max-width: 560px;
}

.feature-cards-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--s-4);
}

.fcard {
  background: var(--bg-base); border: 1px solid var(--border); border-radius: var(--r-xl); overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 4px 12px rgba(0,0,0,0.05), 0 1px 3px rgba(0,0,0,0.04); transition: border-color 0.2s, box-shadow 0.2s; position: relative;
}

.fcard:hover {
  border-color: rgba(241,90,34,0.35); box-shadow: 0 8px 24px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
}

.fcard--wide {
  grid-column: span 3;
}

.fcard--narrow {
  grid-column: span 2;
}

.fcard-visual {
  flex: 1; min-height: 160px; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; background: linear-gradient(135deg, rgba(241,90,34,0.04) 0%, rgba(241,90,34,0.01) 100%); padding: var(--s-8);
}

.fcard--wide .fcard-visual {
  min-height: 200px;
}

@keyframes fcard-halo {
  0% { box-shadow: 0 0 0 0 rgba(241,90,34,0.25); } 70% { box-shadow: 0 0 0 18px rgba(241,90,34,0); } 100% { box-shadow: 0 0 0 0 rgba(241,90,34,0); }
}

.fcard-visual-icon {
  width: 64px; height: 64px; border-radius: 50%; background: rgba(241,90,34,0.08); border: 1px solid rgba(241,90,34,0.2); display: flex; align-items: center; justify-content: center; color: var(--accent); position: relative; z-index: 1; animation: fcard-halo 2.8s ease-out infinite;
}

.fcard--wide .fcard-visual-icon {
  width: 76px; height: 76px;
}

.fcard-visual-ring {
  position: absolute; border-radius: 50%; border: 1px solid rgba(241,90,34,0.08); pointer-events: none;
}

.fcard-visual-ring:nth-child(1) {
  width: 120px; height: 120px;
}

.fcard-visual-ring:nth-child(2) {
  width: 180px; height: 180px;
}

.fcard-visual-ring:nth-child(3) {
  width: 240px; height: 240px;
}

.fcard-body {
  padding: var(--s-5) var(--s-6) var(--s-6); border-top: 1px solid var(--border);
}

.fcard-eyebrow {
  font-size: var(--text-2xs); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: var(--s-2);
}

.fcard-title {
  font-size: var(--text-xl); font-weight: 700; line-height: var(--leading-snug); margin-bottom: var(--s-2);
}

.fcard--wide .fcard-title {
  font-size: var(--text-xl);
}

.fcard-desc {
  font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-normal);
}

/* ── page-services ─────────────────────────────────────────── */

.slider-controls {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  gap: var(--s-3);
  margin-top: var(--s-6);
}

/* ── contact ─────────────────────────────────────────── */

.contact-frame {
  max-width: 1080px;
  margin-inline: auto;
  padding-block: var(--s-24);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}

.contact-board {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-top-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.contact-cell {
  padding: var(--s-12) var(--s-10);
}

.contact-cell-left {
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--s-8);
}

/* ── Reasons list ── */

.contact-reasons {
  display: flex; flex-direction: column;
}

.contact-reason {
  display: flex;
  gap: var(--s-4);
  align-items: flex-start;
  padding-block: var(--s-4);
}

.contact-reason-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-full);
  background: rgba(241, 90, 34, 0.08);
  border: 1px solid rgba(241, 90, 34, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 2px;
}

.contact-reason-text {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  padding-top: 5px;
}

/* ── Address ── */

.contact-address {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
  padding-top: var(--s-8);
  border-top: 1px solid var(--border);
}

.contact-address-label {
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-2);
}

.contact-address-line {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.contact-address-line a {
  color: var(--text-muted);
  text-decoration: none;
}

.contact-address-line a:hover {
  color: var(--accent);
}

/* ── Form ── */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
}

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

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

.form-field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.form-field input,
    .form-field select,
    .form-field textarea {
  font-family: inherit;
  font-size: var(--text-sm);
  color: var(--text-primary);
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-3) var(--s-4);
  outline: none;
  transition: border-color 0.2s;
  resize: vertical;
  width: 100%;
  box-sizing: border-box;
}

.form-field input::placeholder,
    .form-field textarea::placeholder {
  color: rgba(36, 37, 40, 0.3);
}

.form-field input:focus,
    .form-field select:focus,
    .form-field textarea:focus {
  border-color: rgba(241, 90, 34, 0.5);
  box-shadow: 0 0 0 3px rgba(241, 90, 34, 0.08);
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--s-4) center;
  padding-right: var(--s-10);
  cursor: pointer;
}

.form-field textarea {
  min-height: 120px;
}

.form-note {
  font-size: var(--text-xs);
  color: var(--text-muted);
  opacity: 0.7;
}

/* ── Bottom row — next steps ── */

.contact-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.contact-step-cell {
  padding: var(--s-8) var(--s-10);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.contact-step-cell:not(:last-child) {
  border-right: 1px solid var(--border);
}

.contact-step-num {
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-step-title {
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  line-height: 1.25;
}

.contact-step-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
}

/* ── ai-agentforce ─────────────────────────────────────────── */

/* ── Use Cases ── */

.usecases-inner {
  max-width: 1080px; margin-inline: auto; padding-inline: var(--px);
}

.usecases-header {
  margin-bottom: var(--s-14); max-width: 600px;
}

.usecases-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4);
}

.usecase-card {
  background: var(--bg-raised); border: 1px solid var(--border); border-radius: var(--r-xl); padding: var(--s-8); box-shadow: 0 8px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04); transition: border-color 0.2s; position: relative; overflow: hidden;
}

.usecase-card:hover {
  border-color: rgba(241, 90, 34, 0.45);
}

.usecase-tag {
  font-size: var(--text-xs); font-weight: 600; letter-spacing: var(--tracking-wide); text-transform: uppercase; color: var(--accent); margin-bottom: var(--s-4);
}

.usecase-icon {
  width: 44px; height: 44px; background: rgba(241, 90, 34, 0.08); border-radius: var(--r-lg); display: flex; align-items: center; justify-content: center; margin-bottom: var(--s-5); color: var(--accent);
}

.usecase-title {
  font-size: var(--text-lg); font-weight: 700; letter-spacing: var(--tracking-tight); margin-bottom: var(--s-3);
}

.usecase-desc {
  font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-normal);
}

.benefit-card, .article-card, .usecase-card {
  position: relative; overflow: hidden;
}

/* ── Day timeline ── */

.day-timeline-section {
  background: var(--bg-raised); padding-block: var(--s-20);
}

.day-timeline-inner {
  max-width: 1080px; margin-inline: auto; padding-inline: var(--px);
}

.day-timeline-header {
  margin-bottom: var(--s-14); max-width: 580px;
}

.day-timeline-list {
  position: relative; display: flex; flex-direction: column;
}

.day-timeline-list::before {
  content: ''; position: absolute; left: 28px; top: 40px; bottom: 40px; width: 1px; background: linear-gradient(to bottom, rgba(241,90,34,0.3) 0%, rgba(241,90,34,0.08) 100%);
}

.day-timeline-step {
  display: grid; grid-template-columns: 60px 1fr; gap: var(--s-8); padding-block: var(--s-8); position: relative; align-items: flex-start;
}

.day-timeline-num-wrap {
  display: flex; flex-direction: column; align-items: center;
}

.day-timeline-dot {
  width: 48px; height: 48px; border-radius: 50%; background: var(--bg-raised); box-shadow: inset 0 0 0 48px rgba(241,90,34,0.08), 0 0 0 5px var(--bg-raised), 0 0 0 6px rgba(241,90,34,0.15); display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; position: relative; z-index: 2;
}

.day-timeline-content h3 {
  font-size: var(--text-xl); font-weight: 700; letter-spacing: var(--tracking-tight); margin-bottom: var(--s-3);
}

.day-timeline-content p {
  font-size: var(--text-sm); color: var(--text-muted); line-height: var(--leading-normal); max-width: 580px; margin-bottom: var(--s-4);
}

.day-deliverable {
  display: inline-flex; align-items: center; gap: var(--s-2); font-size: var(--text-sm); font-weight: 600; color: var(--text-primary); padding: var(--s-2) var(--s-4); background: rgba(241,90,34,0.06); border: 1px solid rgba(241,90,34,0.15); border-radius: var(--r-md);
}

.day-deliverable svg {
  color: var(--accent); flex-shrink: 0;
}

/* ── Dark use cases ── */

.usecases-section .section-eyebrow {
  color: rgba(241,90,34,0.85);
}

.usecases-section .section-title {
  color: #ffffff;
}

.usecases-section .section-sub {
  color: rgba(255,255,255,0.5);
}

.usecases-section .usecase-card {
  background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.08);
}

.usecases-section .usecase-card:hover {
  border-color: rgba(241,90,34,0.45);
}

.usecases-section .usecase-title {
  color: rgba(255,255,255,0.9);
}

.usecases-section .usecase-desc {
  color: rgba(255,255,255,0.5);
}

.usecases-section .usecase-icon {
  background: rgba(241,90,34,0.12);
}

/* ── article ─────────────────────────────────────────── */

.art-wrap {
  padding-top: 64px;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 0 var(--s-14);
  align-items: start;
}

.art-header {
  grid-column: 1;
  grid-row: 1;
  padding-block: var(--s-14) var(--s-6);
}

.art-feat {
  grid-column: 1;
  grid-row: 2;
}

.art-feat img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--r-xl);
  display: block;
}

.art-body {
  grid-column: 1;
  grid-row: 3;
  padding-bottom: var(--s-20);
}

.art-sidebar {
  grid-column: 2;
  grid-row: 1 / span 3;
  position: sticky;
  top: 80px;
  align-self: start;
  padding-top: var(--s-14);
}

.art-breadcrumb {
  font-size: var(--text-xs);
  color: var(--text-muted);
  margin-bottom: var(--s-5);
  display: flex;
  gap: var(--s-2);
  align-items: center;
  flex-wrap: wrap;
}

.art-breadcrumb a {
  color: var(--text-muted); text-decoration: none; transition: color 0.15s;
}

.art-breadcrumb a:hover {
  color: var(--text-primary);
}

.art-breadcrumb-sep {
  color: var(--border);
}

.art-meta {
  display: flex;
  gap: var(--s-3);
  align-items: center;
  margin-bottom: var(--s-5);
  flex-wrap: wrap;
}

.art-meta-tag {
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 3px var(--s-3);
  border-radius: var(--r-full);
  border: 1px solid rgba(241,90,34,0.2);
}

.art-meta-info {
  font-size: var(--text-xs);
  color: var(--text-muted);
}

.art-meta-dot {
  width: 3px; height: 3px;
  background: var(--text-muted);
  border-radius: 50%;
  opacity: 0.5;
}

.art-title {
  font-size: clamp(var(--text-2xl), 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  line-height: 1.1;
  margin-bottom: var(--s-6);
  color: var(--text-primary);
}

.art-intro {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  max-width: 600px;
}

.art-body h2 {
  scroll-margin-top: 84px;
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
  margin: var(--s-14) 0 var(--s-4);
  padding-top: var(--s-2);
}

.art-body h3 {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text-primary);
  margin: var(--s-8) 0 var(--s-3);
}

.art-body p {
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: var(--s-4);
  font-size: var(--text-base);
}

.art-body ul, .art-body ol {
  margin: var(--s-3) 0 var(--s-6) 0;
}

.art-body li {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: var(--s-2);
  font-size: var(--text-base);
}

.art-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.art-body a {
  color: var(--text-primary);
  text-decoration: underline;
  text-decoration-color: rgba(241,90,34,0.35);
  transition: text-decoration-color 0.15s;
}

.art-body a:hover {
  text-decoration-color: var(--accent);
}

.art-body a.btn {
  text-decoration: none;
}

.art-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: var(--s-10) 0;
}

.callout {
  border-radius: var(--r-xl);
  padding: var(--s-5) var(--s-6);
  margin: var(--s-8) 0;
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.04);
  overflow: hidden;
}

.callout-note {
  background: rgba(241,90,34,0.05);
}

/* Compare blocks (bad/good two-column grids in articles) */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
  margin: var(--s-8) 0;
}
@media (max-width: 640px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-card {
  border-radius: 10px;
  padding: var(--s-6);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.05);
}
.compare-card.bad  { background: #fef2f2; border: 1px solid #fca5a5; }
.compare-card.good { background: #f0fdf4; border: 1px solid #86efac; }
.compare-card .compare-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}
.compare-card.bad  .compare-label { color: #dc2626; }
.compare-card.good .compare-label { color: #16a34a; }
.compare-card ul {
  margin: 0;
  padding-left: var(--s-5);
  color: var(--text-muted);
  font-size: var(--text-sm);
}
.compare-card ul li { margin-bottom: var(--s-2); }

.callout-dark {
  background: #F6F2EC;
  padding: var(--s-6) var(--s-8);
}

.callout-label {
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--s-2);
  display: block;
  color: var(--accent);
}

.callout-dark .callout-label {
  color: #8a6b3f;
}

.callout p {
  margin-bottom: 0;
  font-size: var(--text-sm);
  color: var(--text-primary);
  line-height: var(--leading-normal);
}

.toc-box {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
}

.toc-label {
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--s-4);
  display: block;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.toc-list a {
  font-size: var(--text-sm);
  color: var(--text-muted);
  text-decoration: none;
  display: block;
  padding: var(--s-2) var(--s-3);
  border-radius: var(--r-md);
  margin-left: calc(-1 * var(--s-3));
  transition: color 0.15s, background 0.15s;
  line-height: var(--leading-snug);
}

.toc-list a:hover {
  color: var(--accent);
  background: rgba(241,90,34,0.07);
}

.toc-list a.is-active {
  color: var(--accent);
  background: rgba(241,90,34,0.1);
  font-weight: 600;
}

.toc-cta-box {
  margin-top: var(--s-4);
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-6);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.03);
}

.toc-cta-eyebrow {
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
  display: block;
}

.toc-cta-label {
  font-size: var(--text-xs);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  margin-bottom: var(--s-4);
}

.toc-cta-box .btn {
  width: 100%;
  justify-content: center;
  font-size: var(--text-xs);
}

.art-toc-mobile {
  display: none;
  margin: var(--s-8) 0;
}

.toc-mobile-wrap {
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.toc-mobile-toggle {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  padding: var(--s-4) var(--s-5);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  font-family: inherit;
  cursor: pointer;
}

.toc-mobile-toggle[aria-expanded="true"] .toc-chevron {
  transform: rotate(180deg);
}

.toc-chevron {
  transition: transform 0.2s ease;
  color: var(--text-muted);
}

.toc-mobile-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  border-top: 1px solid var(--border);
}

.toc-mobile-body.open {
  max-height: 400px;
}

.toc-mobile-body .toc-list {
  padding: var(--s-2) var(--s-2) var(--s-2);
}

.toc-mobile-body .toc-list a {
  margin-left: 0;
  padding-left: var(--s-1);
}

.art-cta {
  background: #18191c;
  border-radius: var(--r-xl);
  padding: var(--s-14) var(--s-12);
  text-align: center;
  margin-top: var(--s-14);
}

.art-cta-eyebrow {
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: var(--s-2);
  display: block;
}

.art-cta h2 {
  font-size: clamp(var(--text-xl), 2.5vw, var(--text-2xl));
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  color: #ffffff;
  margin-top: var(--s-1);
  margin-bottom: var(--s-4);
}

.art-cta p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  max-width: 400px;
  margin: 0 auto var(--s-8);
  line-height: var(--leading-normal);
}

.art-cta .art-cta-actions {
  display: flex;
  gap: var(--s-3);
  justify-content: center;
  flex-wrap: wrap;
}

.art-cta .btn-primary {
  color: #ffffff;
}

.art-cta .btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 255, 255, 0.2);
}

.art-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.38);
  color: #ffffff;
}

.related-section {
  background: var(--bg-base);
  padding-block: var(--s-16);
  border-top: 1px solid var(--border);
}

.related-inner {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
}

.related-header {
  margin-bottom: var(--s-10);
}

.related-eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-3);
}

.related-title {
  font-size: var(--text-xl);
  font-weight: 700;
  letter-spacing: var(--tracking-tight);
  color: var(--text-primary);
}

.related-slider-outer {
  overflow-x: clip;
  overflow-y: visible;
  padding-left: var(--px);
  padding-block: 20px;
  margin-block: -20px;
  margin-left: calc(50% - 540px);
  margin-right: 0;
}

.related-track {
  display: flex;
  gap: var(--s-5);
  will-change: transform;
}

.related-controls {
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: var(--px);
  display: flex;
  justify-content: flex-end;
  gap: var(--s-3);
  margin-top: var(--s-8);
}

.related-card {
  flex: 0 0 300px;
  width: 300px;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.related-card:hover {
  border-color: rgba(241,90,34,0.4);
  box-shadow: 0 8px 20px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
}

.related-card-thumb {
  height: 160px;
  background: linear-gradient(135deg, rgba(241,90,34,0.06) 0%, rgba(241,90,34,0.02) 100%);
  overflow: hidden;
}

.related-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.related-card-body {
  padding: var(--s-5) var(--s-6) var(--s-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.related-card-tag {
  font-size: var(--text-2xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-2);
}

.related-card-title {
  font-size: var(--text-base);
  font-weight: 600;
  line-height: var(--leading-snug);
  color: var(--text-primary);
  margin-bottom: var(--s-2);
}

.related-card-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: var(--leading-normal);
  flex: 1;
}

/* ================================================================

   Shared page components

================================================================ */

.anim-fade {
  opacity: 0;
}

/* ── Per-page hero overrides ─────────────────────────────────────── */

.page-index .hero,
.page-services .hero {
  padding-top: calc(64px + var(--s-20));
}

.page-services .hero {
  padding-bottom: var(--s-20);
}

/* ── page-index ─────────────────────────────────────── */

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: var(--bg-raised);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
}

/* ── consulting ─────────────────────────────────────── */

.how-section {
  background: var(--bg-base);
  padding-block: 0;
}

/* ── cloud-engagement ─────────────────────────────────────── */

.how-row--3 {
  grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid var(--border);
}

/* ── page-services ─────────────────────────────────────── */

.svc-overview {
  background: var(--bg-base);
  padding-block: 0;
}

/* ── contact ─────────────────────────────────────── */

.contact-section {
  background: var(--bg-base);
  padding-block: 0;
}

/* ── ai-agentforce ─────────────────────────────────────── */

/* ── Use Cases ── */

.usecases-section {
  background: #18191c;
}

/* ── article ─────────────────────────────────────── */

.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  z-index: 300;
  width: 0%;
  transition: width 0.08s linear;
  pointer-events: none;
}

/* ── FAQ mobile font size ────────────────────────────────────────── */

/* cloud-care responsive */

/* cloud-care responsive */

/* cloud-care responsive */

/* page-index responsive */

/* consulting responsive */

/* cloud-engagement responsive */

/* cloud-engagement responsive */

/* page-services responsive */

/* contact responsive */

/* ai-agentforce responsive */

/* article responsive */

/* article responsive */

@media (max-width: 1120px) {
  .related-slider-outer { margin-left: 0; }
  .articles-slider-outer { margin-left: 0; }
}

@media (max-width: 900px) {
  .incl-board { grid-template-columns: repeat(2, 1fr); }
  .incl-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .incl-cell:nth-child(odd) { border-right: 1px solid var(--border); }
  .incl-cell:nth-child(-n+3) { border-bottom: 1px solid var(--border); }
  .incl-cell:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 860px) {
  .art-wrap { grid-template-columns: 1fr; }
  .art-sidebar { display: none; }
  .art-toc-mobile { display: block; }
  .art-header { padding-block: var(--s-10) var(--s-4); }
  .art-title { font-size: var(--text-2xl); }
  .art-intro { font-size: var(--text-base); }
  .art-cta { padding: var(--s-10) var(--s-6); }
  .art-cta-actions { flex-direction: column; }
  .art-cta-actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 768px) {
  section { padding-block: var(--s-12); }
  .timeline-section { padding-block: var(--s-10); }
  .timeline-header { margin-bottom: var(--s-6); }
  .section-sub { font-size: var(--text-md); }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; align-items: center; }
  .nav-sf-badge { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--s-8); padding-inline: var(--s-6); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-valon-icon { display: none; }
  .benefits-grid .benefit-card:nth-child(-n+3),
  .benefits-grid .benefit-card:nth-child(n+4) { grid-column: span 1; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .timeline-list::before { left: 21px; }
  .timeline-step { grid-template-columns: 52px 1fr; }
  .fcard--wide, .fcard--narrow { grid-column: span 1; }
  .timeline-dot { width: 40px; height: 40px; }
  .timeline-list { --tl-left: 21px; }
  /* ── Global ───────────────────────────────────────────── */
  .section-sub, .hero-sub { font-size: var(--text-md); }
  /* ── Nav ──────────────────────────────────────────────── */
  /* ── Hero ─────────────────────────────────────────────── */
  .hero { padding-bottom: var(--s-10); }
  .hero-stats { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .hero-stat:not(:last-child) { border-right: none; }
  .hero-stat:nth-child(odd) { border-right: 1px solid var(--border); }
  .hero-stat:nth-child(1),
  .hero-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  /* ── Partners ─────────────────────────────────────────── */
  .partners-logos { gap: var(--s-8); }
  /* ── Services ─────────────────────────────────────────── */
  .services-grid { grid-template-columns: 1fr; gap: var(--s-3); }
  .svc-span-2, .svc-span-4 { grid-column: span 1; }
  .svc-photo { display: none; }
  .svc-card { padding: var(--s-5); }
  /* ── Why Valon ────────────────────────────────────────── */
  .why-frame { padding-block: var(--s-10); }
  .why-top-row { grid-template-columns: 1fr; }
  .why-cell { padding: var(--s-8) var(--s-6); }
  .why-cell:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .why-bottom-row { grid-template-columns: repeat(3, 1fr); }
  .why-stat-cell { padding: var(--s-4) var(--s-3); align-items: center; text-align: center; }
  .why-stat-cell:not(:last-child) { border-right: 1px solid var(--border); }
  .why-stat-num { font-size: var(--text-3xl); }
  .why-stat-label { font-size: var(--text-2xs); }
  .why-stat-tag { display: none; }
  /* ── AI / Agentforce ──────────────────────────────────── */
  .ai-header { grid-template-columns: 1fr; gap: var(--s-6); }
  .ai-use-cases { grid-template-columns: 1fr; }
  .ai-steps { display: grid; grid-template-columns: 1fr 1fr; }
  .ai-steps-row { display: contents; }
  .ai-steps .ai-step { border-right: none; border-bottom: 1px solid var(--border); }
  .ai-steps-row:first-child .ai-step:nth-child(odd) { border-right: 1px solid var(--border); }
  .ai-steps-row:last-child .ai-step:last-child { grid-column: span 2; border-right: none; border-bottom: none; }
  /* ── Testimonials ─────────────────────────────────────── */
  .testimonials-header-row { flex-direction: column; align-items: flex-start; gap: var(--s-3); }
  .slider-controls { flex-direction: row; gap: var(--s-3); }
  /* ── Tighter spacing: AI → Testimonials → Contact ───────── */
  .ai, .testimonials, .cta-section { padding-block: var(--s-10); }
  /* ── Contact ──────────────────────────────────────────── */
  .cta-inner { padding: var(--s-10) var(--s-6); }
  /* ── Footer ───────────────────────────────────────────── */
  /* ── How-board: 2-col grid, 5th cell full-width ─────────── */
  .how-board { display: grid; grid-template-columns: 1fr 1fr; }
  .how-row { display: contents; }
  .how-board .how-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .how-row--3 .how-cell:nth-child(odd) { border-right: 1px solid var(--border); }
  .how-row--2 .how-cell:nth-child(1) { border-right: 1px solid var(--border); }
  .how-row--3 ~ .how-row--2 .how-cell { border-right: none; }
  .how-row:last-child .how-cell { border-bottom: none; }
  .how-row--3 ~ .how-row--2 .how-cell:first-child { border-bottom: 1px solid var(--border); }
  .how-row--3 ~ .how-row--2 .how-cell:last-child { grid-column: span 2; border-right: none; border-bottom: none; }
  .benefits-grid .benefit-card:nth-child(-n+3), .benefits-grid .benefit-card:nth-child(n+4) { grid-column: span 1; }
  .before-after-grid { grid-template-columns: 1fr; }
  .ba-col-before { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-cards-grid { grid-template-columns: 1fr 1fr; }
  .fcard--wide { grid-column: span 1; }
  .fcard--narrow { grid-column: span 2; }
  /* ── Global ───────────────────────────────────────────── */
  /* ── Nav ──────────────────────────────────────────────── */
  /* ── Hero ─────────────────────────────────────────────── */
  /* ── Overview quadrillage ─────────────────────────────── */
  /* ── Deep-dive sections ───────────────────────────────── */
  /* ── AI teaser ────────────────────────────────────────── */
  /* ── Testimonials ─────────────────────────────────────── */
  /* ── Contact ──────────────────────────────────────────── */
  /* ── Footer ───────────────────────────────────────────── */
  .contact-frame { padding-block: var(--s-10); }
  .contact-top-row { grid-template-columns: 1fr; }
  .contact-cell-left { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-cell { padding: var(--s-8) var(--s-6); }
  .form-row-2 { grid-template-columns: 1fr; }
  .contact-bottom-row { grid-template-columns: 1fr; }
  .contact-step-cell:not(:last-child) { border-right: none; border-bottom: 1px solid var(--border); }
  .contact-step-cell { padding: var(--s-6) var(--s-6); }
  .how-cell:nth-child(1), .how-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  .usecases-grid { grid-template-columns: 1fr; }
  .day-timeline-step { grid-template-columns: 52px 1fr; gap: var(--s-5); }
  .day-timeline-dot { width: 40px; height: 40px; }
  .day-timeline-list::before { left: 19px; }
  .hero-img { display: none; }
  .hero-title { font-size: var(--text-4xl); }
  .hero-actions { flex-direction: column; width: 100%; gap: var(--s-3); }
  .what-inner { grid-template-columns: 1fr; }
  .what-visual { height: 260px; min-height: unset; border-right: none; border-bottom: 1px solid var(--border); }
  .what-text { padding: var(--s-8) var(--s-6); }
  .benefits-grid { grid-template-columns: 1fr; }
  .icp-frame { padding-block: var(--s-10); }
  .icp-top-row { grid-template-columns: 1fr; }
  .icp-cell { padding: var(--s-8) var(--s-6); }
  .icp-cell:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .icp-bottom-row { grid-template-columns: repeat(3, 1fr); }
  .icp-stat-cell { padding: var(--s-4) var(--s-3); text-align: center; align-items: center; }
  .icp-stat-cell:not(:last-child) { border-right: 1px solid var(--border); border-bottom: none; }
  .icp-stat-num { font-size: var(--text-2xl); }
  .icp-stat-label { font-size: var(--text-2xs); }
  .icp-stat-tag { display: none; }
  .icp-feature-text { font-size: var(--text-sm); }
  .faq-q { font-size: var(--text-sm); padding: var(--s-4) var(--s-5); }
  .faq-a-inner p { font-size: var(--text-sm); }
  .articles-header { flex-direction: column; align-items: flex-start; }
  .articles-slider-outer { padding-left: var(--s-6); margin-left: 0; }
  .article-card { flex: 0 0 300px; width: 300px; }
  .articles-controls { justify-content: flex-start; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: var(--s-3); }
  .testimonials-slider-outer { padding-left: var(--px); }
  .testimonial-slide { flex: 0 0 80vw; width: 80vw; height: 320px; }
  .slide-left { flex: 1; width: 100%; padding: var(--s-6); }
  .slide-right { display: none; }
  .slider-btn { width: 48px; height: 48px; }
  .how-row { grid-template-columns: 1fr 1fr; }
  .hero-sub { font-size: var(--text-base); }
  .benefits-grid .benefit-card:nth-child(-n+3),
      .benefits-grid .benefit-card:nth-child(n+4) { grid-column: span 1; }
  /* ── Global ───────────────────────────────────────────── */
  /* ── Nav ──────────────────────────────────────────────── */
  /* ── Hero ─────────────────────────────────────────────── */
  .hero-stat:nth-child(1),
      .hero-stat:nth-child(2) { border-bottom: 1px solid var(--border); }
  /* ── Partners ─────────────────────────────────────────── */
  /* ── Services ─────────────────────────────────────────── */
  /* ── Why Valon ────────────────────────────────────────── */
  /* ── AI / Agentforce ──────────────────────────────────── */
  .ai-step:nth-child(1),
      .ai-step:nth-child(2) { border-bottom: 1px solid var(--border); }
  /* ── Testimonials ─────────────────────────────────────── */
  /* ── Tighter spacing: AI → Testimonials → Contact ───────── */
  /* ── Contact ──────────────────────────────────────────── */
  /* ── Footer ───────────────────────────────────────────── */
  .how-cell:nth-child(1),
      .how-cell:nth-child(2) { border-bottom: 1px solid var(--border); }
  /* ── Global ───────────────────────────────────────────── */
  /* ── Nav ──────────────────────────────────────────────── */
  /* ── Hero ─────────────────────────────────────────────── */
  /* ── Overview quadrillage ─────────────────────────────── */
  /* ── Deep-dive sections ───────────────────────────────── */
  /* ── AI teaser ────────────────────────────────────────── */
  /* ── Testimonials ─────────────────────────────────────── */
  /* ── Contact ──────────────────────────────────────────── */
  /* ── Footer ───────────────────────────────────────────── */
  /* ── About Bento ──────────────────────────────────────── */
}

@media (max-width: 600px) {
  section { padding-block: var(--s-10); }
  .timeline-section { padding-block: var(--s-8); }
  .founders-grid { grid-template-columns: 1fr 1fr; gap: var(--s-3) !important; }
  .founder-body { padding: var(--s-4) !important; }
  .related-card { flex: 0 0 300px; width: 300px; }
  .related-controls { justify-content: flex-start; }
  .related-slider-outer { padding-left: var(--s-6); margin-left: 0; }
  .nav-links, .nav-cta { display: none; }
  .art-body h2 { font-size: var(--text-xl); }
  .art-cta h2 { font-size: var(--text-xl); }
  .nav-burger { display: flex; align-items: center; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: var(--s-8); padding-inline: var(--s-6); }
}

@media (max-width: 480px) {
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .incl-frame { border-left: none; border-right: none; }
  .incl-header { padding: var(--s-10) var(--px) var(--s-6); }
  .incl-board { grid-template-columns: repeat(2, 1fr); }
  .incl-cell { border-right: none; border-bottom: 1px solid var(--border); }
  .incl-cell:nth-child(odd) { border-right: 1px solid var(--border); }
  .incl-cell:nth-last-child(-n+2) { border-bottom: none; }
  .feature-cards-grid { grid-template-columns: 1fr; }
  .fcard--wide, .fcard--narrow { grid-column: span 1; }
}