/* ============================================================
   SHIFTER SOCIALS — site styles
   Ported from the Claude Design handoff bundle (HTML/CSS/JS
   prototype) into a production static site. Brand tokens live in
   colors_and_type.css; this file holds layout + component styles.
   ============================================================ */

html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  color: var(--fg1);
  background: #EEEEF1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
button { font-family: inherit; }
img { display: block; }

.wrap { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
section { scroll-margin-top: 84px; }

/* ---- continuous high-end backdrop (runs the whole page) ---- */
.ss-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(120% 78% at 50% -12%, rgba(255,255,255,.88), rgba(255,255,255,0) 52%),
    radial-gradient(68% 50% at 104% 2%, rgba(255,49,49,.20), rgba(255,49,49,0) 60%),
    radial-gradient(60% 46% at -6% 34%, rgba(255,49,49,.15), rgba(255,49,49,0) 60%),
    radial-gradient(72% 50% at 110% 72%, rgba(255,49,49,.17), rgba(255,49,49,0) 62%),
    radial-gradient(58% 42% at 30% 110%, rgba(255,49,49,.12), rgba(255,49,49,0) 60%),
    linear-gradient(180deg, #F7EFF0 0%, #EFE4E6 50%, #F3EAEC 100%);
}
.ss-bg::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(-24deg, rgba(255,49,49,.05) 0 1px, transparent 1px 46px);
  -webkit-mask-image: radial-gradient(130% 100% at 50% 30%, #000 0%, transparent 82%);
          mask-image: radial-gradient(130% 100% at 50% 30%, #000 0%, transparent 82%);
}
.ss-bg::after {
  content: ""; position: absolute; inset: 0;
  box-shadow: inset 0 0 260px rgba(150,20,20,.08);
}

/* straight premium dark block (hero) */
.ss-dark {
  background:
    radial-gradient(120% 130% at 82% -10%, #1a1a1c 0%, #0c0c0d 42%, #000 100%) !important;
  position: relative;
}
.ss-dark::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 70%);
          mask-image: linear-gradient(180deg, #000, transparent 70%);
  opacity: .6;
}

/* diagonal dark block — angled top & bottom edges.
   Uses a clip-path with a FIXED diagonal height (--ss-diag) instead of a
   viewport-wide skewY. A skew pivots from the left corner and its lift grows
   with screen width, so on wide monitors the angled edge climbs into the
   neighbouring section and cuts through its text. A fixed clip-path keeps the
   diagonal contained inside this section's own top/bottom padding — always
   between the text blocks, never through them. */
.ss-skew-dark {
  position: relative; background: transparent !important;
  --ss-diag: 64px;
  /* Big black blocks: generous OWN vertical padding gives them real presence
     and keeps the text well clear of the diagonal edges. (The hero is .ss-dark,
     not .ss-skew-dark, so it is unaffected.) Plus a modest gap to neighbours. */
  padding: clamp(90px, 12vh, 160px) 0;
  margin-block: clamp(24px, 4vh, 56px);
}
/* Contact is the last black block and sits directly on the black footer.
   Keep the top diagonal but make its bottom edge straight + flush, so it runs
   fully black into the footer (no light wedge in the bottom-right corner). */
#contact { margin-bottom: 0; }
#contact::before { clip-path: polygon(0 var(--ss-diag), 100% 0, 100% 100%, 0 100%); }
.ss-skew-dark::before {
  content: ""; position: absolute; left: 0; right: 0; top: 0; bottom: 0; z-index: 0;
  clip-path: polygon(0 var(--ss-diag), 100% 0, 100% calc(100% - var(--ss-diag)), 0 100%);
  background:
    radial-gradient(70% 80% at 100% 0%, rgba(255,49,49,.16), rgba(255,49,49,0) 55%),
    radial-gradient(rgba(255,255,255,.05) 1px, transparent 1px) 0 0 / 48px 48px,
    radial-gradient(120% 130% at 80% -10%, #1b1b1e 0%, #0c0c0d 45%, #000 100%);
  filter: drop-shadow(0 26px 46px rgba(10,10,10,.22));
}
.ss-skew-dark > * { position: relative; z-index: 1; }

/* light panel with a faint dotted pattern for rhythm */
.ss-panel { position: relative; background: rgba(255,255,255,.55); }
.ss-panel::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: radial-gradient(rgba(10,10,10,.045) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(90% 80% at 90% 10%, #000, transparent 70%);
          mask-image: radial-gradient(90% 80% at 90% 10%, #000, transparent 70%);
  opacity: .7;
}
.ss-panel > * { position: relative; z-index: 1; }

/* ============================================================
   Animations
   ============================================================ */
@keyframes ss-bounce { 0%, 80%, 100% { transform: translateY(0); opacity: .5; } 40% { transform: translateY(-5px); opacity: 1; } }
@keyframes ss-pop { from { opacity: 0; transform: translateY(6px) scale(.98); } to { opacity: 1; transform: none; } }
@keyframes ss-rise { from { transform: translateY(16px); } to { transform: translateY(0); } }
.reveal { animation: ss-rise .6s var(--ease-out) both; animation-delay: var(--reveal-delay, 0ms); }
@media (prefers-reduced-motion: reduce) { .reveal { animation: none !important; } }

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  font-family: var(--font-label); font-weight: 600; text-transform: uppercase;
  letter-spacing: .06em; border-radius: var(--r-sm);
  border: 2px solid transparent; cursor: pointer; display: inline-flex;
  align-items: center; justify-content: center; gap: 9px;
  transition: all var(--dur) var(--ease-out); text-decoration: none; white-space: nowrap;
  font-size: 14px; padding: 13px 22px;
}
.btn:active { transform: scale(.97); }
.btn-lg { font-size: 16px; padding: 16px 30px; }
.btn-sm { font-size: 13px; padding: 9px 16px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-hover); color: #fff; box-shadow: var(--shadow-red); }
.btn-full { width: 100%; }

/* lucide icons (rendered from <i data-lucide> placeholders) */
i[data-lucide] { display: inline-flex; line-height: 0; }
.lucide { display: inline-block; vertical-align: middle; flex-shrink: 0; }

/* ============================================================
   Shared text bits
   ============================================================ */
.eyebrow-row {
  font: var(--eyebrow); letter-spacing: var(--eyebrow-tracking); text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: 10px;
}
.eyebrow-row .bar { width: 24px; height: 2px; background: var(--accent); }

.sec-head { max-width: 720px; }
.sec-h2 {
  font-family: var(--font-display); font-weight: 800; font-size: clamp(32px,3.4vw,54px);
  line-height: 1.1; letter-spacing: -.01em; text-transform: uppercase; margin: 18px 0 0;
}
.sec-h2 em { font-style: italic; color: var(--accent); }
.sec-sub { font: var(--body-lg); color: var(--fg2); margin: 16px 0 0; }
.on-dark .sec-sub { color: var(--fg-on-dark-2); }

/* ============================================================
   Nav
   ============================================================ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255,255,255,0); border-bottom: 1px solid transparent;
  transition: all var(--dur) var(--ease-out);
}
#nav.scrolled {
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}
#nav .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; text-align: left; }
.nav-logo { display: flex; align-items: center; gap: 11px; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo .lw {
  font-family: var(--font-display); font-style: italic; font-weight: 900; text-transform: uppercase;
  font-size: 23px; letter-spacing: .005em; color: var(--fg1); transition: color var(--dur);
}
.nav-logo .ls {
  font-family: var(--font-label); font-weight: 600; text-transform: uppercase;
  font-size: 10.5px; letter-spacing: .34em; color: var(--accent); margin-top: 2px;
}
.nav-logo .stack { display: flex; flex-direction: column; line-height: .9; }
.desktop-nav { display: flex; align-items: center; gap: 30px; }
.desktop-nav a.nav-link {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: .12em;
  font-size: 13px; font-weight: 600; color: var(--fg1); transition: color var(--dur);
}
/* on the dark hero, before scroll */
#nav.on-dark:not(.scrolled):not(.open) .nav-logo .lw,
#nav.on-dark:not(.scrolled):not(.open) .desktop-nav a.nav-link,
#nav.on-dark:not(.scrolled):not(.open) .mobile-toggle .menu-btn { color: #fff; }

.lang-toggle {
  display: inline-flex; align-items: center; border: 1.5px solid var(--border-strong);
  border-radius: var(--r-pill); padding: 2px; font-family: var(--font-label);
  font-weight: 700; font-size: 12px; letter-spacing: .08em;
}
#nav.on-dark:not(.scrolled):not(.open) .lang-toggle { border-color: rgba(255,255,255,.28); }
.lang-toggle button {
  border: none; cursor: pointer; text-transform: uppercase; padding: 5px 11px;
  border-radius: var(--r-pill); background: transparent; color: var(--fg3);
  transition: all var(--dur); font-family: inherit; font-weight: inherit; letter-spacing: inherit;
}
#nav.on-dark:not(.scrolled):not(.open) .lang-toggle button { color: rgba(255,255,255,.6); }
.lang-toggle button.on { background: var(--accent); color: #fff !important; }

.mobile-toggle { display: none; align-items: center; gap: 14px; }
.mobile-toggle .menu-btn { background: none; border: none; cursor: pointer; color: var(--fg1); display: inline-flex; }
.mobile-menu { display: none; flex-direction: column; gap: 16px; padding-bottom: 20px; }
#nav.open .mobile-menu { display: flex; }
.mobile-menu a {
  font-family: var(--font-label); text-transform: uppercase; letter-spacing: .12em;
  font-size: 16px; font-weight: 600; color: var(--fg1);
}

/* ============================================================
   Hero
   ============================================================ */
#top { color: #fff; position: relative; overflow: hidden; }
.hero-inner { padding: clamp(96px,12vh,140px) 28px clamp(88px,11vh,124px); position: relative; }
.hero-circle {
  position: absolute; right: -160px; top: 50%; transform: translateY(-50%);
  width: 620px; height: 620px; border-radius: 50%; border: 2px solid rgba(255,255,255,.12); pointer-events: none;
}
.hero-streak {
  position: absolute; right: 90px; top: -80px; width: 2px; height: 320px;
  background: linear-gradient(var(--accent), transparent); transform: rotate(12deg); pointer-events: none;
}
.hero-gate { position: absolute; right: clamp(-40px, 6vw, 120px); top: 50%; transform: translateY(-50%); pointer-events: none; }
.hero-h1 {
  font-family: var(--font-display); font-weight: 900; text-transform: uppercase;
  letter-spacing: -.01em; line-height: 1.04; font-size: clamp(44px,6.4vw,96px);
  margin: 22px 0 0; max-width: 1000px;
}
.hero-h1 span { display: block; }
.hero-h1 em { font-style: italic; color: var(--accent); }
.hero-sub { font: var(--body-lg); color: var(--fg-on-dark-2); max-width: 560px; margin-top: 28px; }
.hero-cta { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: clamp(28px,5vw,56px); margin-top: clamp(56px,7vh,72px); flex-wrap: wrap; }
.hero-stat { border-left: 2px solid var(--accent); padding-left: 16px; }
.hero-stat .n {
  font-family: var(--font-display); font-weight: 900; font-style: italic; text-transform: uppercase;
  font-size: clamp(30px,3.4vw,42px); line-height: 1; white-space: nowrap;
}
.hero-stat .l { font: var(--caption); color: var(--fg-on-dark-2); text-transform: uppercase; letter-spacing: .1em; margin-top: 7px; }

/* ============================================================
   Funnel (pipeline variant)
   ============================================================ */
#systeem { padding: clamp(24px,3.5vh,40px) 0; }
.funnel-head { max-width: 760px; }
.funnel-head .sec-h2 { font-size: clamp(32px,3.4vw,54px); }
.funnel-head .sec-sub { margin: 18px 0 0; }
.ss-pipeline { margin-top: 52px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; align-items: stretch; }
.pipe-cell { display: flex; align-items: stretch; }
.pipe-inner { flex: 1; position: relative; padding: 4px 18px 4px 0; }
.pipe-icon {
  width: 52px; height: 52px; border-radius: var(--r-md); display: flex; align-items: center; justify-content: center;
  background: var(--black); color: #fff; margin-bottom: 18px;
}
.pipe-icon.accent { background: var(--accent); }
.pipe-num { font: var(--caption); color: var(--accent); font-weight: 700; letter-spacing: .14em; margin-bottom: 6px; }
.pipe-title { font-family: var(--font-display); text-transform: uppercase; font-weight: 800; font-size: 22px; margin: 0 0 8px; }
.pipe-desc { font: var(--body-sm); color: var(--fg2); margin: 0; }
.ss-pipe-arrow { position: absolute; top: 22px; right: 6px; color: var(--n-300); }
.funnel-flow {
  margin-top: 40px; display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font: var(--caption); color: var(--fg3); text-transform: uppercase; letter-spacing: .14em;
}
.funnel-flow .fl-label { font-weight: 700; color: var(--accent); }

/* ============================================================
   Services
   ============================================================ */
#diensten { padding: clamp(26px,3.5vh,42px) 0; }
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(290px,1fr)); gap: 18px; margin-top: 48px; }
.svc-card {
  background: #fff; color: var(--fg1); border: 2px solid var(--n-200); border-radius: var(--r-md);
  padding: 28px; height: 100%; transition: all var(--dur) var(--ease-out);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.svc-card.dark { background: var(--black); color: #fff; border-color: var(--black); }
.svc-card.dark:hover { border-color: var(--black); }
.svc-icon {
  width: 50px; height: 50px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; background: var(--red-soft); color: var(--accent);
}
.svc-card.dark .svc-icon { background: rgba(255,49,49,.18); }
.svc-card h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 800; font-size: 23px; margin: 0 0 10px; }
.svc-card p { font: var(--body-sm); color: var(--fg2); margin: 0; }
.svc-card.dark p { color: var(--fg-on-dark-2); }

/* ============================================================
   Problem (diagonal dark)
   ============================================================ */
.problem-head { max-width: 820px; }
.problem-head .sec-sub { max-width: 640px; }
.ss-compare { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 48px; }
.cmp-card { border-radius: var(--r-md); padding: 28px; height: 100%; }
.cmp-card.neg { border: 1px solid rgba(255,255,255,.14); }
.cmp-card.pos { border: 2px solid var(--accent); background: rgba(255,49,49,.06); }
.cmp-head {
  font: var(--eyebrow); letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.cmp-card.neg .cmp-head { color: var(--fg-on-dark-2); }
.cmp-card.pos .cmp-head { color: var(--accent); }
.cmp-list { display: flex; flex-direction: column; gap: 14px; }
.cmp-item { display: flex; gap: 12px; align-items: flex-start; font: var(--body); }
.cmp-card.neg .cmp-item { color: var(--fg-on-dark-2); }
.cmp-card.pos .cmp-item { color: #fff; }
.cmp-item .lucide { margin-top: 4px; flex-shrink: 0; }
.ss-speed {
  margin-top: 28px; display: grid; grid-template-columns: auto 1fr; gap: clamp(24px,4vw,48px);
  align-items: center; border-top: 1px solid rgba(255,255,255,.14); padding-top: 40px;
}
.speed-stat { text-align: center; }
.speed-stat .big { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: clamp(64px,9vw,120px); line-height: .9; color: var(--accent); }
.speed-stat .lbl { font: var(--caption); color: var(--fg-on-dark-2); text-transform: uppercase; letter-spacing: .12em; margin-top: 8px; max-width: 200px; margin-inline: auto; }
.ss-speed h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 800; font-size: clamp(24px,2.6vw,34px); margin: 0 0 12px; }
.ss-speed p { font: var(--body-lg); color: var(--fg-on-dark-2); margin: 0; max-width: 620px; }

/* ============================================================
   Booker demo (WhatsApp)
   ============================================================ */
.booker-sec { padding: clamp(24px,3.5vh,40px) 0; }
.ss-booker { display: grid; grid-template-columns: 1fr auto; gap: clamp(40px,6vw,80px); align-items: center; }
.booker-copy { max-width: 520px; }
.booker-feats { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 32px; }
.booker-feat { display: flex; align-items: center; gap: 12px; font: var(--body); color: var(--fg1); }
.booker-feat .ic {
  width: 34px; height: 34px; border-radius: var(--r-sm); background: var(--red-soft);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent);
}
.booker-right { justify-self: center; padding-bottom: 20px; }
.booker-stack { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.client-note {
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--border-strong);
  border-radius: var(--r-pill); padding: 7px 14px; font: var(--caption); color: var(--fg2);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
}
.client-note .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }

.phone { position: relative; width: 340px; max-width: 100%; }
.phone-shell { background: #0b141a; border-radius: 40px; padding: 12px; box-shadow: var(--shadow-lg); border: 1px solid var(--n-800); }
.phone-screen { border-radius: 30px; overflow: hidden; background: #0b141a; position: relative; }
.wa-header { background: #1f2c34; color: #fff; padding: 14px 16px; display: flex; align-items: center; gap: 12px; }
.wa-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg,#2bb673,#1f8a5b); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 900; font-style: italic; font-size: 18px; color: #fff; }
.wa-meta { flex: 1; min-width: 0; }
.wa-meta .name { font-family: var(--font-body); font-weight: 600; font-size: 15px; }
.wa-meta .status { font-size: 11.5px; color: #8aa0ab; }
.wa-body {
  height: 420px; overflow-y: auto; padding: 16px 14px; background: #0b141a;
  background-image: radial-gradient(rgba(255,255,255,.025) 1px, transparent 1px); background-size: 16px 16px;
  display: flex; flex-direction: column; gap: 8px;
}
.wa-msg { max-width: 82%; }
.wa-msg.ai { align-self: flex-start; }
.wa-msg.lead { align-self: flex-end; }
.wa-bubble {
  color: #e9edef; padding: 8px 11px; border-radius: 10px;
  font: var(--body-sm); line-height: 1.45; box-shadow: 0 1px 1px rgba(0,0,0,.2);
  animation: ss-pop .25s var(--ease-spring);
}
.wa-msg.ai .wa-bubble { background: #1f2c34; border-top-left-radius: 2px; }
.wa-msg.lead .wa-bubble { background: #005c4b; border-top-right-radius: 2px; }
.wa-tick { float: right; font-size: 10px; color: #9fd8c8; margin-left: 10px; margin-top: 6px; }
.wa-typing .wa-bubble { background: #1f2c34; border-top-left-radius: 2px; padding: 8px 12px; display: inline-block; }
.typing-dots { display: inline-flex; gap: 4px; align-items: center; padding: 2px; }
.typing-dots span { width: 7px; height: 7px; border-radius: 50%; background: var(--n-400); display: inline-block; animation: ss-bounce 1.1s infinite ease-in-out; }
.typing-dots span:nth-child(2) { animation-delay: .15s; }
.typing-dots span:nth-child(3) { animation-delay: .3s; }
.wa-booked { align-self: center; width: 100%; margin-top: 6px; animation: ss-pop .3s var(--ease-spring); }
.wa-booked-inner { background: rgba(255,49,49,.12); border: 1px solid var(--accent); border-radius: 10px; padding: 12px 14px; display: flex; gap: 12px; align-items: center; }
.wa-booked .ic { width: 38px; height: 38px; border-radius: var(--r-sm); background: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #fff; }
.wa-booked .t { color: #fff; font-weight: 600; font: var(--body-sm); }
.wa-booked .s { color: #9fd8c8; font-size: 12px; }
.wa-input { background: #1f2c34; padding: 10px 12px; display: flex; align-items: center; gap: 10px; }
.wa-input .field { flex: 1; background: #2a3942; border-radius: var(--r-pill); padding: 8px 14px; color: #8aa0ab; font-size: 13px; }
.wa-input .mic { width: 36px; height: 36px; border-radius: 50%; background: #00a884; display: flex; align-items: center; justify-content: center; color: #fff; }
.replay-btn {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  display: inline-flex; align-items: center; gap: 8px; background: #fff; border: 2px solid var(--black);
  border-radius: var(--r-pill); padding: 8px 16px; cursor: pointer; font-family: var(--font-label);
  font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--black);
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   Process (diagonal dark)
   ============================================================ */
.ss-process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; margin-top: 52px; border-top: 2px solid rgba(255,255,255,.22); }
.proc-cell { padding: 30px 26px 34px 0; }
.proc-cell.bl { padding-left: 26px; }
.proc-cell.br { border-right: 1px solid rgba(255,255,255,.1); }
.proc-num { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 58px; line-height: 1; color: var(--accent); margin-bottom: 16px; }
.proc-cell h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 800; font-size: 22px; margin: 0 0 8px; color: #fff; }
.proc-cell p { font: var(--body-sm); color: var(--fg-on-dark-2); margin: 0; max-width: 320px; }

/* ============================================================
   Cases
   ============================================================ */
#cases { padding: clamp(24px,3.5vh,40px) 0; }
.case-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 20px; margin-top: 48px; }
.case-card {
  background: #fff; border: 2px solid var(--n-200); border-radius: var(--r-md); overflow: hidden;
  height: 100%; display: flex; flex-direction: column; transition: all var(--dur) var(--ease-out);
}
.case-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.case-img {
  aspect-ratio: 16/10; background: linear-gradient(135deg, var(--n-100), var(--n-200));
  position: relative; display: flex; align-items: flex-end; overflow: hidden;
}
.case-img .case-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.case-img .dots { position: absolute; inset: 0; background-image: radial-gradient(rgba(10,10,10,.07) 1px, transparent 1px); background-size: 18px 18px; pointer-events: none; }
.case-img .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.45), rgba(0,0,0,0) 45%); pointer-events: none; }
.case-img .pill-wrap { position: relative; padding: 20px; pointer-events: none; }
.case-pill {
  display: inline-flex; align-items: center; gap: 8px; background: var(--accent); color: #fff;
  border-radius: var(--r-pill); padding: 5px 12px; font-family: var(--font-label); font-weight: 700;
  font-size: 11px; text-transform: uppercase; letter-spacing: .1em; box-shadow: var(--shadow-md);
}
.case-pill .big { font-family: var(--font-display); font-style: italic; font-size: 14px; }
.case-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.case-body h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 800; font-size: 23px; margin: 0 0 8px; }
.case-body .desc { font: var(--body-sm); color: var(--fg2); margin: 0 0 20px; flex: 1; }
.case-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-top: 1px solid var(--border); padding-top: 16px; }
.case-stat.first { padding-right: 12px; border-right: 1px solid var(--border); }
.case-stat.second { padding-left: 16px; }
.case-stat .n { font-family: var(--font-display); font-style: italic; font-weight: 900; font-size: 26px; line-height: 1; color: var(--black); }
.case-stat .l { font: var(--caption); color: var(--fg3); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; }
.case-disclaimer { font: var(--caption); color: var(--fg3); margin-top: 24px; max-width: 760px; }

/* ============================================================
   Team (diagonal dark)
   ============================================================ */
.ss-team { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.ss-team-card {
  display: grid; grid-template-columns: 160px 1fr; gap: 24px; align-items: center;
  border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.03); border-radius: var(--r-md); padding: 22px;
}
.team-photo {
  width: 100%; aspect-ratio: 1; border-radius: 10px; background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
  border: 1px dashed rgba(255,255,255,.18); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45); overflow: hidden;
}
.team-photo.has-img { border: none; background: none; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.team-role { font: var(--caption); color: var(--accent); text-transform: uppercase; letter-spacing: .12em; font-weight: 700; margin-bottom: 8px; }
.ss-team-card h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 800; font-size: 30px; margin: 0 0 10px; color: #fff; }
.ss-team-card p { font: var(--body-sm); color: var(--fg-on-dark-2); margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-sec { padding: clamp(24px,3.5vh,40px) 0; }
.ss-faq { display: grid; grid-template-columns: 360px 1fr; gap: clamp(32px,5vw,72px); align-items: start; }
.faq-list { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  font-family: var(--font-display); text-transform: uppercase; font-weight: 800; font-size: clamp(18px,2vw,23px); color: var(--fg1);
}
.faq-q .plus { flex-shrink: 0; color: var(--accent); transition: transform var(--dur); display: inline-flex; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-out); }
.faq-item.open .faq-a { max-height: 760px; }
.faq-a p { font: var(--body); color: var(--fg2); margin: 0 0 22px; max-width: 640px; white-space: pre-line; }

/* ============================================================
   Contact (diagonal dark)
   ============================================================ */
.ss-contact { display: block; position: relative; text-align: center; }
.ss-contact .contact-head { max-width: 720px; margin-inline: auto; }
.ss-contact .contact-actions { justify-content: center; }
.ss-contact .contact-points { align-items: center; }
.ss-contact .contact-point { justify-content: center; }
.contact-head .sec-sub { max-width: 480px; margin-inline: auto; }
.contact-points { display: flex; flex-direction: column; gap: 14px; margin: 28px 0 32px; }
.contact-point { display: flex; align-items: center; gap: 12px; font: var(--body); color: #fff; }
.contact-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.contact-mail {
  display: inline-flex; align-items: center; gap: 8px; color: var(--fg-on-dark-2); font-family: var(--font-label);
  text-transform: uppercase; letter-spacing: .08em; font-size: 13px; font-weight: 600;
}
.contact-card { background: #fff; color: var(--fg1); border-radius: var(--r-lg); padding: 28px; box-shadow: var(--shadow-lg); }
.contact-card h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 800; font-size: 24px; margin: 0 0 4px; }
.contact-card .card-sub { font: var(--body-sm); color: var(--fg2); margin: 0 0 22px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: block; font-family: var(--font-label); text-transform: uppercase; letter-spacing: .1em; font-size: 11px; font-weight: 600; color: var(--fg2); margin-bottom: 7px; }
.contact-form input, .contact-form textarea {
  width: 100%; font: var(--body); padding: 12px 14px; border: 1.5px solid var(--border-strong);
  border-radius: var(--r-sm); outline: none; transition: all var(--dur); resize: vertical; font-family: var(--font-body);
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px var(--focus-ring); }
.contact-sent { text-align: center; padding: 40px 10px; }
.contact-sent h3 { font-family: var(--font-display); text-transform: uppercase; font-weight: 800; font-size: 26px; margin: 16px 0 6px; }
.contact-sent p { font: var(--body-sm); color: var(--fg2); margin: 0; }

/* ============================================================
   Footer
   ============================================================ */
footer.site-footer { background: #000; color: #fff; padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 40px; }
.footer-grid img { height: 92px; margin-left: -8px; }
.footer-tag { font: var(--body-sm); color: var(--fg-on-dark-2); max-width: 260px; margin-top: 8px; }
.footer-col .h { font: var(--eyebrow); letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.footer-col .links { display: flex; flex-direction: column; gap: 11px; }
.footer-col .links a { font: var(--body-sm); color: var(--fg-on-dark-2); }
.footer-contact a, .footer-contact span { font: var(--body-sm); display: flex; align-items: center; gap: 8px; }
.footer-contact a { color: #fff; }
.footer-contact span { color: var(--fg-on-dark-2); }
.footer-socials { display: flex; gap: 12px; margin-top: 6px; }
.footer-socials a { width: 38px; height: 38px; border-radius: var(--r-sm); border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 48px; padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.footer-bottom span { font: var(--caption); color: var(--fg-on-dark-2); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1000px) {
  .desktop-nav { display: none !important; }
  .mobile-toggle { display: flex !important; }
  .ss-pipeline { grid-template-columns: 1fr 1fr !important; gap: 8px 24px !important; }
  .ss-pipe-arrow { display: none !important; }
  .ss-team { grid-template-columns: 1fr !important; }
}
@media (max-width: 860px) {
  .ss-skew-dark { --ss-diag: 44px; }
  .ss-booker { grid-template-columns: 1fr !important; justify-items: start; }
  .ss-contact { grid-template-columns: 1fr !important; }
  .ss-faq { grid-template-columns: 1fr !important; }
  .ss-process-grid { grid-template-columns: 1fr 1fr !important; }
  .ss-compare { grid-template-columns: 1fr !important; }
  .ss-speed { grid-template-columns: 1fr !important; text-align: left; gap: 24px !important; }
  .speed-stat { text-align: left !important; }
  .hero-gate { opacity: .4; }
  .ss-track-desc { display: none; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .ss-pipeline { grid-template-columns: 1fr !important; }
  .ss-process-grid { grid-template-columns: 1fr !important; }
  .ss-team-card { grid-template-columns: 110px 1fr !important; }
}
