/*
Theme Name:  Digital Forms
Theme URI:   https://digitalforms.io
Description: Digital Forms — custom theme based on the External CDO LP design system.
Author:      Digital Forms
Version:     1.0.0
Text Domain: digitalforms
*/

/* ─────────────────────────────────────────────────────────────────────────
   Digital Forms — Complete Stylesheet
   Merged: style.css + df-theme.css
   WordPress loads this file automatically as the theme stylesheet.
──────────────────────────────────────────────────────────────────────────── */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,700&display=swap');

/* ─── Design tokens ─────────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --purple:   #410270;
  --purple2:  #5A0A94;
  --purple3:  #2D0150;
  --teal:     #00A880;
  --teal2:    #00C99A;
  --red:      #D92D55;

  /* Backgrounds */
  --bg:       #FFFFFF;
  --bg2:      #F9F6FB;
  --bg3:      #F2EAF8;

  /* Text */
  --text-h:     #2D0150;
  --text-body:  #5A3A7A;
  --text-muted: #8A7A9A;

  /* UI */
  --border:     #DDD0EE;
  --card-bg:    #FFFFFF;

  /* Spacing */
  --section-pad: 96px 40px;
  --container:   1100px;
  --radius:      12px;
  --radius-sm:   8px;

  /* Typography */
  --font:    'Mulish', sans-serif;
  --fw-body: 500;
  --fw-bold: 700;
  --fw-xbold:900;

  /* Shadows */
  --shadow:    0 4px 24px rgba(65,2,112,.08);
  --shadow-lg: 0 8px 40px rgba(65,2,112,.14);
}

/* ─── Reset & base ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

/* When WP admin bar is visible it adds html { margin-top: 32px }
   which pushes content down and reveals a gap under our fixed nav.
   Compensate by shifting the nav down to match. */
.admin-bar #df-nav { top: 32px; }

body {
  font-family: var(--font);
  font-weight: var(--fw-body);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── Container ──────────────────────────────────────────────────────────── */
.df-container {
  max-width: var(--container);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── Typography ─────────────────────────────────────────────────────────── */
.df-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--teal2);
  margin-bottom: 16px;
}
.df-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--teal2);
  flex-shrink: 0;
}

.df-h1 { font-size: clamp(32px,5vw,60px); font-weight: var(--fw-xbold); letter-spacing: -.03em; line-height: 1.07; color: var(--bg); }
.df-h2 { font-size: clamp(26px,3.5vw,42px); font-weight: var(--fw-xbold); letter-spacing: -.025em; line-height: 1.1; color: var(--text-h); }
.df-h3 { font-size: clamp(18px,2vw,22px); font-weight: 800; color: var(--text-h); line-height: 1.25; }
.df-h2.on-dark, .df-h3.on-dark { color: var(--bg); }
.df-teal { color: var(--teal2); }

/* ─── Buttons ─────────────────────────────────────────────────────────────── */
.df-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: filter .2s, transform .15s;
  border: none;
}
.df-btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.df-btn-primary   { background: var(--teal); color: #fff; }
.df-btn-ghost     { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.35); }
.df-btn-ghost:hover { border-color: rgba(255,255,255,.7); }
.df-btn-outline   { background: transparent; color: var(--purple2); border: 1.5px solid var(--purple2); }

/* ─── Cards ──────────────────────────────────────────────────────────────── */
.df-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.df-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.df-card-accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--purple2), var(--teal));
}

/* ─── Section backgrounds ────────────────────────────────────────────────── */
.df-section        { padding: var(--section-pad); }
.df-section-dark   { background: var(--purple3); }
.df-section-light  { background: var(--bg2); }
.df-section-mid    { background: var(--bg3); }
.df-section-white  { background: var(--bg); }

/* =============================================================================
   DIGITAL FORMS — Global Design System
   Matches the External CDO landing page design language exactly.
   Drop into your theme's style.css or enqueue via functions.php
   ============================================================================= */

/* ── Google Fonts ─────────────────────────────────────────────────────────── */


/* ── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  /* Brand colours */
  --df-purple:       #410270;
  --df-purple2:      #5a0a94;
  --df-purple3:      #2d0150;
  --df-teal:         #00A880;
  --df-teal2:        #00C99A;
  --df-red:          #D92D55;

  /* Backgrounds */
  --df-bg:           #FFFFFF;
  --df-bg2:          #f9f6fb;
  --df-bg3:          #f2eaf8;
  --df-bg-dark:      #2d0150;
  --df-bg-card:      #FFFFFF;
  --df-bg-card-dark: #3d0268;

  /* Text */
  --df-text:         #2d0150;
  --df-text-body:    #5a3a7a;
  --df-text-muted:   #8a7a9a;
  --df-text-light:   rgba(255,255,255,0.55);

  /* Typography */
  --df-font:         'Mulish', sans-serif;

  /* Spacing */
  --df-section-py:   96px;
  --df-container:    1100px;
  --df-radius:       12px;
  --df-radius-sm:    8px;

  /* Shadows */
  --df-shadow:       0 4px 24px rgba(65,2,112,0.10);
  --df-shadow-lg:    0 8px 48px rgba(65,2,112,0.16);
}

/* ── Reset & Base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: var(--df-font);
  font-size: 16px;
  line-height: 1.7;
  color: var(--df-text-body);
  background: var(--df-bg);
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--df-teal); text-decoration: none; }
a:hover { color: var(--df-teal2); }

/* Teal buttons — pin text white regardless of global anchor colour */
a.btn-p, button.btn-p { color: #fff; }
a.btn-p:hover, button.btn-p:hover { color: #fff; }
a.btn-primary, button.btn-primary { color: #fff; }
a.btn-primary:hover, button.btn-primary:hover { color: #fff; }

/* ── Layout Utilities ─────────────────────────────────────────────────────── */
.df-container {
  max-width: var(--df-container);
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.df-section {
  padding: var(--df-section-py) 40px;
  position: relative;
  overflow: hidden;
}

.df-section--dark { background: var(--df-bg-dark); }
.df-section--bg2  { background: var(--df-bg2); }
.df-section--bg3  { background: var(--df-bg3); }

/* ── Typography ───────────────────────────────────────────────────────────── */
.df-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 18px;
}
.df-eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--df-teal2);
}

.df-h1 {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--df-text);
  margin: 0 0 24px;
}

.df-h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--df-text);
  margin: 0 0 16px;
}

.df-h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--df-text);
  margin: 0 0 12px;
}

/* On dark backgrounds */
.df-section--dark .df-eyebrow { color: var(--df-teal2); }
.df-section--dark .df-h1,
.df-section--dark .df-h2,
.df-section--dark .df-h3 { color: #fff; }
.df-section--dark p { color: var(--df-text-light); }

.df-accent { color: var(--df-teal2); }
.df-lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--df-text-body);
  margin-bottom: 32px;
}
.df-section--dark .df-lead { color: rgba(255,255,255,0.6); }

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.df-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--df-radius-sm);
  font-family: var(--df-font);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.df-btn--primary {
  background: var(--df-teal);
  color: #fff;
}
.df-btn--primary:hover {
  background: var(--df-teal2);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,168,128,0.35);
}

.df-btn--outline {
  background: transparent;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.25);
}
.df-btn--outline:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
}

.df-btn--outline-dark {
  background: transparent;
  color: var(--df-purple2);
  border: 1px solid var(--df-purple2);
}
.df-btn--outline-dark:hover {
  background: var(--df-purple2);
  color: #fff;
}

/* ── Cards ────────────────────────────────────────────────────────────────── */
.df-card {
  background: var(--df-bg-card);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.df-card:hover {
  box-shadow: var(--df-shadow-lg);
  transform: translateY(-2px);
}

.df-card--accented::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--df-purple2), var(--df-teal));
}

.df-card--dark {
  background: var(--df-bg-card-dark);
  border-color: rgba(90,10,148,0.5);
}

/* Number labels on cards */
.df-card__number {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--df-text-muted);
  margin-bottom: 12px;
}

/* ── Navigation ───────────────────────────────────────────────────────────── */
#df-progress {
  position: absolute;
  bottom: 0; left: 0;
  height: 3px; width: 0%;
  background: linear-gradient(90deg, #00A880, #5a0a94);
  transition: width .1s linear;
  pointer-events: none;
}
#df-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(45,1,80,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(90,10,148,0.35);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#df-nav.df-nav--scrolled {
  background: rgba(30,0,56,0.99);
  box-shadow: 0 4px 32px rgba(0,0,0,0.35);
}

.df-nav__inner {
  max-width: var(--df-container);
  margin: 0 auto;
  padding: 0 40px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 0;
}

/* Logo */
.df-nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 32px;
}
.df-nav__logo-mark {
  width: 32px;
  height: 32px;
  background: var(--df-purple2);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.df-nav__logo-text {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

/* Desktop links wrapper */
.df-nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
}

/* Generic nav link */
.df-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  border-radius: 7px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
  line-height: 1;
}
.df-nav__link:hover,
.df-nav__link--active {
  color: #fff;
  background: rgba(255,255,255,0.09);
}

/* Mega trigger + chevron */
.df-nav__trigger { padding-right: 10px; }
.df-nav__chevron {
  width: 14px; height: 14px;
  flex-shrink: 0;
  transition: transform 0.22s ease;
}
.df-nav__item--mega.is-open .df-nav__chevron { transform: rotate(180deg); }

/* ── Mega-menu container ────────────────────────────────────────────────── */
.df-nav__item--mega { position: relative; }

.df-nav__mega {
  position: absolute;
  top: calc(100% + 10px);
  left: -20px;
  width: 720px;
  background: #1a0034;
  border: 1px solid rgba(90,10,148,0.45);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.04) inset;
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
  overflow: hidden;
}
.df-nav__item--mega.is-open .df-nav__mega {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* ── Mega inner layout ──────────────────────────────────────────────────── */
.df-mega__inner {
  display: grid;
  grid-template-columns: 220px 1fr;
}

/* Featured card (left) */
.df-mega__featured {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px 20px 24px 24px;
  background: linear-gradient(145deg, #2d0150 0%, #1a0034 100%);
  border-right: 1px solid rgba(90,10,148,0.3);
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.df-mega__featured:hover { background: linear-gradient(145deg, #3a0168 0%, #210040 100%); }

.df-mega__feat-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 140px; height: 140px;
  background: radial-gradient(circle, rgba(0,168,128,0.25) 0%, transparent 70%);
  pointer-events: none;
}
.df-mega__feat-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--df-teal2);
  background: rgba(0,168,128,0.12);
  border: 1px solid rgba(0,168,128,0.25);
  border-radius: 20px;
  padding: 3px 9px;
  width: fit-content;
}
.df-mega__feat-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
  color: #fff;
}
.df-mega__feat-title span { color: var(--df-teal2); }
.df-mega__feat-lead {
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.62);
  line-height: 1.55;
  margin: 0;
}
.df-mega__feat-checks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.df-mega__feat-checks li {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.78);
  padding-left: 16px;
  position: relative;
}
.df-mega__feat-checks li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--df-teal);
}
.df-mega__feat-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--df-teal2);
  margin-top: auto;
  padding-top: 6px;
}

/* Right grid */
.df-mega__right {
  padding: 20px 20px 16px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.df-mega__grid-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.df-mega__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.df-mega__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.15s;
}
.df-mega__item:hover { background: rgba(255,255,255,0.06); }
.df-mega__item-icon {
  width: 30px; height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(90,10,148,0.25);
  border-radius: 7px;
  color: var(--df-teal2);
  margin-top: 1px;
}
.df-mega__item-title {
  font-size: 12.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  line-height: 1.3;
}
.df-mega__item-desc {
  font-size: 11px;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
  margin-top: 2px;
}
.df-mega__all {
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.df-mega__all a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  color: var(--df-teal2);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.15s;
}
.df-mega__all a:hover { opacity: 1; }

/* CTA button */
.df-nav__right { margin-left: auto; flex-shrink: 0; }

.df-nav__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  font-size: 12.5px;
  font-weight: 800;
  background: var(--df-teal);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
  letter-spacing: 0.01em;
  transition: background 0.15s, transform 0.15s;
}
.df-nav__cta-btn:hover {
  background: var(--df-teal2);
  transform: translateY(-1px);
}
.df-nav__cta-btn--full { width: 100%; justify-content: center; }

/* Hamburger */
.df-nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px 4px;
  margin-left: 12px;
  flex-shrink: 0;
}
.df-nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.22s ease;
}

/* ── Mobile Drawer ───────────────────────────────────────────────────────── */
.df-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
}
.df-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
  opacity: 0;
  transition: opacity 0.32s ease;
}
.df-drawer__panel {
  position: absolute;
  top: 0; right: 0;
  width: min(360px, 100vw);
  height: 100%;
  background: #1a0034;
  border-left: 1px solid rgba(90,10,148,0.4);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.df-drawer.is-open .df-drawer__overlay { opacity: 1; }
.df-drawer.is-open .df-drawer__panel   { transform: translateX(0); }

.df-drawer__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 68px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}
.df-drawer__close {
  background: rgba(255,255,255,0.07);
  border: none;
  border-radius: 8px;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgba(255,255,255,0.7);
  transition: background 0.15s, color 0.15s;
}
.df-drawer__close:hover { background: rgba(255,255,255,0.14); color: #fff; }

.df-drawer__nav {
  flex: 1;
  padding: 12px 16px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Accordion */
.df-drawer__acc { display: flex; flex-direction: column; }
.df-drawer__acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 13px 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  background: none;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.df-drawer__acc-trigger:hover,
.df-drawer__acc-trigger.is-open { background: rgba(255,255,255,0.07); color: #fff; }
.df-drawer__acc-chevron { flex-shrink: 0; transition: transform 0.22s ease; }
.df-drawer__acc-trigger.is-open .df-drawer__acc-chevron { transform: rotate(180deg); }

.df-drawer__acc-panel {
  padding: 4px 8px 8px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Sub-links */
.df-drawer__sub {
  display: block;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.df-drawer__sub:hover { background: rgba(255,255,255,0.07); color: #fff; }
.df-drawer__sub--featured {
  background: linear-gradient(135deg, rgba(45,1,80,0.7) 0%, rgba(0,168,128,0.1) 100%);
  border: 1px solid rgba(0,168,128,0.2);
  color: rgba(255,255,255,0.88);
  font-weight: 700;
  margin-bottom: 4px;
}
.df-drawer__sub--featured:hover {
  background: linear-gradient(135deg, rgba(58,1,104,0.8) 0%, rgba(0,168,128,0.15) 100%);
  color: #fff;
}
.df-drawer__sub-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--df-teal2);
  display: block;
  margin-bottom: 3px;
}

/* Top-level drawer links */
.df-drawer__link {
  display: block;
  padding: 13px 12px;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  border-radius: 9px;
  transition: background 0.15s, color 0.15s;
}
.df-drawer__link:hover { background: rgba(255,255,255,0.07); color: #fff; }

/* Drawer footer */
.df-drawer__footer {
  padding: 16px 20px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.df-drawer__note {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255,255,255,0.38);
  text-align: center;
  margin: 0;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.df-hero {
  background: var(--df-bg-dark);
  padding: 140px 40px 100px;
  position: relative;
  overflow: hidden;
}

/* Grid texture */
.df-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Teal glow */
.df-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at bottom left, rgba(0,168,128,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.df-hero__inner {
  max-width: var(--df-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  z-index: 1;
}

.df-hero__h1 {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 20px;
}
.df-hero__h1 span { color: var(--df-teal2); }

.df-hero__lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  margin: 0 0 36px;
}

.df-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.df-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(90,10,148,0.4);
  border: 1px solid rgba(90,10,148,0.4);
  border-radius: var(--df-radius);
  overflow: hidden;
  margin-top: 40px;
}

.df-hero__stat {
  background: rgba(45,1,80,0.8);
  padding: 22px 20px;
  text-align: center;
}
.df-hero__stat-value {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.df-hero__stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--df-teal2);
}

/* Right panel — CTO/CDO comparison card */
.df-hero__panel {
  background: rgba(30,0,56,0.85);
  border: 1px solid rgba(90,10,148,0.5);
  border-radius: var(--df-radius);
  border-top: 3px solid var(--df-teal);
  padding: 28px;
  backdrop-filter: blur(8px);
}
.df-hero__panel-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 14px;
}
.df-hero__panel-title {
  font-size: 17px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 20px;
}

.df-hero__panel-row {
  background: rgba(45,1,80,0.8);
  border: 1px solid rgba(90,10,148,0.4);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 10px;
}
.df-hero__panel-row:last-child { margin-bottom: 0; }
.df-hero__panel-row-label {
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 6px;
}
.df-hero__panel-row p {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin: 0;
  line-height: 1.5;
}

/* ── Marquee ticker ───────────────────────────────────────────────────────── */
.df-marquee {
  background: var(--df-purple2);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.df-marquee__track {
  display: inline-flex;
  gap: 40px;
  animation: df-marquee 28s linear infinite;
}
.df-marquee__track:hover { animation-play-state: paused; }
.df-marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.df-marquee__item::after {
  content: '·';
  color: var(--df-teal2);
  font-size: 18px;
  line-height: 1;
}
@keyframes df-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Problem Section ──────────────────────────────────────────────────────── */
.df-problems__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.df-problem-card {
  background: var(--df-bg-card);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius);
  border-top: 3px solid var(--df-purple2);
  padding: 28px 22px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.df-problem-card:hover {
  box-shadow: var(--df-shadow-lg);
  transform: translateY(-3px);
}
.df-problem-card--red    { border-top-color: var(--df-red); }
.df-problem-card--orange { border-top-color: #FF9900; }
.df-problem-card--purple { border-top-color: var(--df-purple2); }
.df-problem-card--teal   { border-top-color: var(--df-teal); }
.df-problem-card--blue   { border-top-color: #0EA5E9; }

.df-problem-card__num {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--df-text-muted);
  margin-bottom: 14px;
}
.df-problem-card__icon {
  width: 44px;
  height: 44px;
  background: var(--df-bg3);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 16px;
}
.df-problem-card__title {
  font-size: 16px;
  font-weight: 800;
  color: var(--df-text);
  line-height: 1.25;
  margin-bottom: 12px;
}
.df-problem-card__body {
  font-size: 13px;
  line-height: 1.7;
  color: var(--df-text-body);
}

/* Cause chain */
.df-chain {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
  padding: 16px 20px;
  background: rgba(90,10,148,0.06);
  border-radius: var(--df-radius-sm);
}
.df-chain__item {
  font-size: 11px;
  font-weight: 700;
  color: var(--df-text-body);
}
.df-chain__item--red   { color: var(--df-red); }
.df-chain__item--end   { color: var(--df-purple2); }
.df-chain__arrow       { color: var(--df-text-muted); font-size: 12px; }

/* ── Services Grid ────────────────────────────────────────────────────────── */
.df-services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.df-service-card {
  background: var(--df-bg-card);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.df-service-card:hover {
  box-shadow: var(--df-shadow-lg);
  transform: translateY(-3px);
}
.df-service-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.df-service-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.df-service-card__title {
  font-size: 18px;
  font-weight: 800;
  color: var(--df-text);
  margin-bottom: 10px;
}
.df-service-card__excerpt {
  font-size: 14px;
  color: var(--df-text-body);
  line-height: 1.65;
  flex: 1;
}
.df-service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--df-teal);
}
.df-service-card__link::after { content: '→'; }

/* ── Stats Strip ──────────────────────────────────────────────────────────── */
.df-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(90,10,148,0.15);
  border-radius: var(--df-radius);
  overflow: hidden;
}
.df-stat {
  background: var(--df-bg);
  padding: 36px 28px;
  text-align: center;
}
.df-section--dark .df-stat { background: rgba(45,1,80,0.8); }
.df-stat__value {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--df-text);
  line-height: 1;
  margin-bottom: 8px;
}
.df-section--dark .df-stat__value { color: #fff; }
.df-stat__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--df-teal);
}

/* ── Trust / Clients bar ──────────────────────────────────────────────────── */
.df-clients-bar {
  background: var(--df-purple3);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 40px 40px;
}
.df-clients-bar__label {
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin: 0 0 32px;
}
.df-clients-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px 52px;
  max-width: 1100px;
  margin: 0 auto;
}
.df-clients-bar__item {
  display: flex;
  align-items: center;
  justify-content: center;
}
.df-clients-bar__item img {
  height: 32px;
  width: auto;
  opacity: 0.45;
  filter: brightness(0) invert(1);
  transition: opacity .2s;
}
.df-clients-bar__item img:hover { opacity: 0.75; }
@media (max-width: 640px) {
  .df-clients-bar { padding: 32px 24px; }
  .df-clients-bar__logos { gap: 20px 36px; }
  .df-clients-bar__item img { height: 24px; }
}

/* ── Process Steps ────────────────────────────────────────────────────────── */
.df-process__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.df-process-card {
  background: var(--df-bg-card);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius);
  padding: 28px 24px;
  position: relative;
}
.df-process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--df-radius) var(--df-radius) 0 0;
}
.df-process-card:nth-child(1)::before,
.df-process-card:nth-child(2)::before { background: var(--df-purple2); }
.df-process-card:nth-child(3)::before,
.df-process-card:nth-child(4)::before { background: var(--df-teal); }

.df-process-card__num {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  color: var(--df-text-muted);
  margin-bottom: 14px;
}
.df-process-card__icon {
  width: 44px;
  height: 44px;
  background: var(--df-bg3);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.df-process-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--df-text);
  margin-bottom: 10px;
}
.df-process-card__body {
  font-size: 13px;
  color: var(--df-text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.df-process-card__tag {
  font-size: 10px;
  font-weight: 700;
  color: var(--df-teal);
  letter-spacing: 0.06em;
}
.df-process-card__tag::before { content: '→  '; }

/* ── Case Study preview ───────────────────────────────────────────────────── */
.df-case {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: var(--df-container);
  margin: 0 auto;
}

.df-case__label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 14px;
}
.df-case__title {
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
}
.df-case__body {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 28px;
}

.df-case__metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.df-case__metric {
  background: rgba(45,1,80,0.8);
  border: 1px solid rgba(90,10,148,0.4);
  border-radius: 10px;
  padding: 20px 18px;
}
.df-case__metric-value {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.df-case__metric-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

/* ── Case Studies Carousel ────────────────────────────────────────────────── */
.df-cs-carousel-section { padding-bottom: 0 !important; overflow: hidden; }

.df-cs-carousel-hd { padding: var(--df-section-pad) var(--df-section-pad) 36px; }
.df-cs-carousel-hd__inner { max-width: var(--df-container); margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }

.df-cs-carousel-hd__nav { display: flex; gap: 8px; flex-shrink: 0; padding-bottom: 4px; }
.df-cs-carousel-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.7); cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s, border-color .15s;
}
.df-cs-carousel-btn:hover { background: var(--df-teal); border-color: var(--df-teal); color: #fff; }
.df-cs-carousel-btn:disabled { opacity: .3; cursor: default; }

/* Scrollable track */
.df-cs-carousel-wrap {
  overflow-x: auto; overflow-y: visible;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;
}
.df-cs-carousel-wrap::-webkit-scrollbar { display: none; }
.df-cs-carousel-track {
  display: flex; gap: 20px;
  padding: 0 max(40px, calc((100vw - var(--df-container)) / 2 + 40px)) 48px;
  width: max-content;
}

/* Cards */
.df-cs-carousel-card {
  flex: 0 0 clamp(280px, 38vw, 480px);
  min-height: 400px;
  border-radius: 14px; overflow: hidden;
  background-color: var(--df-purple3); background-size: cover; background-position: center;
  display: flex; flex-direction: column; justify-content: flex-end;
  position: relative; text-decoration: none;
  transition: transform .25s, box-shadow .25s;
}
.df-cs-carousel-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.4); }

.df-cs-carousel-card__accent { position: absolute; top: 0; left: 0; right: 0; height: 4px; z-index: 3; }
.df-cs-carousel-card__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(20,5,40,.05) 0%, rgba(20,5,40,.6) 40%, rgba(20,5,40,.95) 100%);
}
.df-cs-carousel-card__body { position: relative; z-index: 2; padding: 28px; }

.df-cs-carousel-card__industry {
  font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: var(--df-teal2); margin-bottom: 10px;
}
.df-cs-carousel-card__title {
  font-size: 19px; font-weight: 900; color: #fff; line-height: 1.2; margin-bottom: 10px;
}
.df-cs-carousel-card__excerpt {
  font-size: 13px; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 18px;
}

.df-cs-carousel-card__metrics { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.df-cs-carousel-card__metric {
  background: rgba(255,255,255,.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18); border-radius: 8px; padding: 9px 13px;
}
.df-cs-carousel-card__metric-val { font-size: 18px; font-weight: 900; color: #fff; line-height: 1; }
.df-cs-carousel-card__metric-label { font-size: 9px; font-weight: 700; color: rgba(255,255,255,.5); margin-top: 3px; }

.df-cs-carousel-card__cta {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .06em;
  color: var(--df-teal2); transition: letter-spacing .15s;
}
.df-cs-carousel-card:hover .df-cs-carousel-card__cta { letter-spacing: .1em; }

/* Footer row */
.df-cs-carousel-footer {
  max-width: var(--df-container); margin: 0 auto;
  padding: 0 40px 64px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.df-cs-carousel-dots { display: flex; gap: 6px; }
.df-cs-carousel-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,.2); transition: background .2s, width .2s;
  cursor: pointer;
}
.df-cs-carousel-dot--active { background: var(--df-teal2); width: 20px; border-radius: 3px; }

/* ghost-light btn variant */
.df-btn--ghost-light {
  background: transparent; border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.7); padding: 11px 24px; border-radius: 6px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
  display: inline-block;
}
.df-btn--ghost-light:hover { border-color: var(--df-teal2); color: var(--df-teal2); background: rgba(0,200,154,.06); }

/* ── Team ─────────────────────────────────────────────────────────────────── */
.df-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  max-width: var(--df-container);
  margin: 0 auto;
}

.df-team__photo-wrap {
  position: relative;
  border-radius: var(--df-radius);
  overflow: hidden;
  box-shadow: var(--df-shadow-lg);
}
.df-team__photo-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.df-team__badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(20,0,40,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.df-team__badge-text {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.75);
}
.df-team__badge-tag {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--df-teal2);
}

.df-team__cards { display: flex; flex-direction: column; gap: 16px; }

.df-team-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.df-team-card:hover { background: rgba(255,255,255,0.08); }
.df-team-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
}
.df-team-card:nth-child(1)::before {
  background: linear-gradient(90deg, var(--df-purple2), var(--df-teal));
}
.df-team-card:nth-child(2)::before {
  background: linear-gradient(90deg, var(--df-teal), var(--df-teal2));
}
.df-team-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  color: rgba(255,255,255,0.6);
}
.df-team-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.df-team-card__name {
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 2px;
}
.df-team-card__role {
  font-size: 11px;
  font-weight: 700;
  color: var(--df-teal2);
  letter-spacing: 0.04em;
}
.df-team-card__dept {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  margin-bottom: 10px;
}
.df-team-card__bio {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}
.df-team-card__bio strong { color: rgba(255,255,255,0.8); font-weight: 700; }
.df-team-card__email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--df-teal2);
  text-decoration: none;
}
.df-team-card__email:hover { color: #fff; }

/* ── Blog preview ─────────────────────────────────────────────────────────── */
.df-blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.df-post-card {
  background: var(--df-bg-card);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
}
.df-post-card:hover {
  box-shadow: var(--df-shadow-lg);
  transform: translateY(-3px);
}
.df-post-card__thumb {
  aspect-ratio: 16/9;
  overflow: hidden;
}
.df-post-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.df-post-card:hover .df-post-card__thumb img { transform: scale(1.04); }
.df-post-card__body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.df-post-card__cat {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--df-teal);
  margin-bottom: 10px;
}
.df-post-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--df-text);
  line-height: 1.3;
  margin-bottom: 10px;
  flex: 1;
}
.df-post-card__excerpt {
  font-size: 13px;
  color: var(--df-text-body);
  line-height: 1.65;
  margin-bottom: 16px;
}
.df-post-card__meta {
  font-size: 11px;
  color: var(--df-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.df-post-card__meta::before {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(90,10,148,0.1);
}

/* ── CTA Section ──────────────────────────────────────────────────────────── */
.df-cta__inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.df-cta__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}
.df-cta__note {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}

/* ── Footer ───────────────────────────────────────────────────────────────── */
.df-footer {
  background: var(--df-purple3);
  padding: 64px 40px 32px;
  border-top: 1px solid rgba(90,10,148,0.5);
}
.df-footer__grid {
  max-width: var(--df-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.df-footer__brand-name {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 14px 0 10px;
}
.df-footer__brand-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.df-footer__col-title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.df-footer__col ul { list-style: none; margin: 0; padding: 0; }
.df-footer__col ul li { margin-bottom: 10px; }
.df-footer__col ul a {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.df-footer__col ul a:hover { color: var(--df-teal2); }
.df-footer__bottom {
  max-width: var(--df-container);
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .df-problems__grid { grid-template-columns: repeat(3, 1fr); }
  .df-services__grid { grid-template-columns: repeat(2, 1fr); }
  .df-process__grid  { grid-template-columns: repeat(2, 1fr); }
  .df-stats          { grid-template-columns: repeat(2, 1fr); }
  .df-footer__grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --df-section-py: 64px;
  }
  .df-container,
  .df-section,
  .df-hero,
  .df-footer { padding-left: 20px; padding-right: 20px; }
  .df-nav__inner { padding: 0 20px; }

  .df-hero__inner    { grid-template-columns: 1fr; }
  .df-hero__right    { display: none; }
  .df-hero__stats    { grid-template-columns: repeat(3, 1fr); }

  .df-problems__grid { grid-template-columns: 1fr; }
  .df-services__grid { grid-template-columns: 1fr; }
  .df-process__grid  { grid-template-columns: 1fr; }
  .df-blog__grid     { grid-template-columns: 1fr; }
  .df-stats          { grid-template-columns: repeat(2, 1fr); }
  .df-case           { grid-template-columns: 1fr; }
  .df-cs-carousel-hd { padding: 48px 24px 28px; }
  .df-cs-carousel-hd__inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .df-cs-carousel-track { padding: 0 24px 40px; }
  .df-cs-carousel-card { flex: 0 0 85vw; }
  .df-cs-carousel-footer { padding: 0 24px 48px; }
  .df-team           { grid-template-columns: 1fr; }
  .df-team__photo-wrap { display: none; }
  .df-footer__grid   { grid-template-columns: 1fr; }

  .df-nav__links  { display: none; }
  .df-nav__right  { display: none; }
  .df-nav__toggle { display: flex; }
}

/* ── Utility ──────────────────────────────────────────────────────────────── */
.df-text-center { text-align: center; }
.df-mt-0 { margin-top: 0; }
.df-grid-center { justify-content: center; }

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.df-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.df-testimonial-card {
  background: var(--df-bg-card);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius);
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow 0.2s, transform 0.2s;
}
.df-testimonial-card:hover {
  box-shadow: var(--df-shadow-lg);
  transform: translateY(-2px);
}

.df-testimonial-card__quote-mark {
  font-size: 56px;
  line-height: 1;
  font-weight: 900;
  color: var(--df-bg3);
  position: absolute;
  top: 18px;
  left: 24px;
  pointer-events: none;
  user-select: none;
}

.df-testimonial-card__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--df-text-body);
  font-style: italic;
  margin: 0 0 24px;
  padding: 0;
  border: none;
  flex: 1;
  position: relative;
  z-index: 1;
}

.df-testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid rgba(90,10,148,0.08);
  padding-top: 18px;
}

.df-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--df-bg3);
  border: 2px solid rgba(90,10,148,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--df-purple2);
}
.df-testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }

.df-testimonial-card__name {
  font-size: 14px;
  font-weight: 800;
  color: var(--df-text);
  margin-bottom: 2px;
}
.df-testimonial-card__meta {
  font-size: 12px;
  color: var(--df-text-muted);
}

/* ── About intro (used on homepage + about page) ──────────────────────────── */
.df-about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--df-container);
  margin: 0 auto;
}

.df-about-intro__img {
  border-radius: var(--df-radius);
  overflow: hidden;
  box-shadow: var(--df-shadow-lg);
}
.df-about-intro__img img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.df-about-intro__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Language switcher in nav */
.df-nav__lang {
  display: flex;
  align-items: center;
  gap: 8px;
}
.df-nav__lang a {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.15s;
}
.df-nav__lang a:hover,
.df-nav__lang a.active { color: #fff; }

/* Responsive additions */
@media (max-width: 1024px) {
  .df-testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .df-about-intro        { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .df-testimonials__grid { grid-template-columns: 1fr; }
}

/* ── Blog Archive ─────────────────────────────────────────────────────────── */
.df-blog-hero {
  background: var(--df-bg-dark);
  padding: 110px 40px 80px;
  position: relative;
  overflow: hidden;
}
.df-blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.df-blog-hero__inner {
  max-width: var(--df-container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.df-blog-hero__title {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 16px;
}
.df-blog-hero__lead {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
}

/* Category filter bar */
.df-cat-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 28px 40px;
  background: var(--df-bg);
  border-bottom: 1px solid rgba(90,10,148,0.1);
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.df-cat-bar::-webkit-scrollbar { display: none; }

.df-cat-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 99px;
  font-family: var(--df-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s ease;
  border: 1px solid rgba(90,10,148,0.15);
  color: var(--df-text-body);
  background: var(--df-bg);
}
.df-cat-pill:hover,
.df-cat-pill.active {
  background: var(--df-purple2);
  border-color: var(--df-purple2);
  color: #fff;
}

/* Archive grid */
.df-archive {
  padding: var(--df-section-py) 40px;
  background: var(--df-bg2);
}
.df-archive__inner {
  max-width: var(--df-container);
  margin: 0 auto;
}
.df-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.df-archive__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 56px;
}
.df-archive__pagination a,
.df-archive__pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--df-text-body);
  border: 1px solid rgba(90,10,148,0.12);
  background: var(--df-bg);
  text-decoration: none;
  transition: all 0.15s;
}
.df-archive__pagination a:hover,
.df-archive__pagination .current {
  background: var(--df-purple2);
  border-color: var(--df-purple2);
  color: #fff;
}
.df-archive__pagination .dots {
  border: none;
  background: none;
  color: var(--df-text-muted);
}

/* ── Single Post ──────────────────────────────────────────────────────────── */
/* Reading progress bar */
.df-progress-bar {
  position: fixed;
  top: 68px;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--df-teal), var(--df-teal2));
  z-index: 999;
  transition: width 0.1s linear;
}

/* Post hero */
.df-post-hero {
  background: var(--df-bg-dark);
  padding: 110px 40px 72px;
  position: relative;
  overflow: hidden;
}
.df-post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.df-post-hero__inner {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.df-post-hero__cat {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 18px;
  text-decoration: none;
}
.df-post-hero__cat:hover { color: #fff; }
.df-post-hero__title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 24px;
}
.df-post-hero__meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
}
.df-post-hero__meta span { display: flex; align-items: center; gap: 6px; }

/* Thumbnail */
.df-post-thumb {
  max-width: var(--df-container);
  margin: -40px auto 0;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.df-post-thumb img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: var(--df-radius);
  box-shadow: var(--df-shadow-lg);
  display: block;
}

/* Single post layout */
.df-single {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  max-width: var(--df-container);
  margin: 0 auto;
  padding: 64px 40px 96px;
  align-items: start;
}

/* Post content */
.df-post-content {
  min-width: 0;
  font-size: 17px;
  line-height: 1.8;
  color: var(--df-text-body);
}
.df-post-content h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--df-text);
  margin: 2em 0 0.6em;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.df-post-content h3 {
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 800;
  color: var(--df-text);
  margin: 1.8em 0 0.5em;
}
.df-post-content p { margin: 0 0 1.4em; }
.df-post-content a { color: var(--df-teal); border-bottom: 1px solid rgba(0,168,128,0.25); }
.df-post-content a:hover { color: var(--df-teal2); border-bottom-color: var(--df-teal2); }
.df-post-content ul,
.df-post-content ol {
  margin: 0 0 1.4em 1.4em;
  padding: 0;
}
.df-post-content li { margin-bottom: 0.5em; }

.df-post-content img {
  max-width: 100%;
  border-radius: var(--df-radius-sm);
  margin: 1.6em 0;
}

/* Pull quote */
.df-post-content blockquote {
  margin: 2em 0;
  padding: 24px 28px;
  background: var(--df-bg3);
  border-left: 4px solid var(--df-teal);
  border-radius: 0 var(--df-radius-sm) var(--df-radius-sm) 0;
}
.df-post-content blockquote p {
  font-size: 19px;
  font-weight: 700;
  font-style: italic;
  color: var(--df-text);
  margin: 0;
  line-height: 1.55;
}

/* Callout box */
.df-callout {
  background: var(--df-bg3);
  border: 1px solid rgba(90,10,148,0.15);
  border-radius: var(--df-radius);
  padding: 24px 28px;
  margin: 2em 0;
}
.df-callout--teal {
  background: rgba(0,168,128,0.06);
  border-color: rgba(0,168,128,0.2);
}

/* Post tags */
.df-post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(90,10,148,0.1);
}
.df-post-tag {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 700;
  color: var(--df-purple2);
  background: var(--df-bg3);
  border: 1px solid rgba(90,10,148,0.12);
  text-decoration: none;
}
.df-post-tag:hover { background: var(--df-purple2); color: #fff; }

/* Sidebar */
.df-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.df-sidebar-card {
  background: var(--df-bg-card);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius);
  padding: 24px;
}
.df-sidebar-card__title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--df-text-muted);
  margin-bottom: 16px;
}

/* Author card */
.df-author-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.df-author-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(90,10,148,0.12);
}
.df-author-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.df-author-card__name { font-size: 15px; font-weight: 800; color: var(--df-text); }
.df-author-card__role { font-size: 12px; color: var(--df-text-muted); }
.df-author-card__bio  { font-size: 13px; color: var(--df-text-body); line-height: 1.65; }

/* Related posts */
.df-related-post {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(90,10,148,0.07);
  text-decoration: none;
}
.df-related-post:last-child { border-bottom: none; padding-bottom: 0; }
.df-related-post:hover .df-related-post__title { color: var(--df-teal); }
.df-related-post__thumb {
  width: 60px;
  height: 45px;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--df-bg3);
}
.df-related-post__thumb img { width: 100%; height: 100%; object-fit: cover; }
.df-related-post__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--df-text);
  line-height: 1.4;
  transition: color 0.15s;
}
.df-related-post__date { font-size: 11px; color: var(--df-text-muted); margin-top: 4px; }

/* Sidebar CTA widget */
.df-sidebar-cta {
  background: var(--df-bg-dark);
  border-radius: var(--df-radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.df-sidebar-cta::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 60%;
  background: radial-gradient(ellipse at bottom, rgba(0,168,128,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.df-sidebar-cta__eyebrow {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 10px;
}
.df-sidebar-cta__title {
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 12px;
}
.df-sidebar-cta__body {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}

/* Post nav (prev/next) */
.df-post-nav {
  background: var(--df-bg2);
  padding: 40px;
}
.df-post-nav__inner {
  max-width: var(--df-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.df-post-nav__item {
  background: var(--df-bg-card);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius);
  padding: 20px 22px;
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.2s;
}
.df-post-nav__item:hover { box-shadow: var(--df-shadow-lg); transform: translateY(-2px); }
.df-post-nav__item--next { text-align: right; }
.df-post-nav__dir {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--df-text-muted);
  margin-bottom: 6px;
}
.df-post-nav__title {
  font-size: 15px;
  font-weight: 800;
  color: var(--df-text);
  line-height: 1.3;
}
.df-post-nav__item:hover .df-post-nav__title { color: var(--df-teal); }

/* Responsive – blog */
@media (max-width: 1024px) {
  .df-single { grid-template-columns: 1fr; }
  .df-sidebar { position: static; }
  .df-archive__grid { grid-template-columns: repeat(2, 1fr); }
  .df-post-nav__inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .df-blog-hero, .df-post-hero, .df-archive, .df-post-thumb,
  .df-single, .df-post-nav { padding-left: 20px; padding-right: 20px; }
  .df-cat-bar { padding-left: 20px; padding-right: 20px; }
  .df-archive__grid { grid-template-columns: 1fr; }
}

/* ── Case Studies ─────────────────────────────────────────────────────────── */

/* Index hero */
.df-cs-hero {
  background: var(--df-bg-dark);
  padding: 110px 40px 80px;
  position: relative;
  overflow: hidden;
}
.df-cs-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.df-cs-hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 40%; height: 70%;
  background: radial-gradient(ellipse at bottom right, rgba(0,168,128,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.df-cs-hero__inner {
  max-width: var(--df-container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.df-cs-hero__title {
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 18px;
}
.df-cs-hero__lead {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  max-width: 560px;
  margin: 0 0 36px;
}

/* Proof stats strip inside hero */
.df-cs-hero__stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 32px;
}
.df-cs-hero__stat-val {
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.df-cs-hero__stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--df-teal2);
}

/* Index grid */
.df-cs-index {
  padding: var(--df-section-py) 40px;
  background: var(--df-bg2);
}
.df-cs-index__inner {
  max-width: var(--df-container);
  margin: 0 auto;
}
.df-cs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

/* Case study index card — featured image background with overlay */
.df-cs-card {
  background-color: var(--df-purple3);
  background-size: cover;
  background-position: center;
  border-radius: var(--df-radius);
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  transition: box-shadow 0.25s, transform 0.25s;
  position: relative;
}
.df-cs-card:hover {
  box-shadow: 0 16px 56px rgba(45,1,80,.35);
  transform: translateY(-4px);
}
.df-cs-card:hover .df-cs-card__overlay {
  background: linear-gradient(to bottom, rgba(20,5,40,.15) 0%, rgba(20,5,40,.72) 42%, rgba(20,5,40,.97) 100%);
}

/* Accent bar — absolute top edge */
.df-cs-card__accent {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  z-index: 3;
}

/* Gradient overlay for text legibility */
.df-cs-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20,5,40,.05) 0%, rgba(20,5,40,.65) 42%, rgba(20,5,40,.94) 100%);
  transition: background 0.25s;
  z-index: 1;
}

/* Content sits above overlay */
.df-cs-card__body {
  position: relative;
  z-index: 2;
  padding: 28px;
}
.df-cs-card__industry {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 10px;
}
.df-cs-card__title {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 10px;
}
.df-cs-card__excerpt {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Metric chips — frosted glass */
.df-cs-card__metrics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.df-cs-card__metric {
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  padding: 10px 14px;
  min-width: 80px;
}
.df-cs-card__metric-val {
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 3px;
}
.df-cs-card__metric-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ── Single Case Study ────────────────────────────────────────────────────── */

.df-cs-single-hero {
  background: var(--df-bg-dark);
  padding: 110px 40px 64px;
  position: relative;
  overflow: hidden;
}
.df-cs-single-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.df-cs-single-hero__inner {
  max-width: var(--df-container);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.df-cs-single-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 28px;
  transition: color 0.15s;
}
.df-cs-single-hero__back:hover { color: var(--df-teal2); }

.df-cs-single-hero__industry {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 14px;
}
.df-cs-single-hero__title {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 24px;
  max-width: 760px;
}
.df-cs-single-hero__lead {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  max-width: 620px;
  line-height: 1.7;
}

/* Metric strip below hero */
.df-cs-metrics-strip {
  background: var(--df-purple3);
  border-bottom: 1px solid rgba(90,10,148,0.4);
}
.df-cs-metrics-strip__inner {
  max-width: var(--df-container);
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(90,10,148,0.3);
}
.df-cs-metrics-strip__item {
  background: var(--df-bg-dark);
  padding: 28px 24px;
  text-align: center;
  position: relative;
}
.df-cs-metrics-strip__item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 40px; height: 3px;
}
.df-cs-metrics-strip__item:nth-child(1)::before { background: var(--df-teal); }
.df-cs-metrics-strip__item:nth-child(2)::before { background: var(--df-purple2); }
.df-cs-metrics-strip__item:nth-child(3)::before { background: #FF9900; }
.df-cs-metrics-strip__item:nth-child(4)::before { background: var(--df-teal2); }

.df-cs-metrics-strip__val {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.df-cs-metrics-strip__label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--df-teal2);
}

/* Single case body layout */
.df-cs-body {
  max-width: var(--df-container);
  margin: 0 auto;
  padding: 72px 40px 96px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* Narrative content */
.df-cs-content { min-width: 0; }

.df-cs-section {
  margin-bottom: 56px;
}
.df-cs-section__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--df-teal);
  margin-bottom: 16px;
}
.df-cs-section__label::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--df-teal);
}
.df-cs-section__title {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 900;
  color: var(--df-text);
  line-height: 1.2;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}
.df-cs-section__body {
  font-size: 16px;
  line-height: 1.8;
  color: var(--df-text-body);
}
.df-cs-section__body p { margin: 0 0 1.2em; }
.df-cs-section__body strong { color: var(--df-text); font-weight: 700; }
.df-cs-section__body ul {
  margin: 0 0 1.2em 1.4em;
  padding: 0;
}
.df-cs-section__body li { margin-bottom: 0.5em; }

/* Highlighted pull-stat inside content */
.df-cs-pull-stat {
  display: flex;
  gap: 20px;
  align-items: center;
  background: var(--df-bg3);
  border-radius: var(--df-radius);
  padding: 24px 28px;
  margin: 2em 0;
  border-left: 4px solid var(--df-teal);
}
.df-cs-pull-stat__val {
  font-size: 40px;
  font-weight: 900;
  color: var(--df-text);
  line-height: 1;
  white-space: nowrap;
}
.df-cs-pull-stat__label {
  font-size: 14px;
  color: var(--df-text-body);
  line-height: 1.5;
}

/* Case detail sidebar */
.df-cs-sidebar {
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.df-cs-detail-card {
  background: var(--df-bg-card);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius);
  padding: 22px;
}
.df-cs-detail-card__title {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--df-text-muted);
  margin-bottom: 14px;
}
.df-cs-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(90,10,148,0.06);
  font-size: 13px;
}
.df-cs-detail-row:last-child { border-bottom: none; padding-bottom: 0; }
.df-cs-detail-row__key {
  color: var(--df-text-muted);
  font-weight: 600;
  flex-shrink: 0;
}
.df-cs-detail-row__val {
  color: var(--df-text);
  font-weight: 700;
  text-align: right;
}

/* Technologies used */
.df-cs-tech-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}
.df-cs-tech-tag {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 99px;
  font-size: 11px;
  font-weight: 700;
  color: var(--df-purple2);
  background: var(--df-bg3);
  border: 1px solid rgba(90,10,148,0.12);
}

/* Next case study link */
.df-cs-next {
  background: var(--df-bg-dark);
  padding: 56px 40px;
  text-decoration: none;
  display: block;
  transition: opacity 0.2s;
  position: relative;
  overflow: hidden;
}
.df-cs-next::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.df-cs-next:hover { opacity: 0.9; }
.df-cs-next__inner {
  max-width: var(--df-container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.df-cs-next__label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 10px;
}
.df-cs-next__title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  color: #fff;
}
.df-cs-next__arrow {
  font-size: 32px;
  color: var(--df-teal2);
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .df-cs-grid { grid-template-columns: 1fr; }
  .df-cs-body  { grid-template-columns: 1fr; }
  .df-cs-sidebar { position: static; }
  .df-cs-metrics-strip__inner { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .df-cs-hero, .df-cs-single-hero, .df-cs-index,
  .df-cs-body, .df-cs-next { padding-left: 20px; padding-right: 20px; }
  .df-cs-metrics-strip__inner { padding: 0 20px; grid-template-columns: repeat(2, 1fr); }
  .df-cs-hero__stats { gap: 20px; }
}

/* ── Offer / Service Pages ────────────────────────────────────────────────── */

/* Hero */
.df-offer-hero {
  background: var(--df-bg-dark);
  padding: 120px 40px 90px;
  position: relative;
  overflow: hidden;
}
.df-offer-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.df-offer-hero::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 45%; height: 80%;
  background: radial-gradient(ellipse at bottom right, rgba(0,168,128,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.df-offer-hero__inner {
  max-width: var(--df-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  position: relative;
  z-index: 1;
}
.df-offer-hero__title {
  font-size: clamp(32px, 4.5vw, 50px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 20px;
}
.df-offer-hero__lead {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.58);
  line-height: 1.7;
  margin: 0 0 36px;
}
.df-offer-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Right panel: "Who this is for" */
.df-offer-hero__panel {
  background: rgba(30,0,56,0.85);
  border: 1px solid rgba(90,10,148,0.5);
  border-radius: var(--df-radius);
  border-top: 3px solid var(--df-teal);
  padding: 28px;
}
.df-offer-hero__panel-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 18px;
}
.df-offer-hero__panel-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}
.df-offer-hero__panel-item:last-child { border-bottom: none; padding-bottom: 0; }
.df-offer-hero__panel-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,168,128,0.15);
  border: 1px solid rgba(0,168,128,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 10px;
  color: var(--df-teal2);
}

/* Deliverables grid */
.df-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.df-deliverable-card {
  background: var(--df-bg-card);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}
.df-deliverable-card:hover {
  box-shadow: var(--df-shadow-lg);
  transform: translateY(-2px);
}
.df-deliverable-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--df-purple2), var(--df-teal));
}
.df-deliverable-card__icon {
  width: 44px;
  height: 44px;
  background: var(--df-bg3);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 16px;
}
.df-deliverable-card__title {
  font-size: 17px;
  font-weight: 800;
  color: var(--df-text);
  margin-bottom: 10px;
}
.df-deliverable-card__body {
  font-size: 13px;
  color: var(--df-text-body);
  line-height: 1.7;
}

/* Outcome / value strip — dark band between sections */
.df-outcome-strip {
  background: var(--df-bg-dark);
  padding: 56px 40px;
}
.df-outcome-strip__inner {
  max-width: var(--df-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(90,10,148,0.3);
  border-radius: var(--df-radius);
  overflow: hidden;
}
.df-outcome-item {
  background: rgba(45,1,80,0.9);
  padding: 32px 28px;
}
.df-outcome-item__icon {
  font-size: 22px;
  margin-bottom: 14px;
}
.df-outcome-item__title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.df-outcome-item__body {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* Inline mini case study — bg-dark, split */
.df-offer-case {
  padding: var(--df-section-py) 40px;
  background: var(--df-bg-dark);
  position: relative;
  overflow: hidden;
}
.df-offer-case::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40%; height: 50%;
  background: radial-gradient(ellipse at bottom left, rgba(0,168,128,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.df-offer-case__inner {
  max-width: var(--df-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* FAQ accordion */
.df-faq { margin-top: 48px; }
.df-faq__item {
  border-bottom: 1px solid rgba(90,10,148,0.1);
}
.df-faq__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  font-family: var(--df-font);
  font-size: 16px;
  font-weight: 700;
  color: var(--df-text);
  text-align: left;
  transition: color 0.15s;
}
.df-faq__question:hover { color: var(--df-teal); }
.df-faq__chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(90,10,148,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--df-text-muted);
  transition: transform 0.2s, background 0.2s;
}
.df-faq__item.open .df-faq__chevron {
  transform: rotate(180deg);
  background: var(--df-teal);
  border-color: var(--df-teal);
  color: #fff;
}
.df-faq__answer {
  display: none;
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--df-text-body);
  line-height: 1.75;
}
.df-faq__item.open .df-faq__answer { display: block; }

/* Other services row — bottom of page */
.df-other-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.df-other-service-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  background: var(--df-bg-card);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius-sm);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--df-text);
  transition: all 0.15s;
}
.df-other-service-link:hover {
  border-color: var(--df-teal);
  color: var(--df-teal);
  box-shadow: var(--df-shadow);
}
.df-other-service-link::after {
  content: '→';
  color: var(--df-text-muted);
  transition: color 0.15s;
}
.df-other-service-link:hover::after { color: var(--df-teal); }

/* Responsive */
@media (max-width: 1024px) {
  .df-offer-hero__inner    { grid-template-columns: 1fr; }
  .df-offer-hero__right    { display: none; }
  .df-deliverables         { grid-template-columns: repeat(2, 1fr); }
  .df-outcome-strip__inner { grid-template-columns: 1fr; }
  .df-offer-case__inner    { grid-template-columns: 1fr; }
  .df-other-services       { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .df-offer-hero, .df-outcome-strip,
  .df-offer-case { padding-left: 20px; padding-right: 20px; }
  .df-deliverables    { grid-template-columns: 1fr; }
  .df-other-services  { grid-template-columns: 1fr; }
}

/* ── Contact Page ─────────────────────────────────────────────────────────── */

/* Split hero — dark left panel + teal right accent */
.df-contact-hero {
  background: var(--df-bg-dark);
  position: relative;
  overflow: hidden;
}
.df-contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
.df-contact-hero__inner {
  max-width: var(--df-container);
  margin: 0 auto;
  padding: 110px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.df-contact-hero__title {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 0 18px;
}
.df-contact-hero__lead {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0 0 32px;
}
.df-contact-hero__note {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  margin-top: 16px;
  line-height: 1.6;
}

/* Contact details list */
.df-contact-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.df-contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.df-contact-detail__icon {
  width: 36px;
  height: 36px;
  background: rgba(0,168,128,0.12);
  border: 1px solid rgba(0,168,128,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}
.df-contact-detail__label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 3px;
}
.df-contact-detail__value {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.15s;
}
.df-contact-detail__value:hover { color: var(--df-teal2); }

/* Right: founder photo + badge */
.df-contact-hero__photo {
  position: relative;
  border-radius: var(--df-radius);
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}
.df-contact-hero__photo img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  max-height: 520px;
}
.df-contact-hero__photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(20,0,40,0.88);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 14px 18px;
}
.df-contact-hero__photo-name {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
}
.df-contact-hero__photo-role {
  font-size: 11px;
  color: var(--df-teal2);
  font-weight: 700;
}

/* ── Contact form section ─────────────────────────────────────────────────── */
.df-contact-body {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  max-width: var(--df-container);
  margin: 0 auto;
  padding: 80px 40px 96px;
  align-items: start;
}

/* Form card */
.df-contact-form-card {
  background: var(--df-bg-card);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius);
  padding: 40px;
  box-shadow: var(--df-shadow-lg);
}
.df-contact-form-card__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--df-text);
  margin: 0 0 6px;
}
.df-contact-form-card__sub {
  font-size: 14px;
  color: var(--df-text-muted);
  margin: 0 0 32px;
}

/* Form elements */
.df-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.df-form-group {
  margin-bottom: 20px;
}
.df-form-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--df-text);
  margin-bottom: 7px;
}
.df-form-label span {
  color: var(--df-teal);
  margin-left: 2px;
}
.df-form-input,
.df-form-select,
.df-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(90,10,148,0.18);
  border-radius: var(--df-radius-sm);
  font-family: var(--df-font);
  font-size: 14px;
  font-weight: 500;
  color: var(--df-text);
  background: var(--df-bg);
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.df-form-input:focus,
.df-form-select:focus,
.df-form-textarea:focus {
  border-color: var(--df-teal);
  box-shadow: 0 0 0 3px rgba(0,168,128,0.12);
}
.df-form-input::placeholder,
.df-form-textarea::placeholder { color: var(--df-text-muted); font-weight: 400; }
.df-form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.df-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7a9a' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

/* Submit button full-width */
.df-form-submit {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.12em;
  justify-content: center;
}

/* Form success message */
.df-form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.df-form-success__icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.df-form-success__title {
  font-size: 22px;
  font-weight: 900;
  color: var(--df-text);
  margin-bottom: 10px;
}
.df-form-success__body {
  font-size: 15px;
  color: var(--df-text-body);
  line-height: 1.7;
}

/* ── Sidebar: Calendly + address ──────────────────────────────────────────── */
.df-contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 88px;
}

.df-calendly-card {
  background: var(--df-bg-dark);
  border-radius: var(--df-radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.df-calendly-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 50%;
  background: radial-gradient(ellipse at bottom left, rgba(0,168,128,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.df-calendly-card__eyebrow {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 10px;
}
.df-calendly-card__title {
  font-size: 19px;
  font-weight: 900;
  color: #fff;
  line-height: 1.3;
  margin-bottom: 12px;
}
.df-calendly-card__body {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  margin-bottom: 20px;
}
.df-calendly-card__perks {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}
.df-calendly-card__perks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 7px;
}
.df-calendly-card__perks li::before {
  content: '✓';
  color: var(--df-teal2);
  font-weight: 900;
  font-size: 11px;
}

/* Address card */
.df-address-card {
  background: var(--df-bg2);
  border: 1px solid rgba(90,10,148,0.12);
  border-radius: var(--df-radius);
  padding: 24px;
}
.df-address-card__title {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--df-text-muted);
  margin-bottom: 14px;
}
.df-address-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
}
.df-address-row:last-child { margin-bottom: 0; }
.df-address-row__icon { font-size: 14px; flex-shrink: 0; margin-top: 1px; }
.df-address-row__text {
  color: var(--df-text-body);
  line-height: 1.5;
}
.df-address-row__text a {
  color: var(--df-teal);
  text-decoration: none;
  font-weight: 600;
}
.df-address-row__text a:hover { color: var(--df-teal2); }

/* Responsive */
@media (max-width: 1024px) {
  .df-contact-hero__inner { grid-template-columns: 1fr; }
  .df-contact-hero__photo { display: none; }
  .df-contact-body        { grid-template-columns: 1fr; }
  .df-contact-sidebar     { position: static; }
}
@media (max-width: 768px) {
  .df-contact-hero__inner,
  .df-contact-body { padding-left: 20px; padding-right: 20px; }
  .df-form-row { grid-template-columns: 1fr; }
  .df-contact-form-card { padding: 24px; }
}

/* ── Generic page.php ────────────────────────────────────────────────────── */
.df-page-content { min-height: calc(100vh - 68px); padding: 80px 40px; background: var(--df-bg); }
.df-page-content__inner { max-width: 1100px; margin: 0 auto; }
.df-page-content__title { font-size: clamp(26px,3.5vw,42px); font-weight: 900; color: var(--df-text); margin-bottom: 32px; }
.df-page-content__body { font-size: 15px; line-height: 1.8; color: var(--df-text2); }

/* ── Manual Wall Calculator page overrides ───────────────────────────────── */
.page-id-4115 .df-page-content { padding: 24px 0 0; }
.page-id-4115 .df-page-content__title { display: none; }
.page-id-4115 .mwc-brand { display: none; }

/* ── 404 Page ─────────────────────────────────────────────────────────────── */
.df-404 {
  background: var(--df-bg-dark);
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 40px;
}
.df-404::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image:
    linear-gradient(rgba(255,255,255,.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.3) 1px, transparent 1px);
  background-size: 60px 60px;
}
/* Large ghost number */
.df-404__ghost {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(200px, 30vw, 360px);
  font-weight: 900;
  line-height: 1;
  color: rgba(90,10,148,0.08);
  letter-spacing: -0.05em;
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}
.df-404__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.df-404__code {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--df-teal2);
  margin-bottom: 20px;
}
.df-404__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0 0 18px;
}
.df-404__lead {
  font-size: 17px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 0 0 40px;
}
.df-404__actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
/* Quick links grid */
.df-404__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 540px;
  margin: 0 auto;
}
.df-404__link {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--df-radius-sm);
  padding: 14px 16px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.df-404__link:hover {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(90,10,148,0.4);
}
.df-404__link-icon {
  font-size: 16px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .df-404 { padding: 60px 20px; }
  .df-404__links { grid-template-columns: 1fr 1fr; }
  .df-404__ghost { font-size: 180px; }
}

/* ══════════════════════════════════════════════════════════════════════════
   ABOUT PAGE (ab-*) — narrative story template
   Sections: hero · origin · turning · hard-years · inflection · founders · today
══════════════════════════════════════════════════════════════════════════ */

/* Eyebrow muted variant (dark text on light bg) */
.df-eyebrow--muted { color:var(--df-text-muted); }
.df-eyebrow--muted::before { background:var(--df-text-muted); }

/* ── 1. Hero ─────────────────────────────────────────────────────────────── */
.ab-hero {
  background: var(--df-bg-dark);
  padding: 100px 0 0;
  position: relative;
  overflow: hidden;
}
.ab-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .045;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 64px 64px;
}
.ab-hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0,201,154,.12) 0%, transparent 70%);
  pointer-events: none;
}
.ab-hero__content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: end;
  padding-bottom: 72px;
}
.ab-hero__founding {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(0,201,154,.25);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--df-teal2);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.ab-hero__founding-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--df-teal2);
  flex-shrink: 0;
}
.ab-hero__headline {
  font-size: clamp(34px, 4.5vw, 56px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.025em;
  color: #fff;
  margin-bottom: 24px;
}
.ab-hero__headline .df-accent { color: var(--df-teal2); font-style: normal; }
.ab-hero__lead {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.75;
  color: rgba(255,255,255,.55);
  max-width: 520px;
  margin-bottom: 44px;
}
.ab-hero__stats { display: flex; }
.ab-hero__stat {
  padding: 0 32px 0 0;
  margin-right: 32px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.ab-hero__stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
.ab-hero__stat-num {
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.ab-hero__stat-num em { color: var(--df-teal2); font-style: normal; }
.ab-hero__stat-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.35);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.ab-hero__photo {
  height: 480px;
  border-radius: var(--df-radius) var(--df-radius) 0 0;
  overflow: hidden;
  align-self: end;
}
.ab-hero__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-hero__photo-ph {
  height: 100%;
  background: linear-gradient(135deg, var(--df-purple2) 0%, #1a0040 100%);
  border-radius: var(--df-radius) var(--df-radius) 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.2);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ab-hero__bar {
  height: 4px;
  background: linear-gradient(90deg, var(--df-teal) 0%, var(--df-teal2) 50%, transparent 100%);
}

/* ── 2. Origin ──────────────────────────────────────────────────────────── */
.ab-origin {
  padding: 96px 0;
  background: var(--df-bg);
}
.ab-origin__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ab-origin__photo-wrap { position: relative; }
.ab-origin__photo {
  height: 520px;
  border-radius: var(--df-radius);
  overflow: hidden;
}
.ab-origin__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ab-origin__photo--ph {
  background: linear-gradient(135deg, var(--df-purple2) 0%, #1a0040 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.2);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.ab-origin__year-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--df-teal);
  color: #fff;
  border-radius: var(--df-radius-sm);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 800;
}
.ab-origin__year-badge span { display: block; font-size: 24px; font-weight: 900; line-height: 1; margin-bottom: 2px; }
.ab-origin__text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--df-text);
  margin-bottom: 20px;
}
.ab-origin__text h2 .df-accent { color: var(--df-purple2); font-style: normal; }
.ab-origin__text p { font-size: 15px; line-height: 1.8; color: var(--df-text-body); margin-bottom: 18px; }
.ab-origin__text p:last-child { margin-bottom: 0; }
.ab-origin__text strong { color: var(--df-text); font-weight: 700; }

/* ── 3. Turning Point ───────────────────────────────────────────────────── */
.ab-turning {
  background: var(--df-bg-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ab-turning::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 64px 64px;
}
.ab-turning::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(90,10,148,.3) 0%, transparent 70%);
  pointer-events: none;
}
.ab-turning__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ab-turning__text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 20px;
}
.ab-turning__text h2 .df-accent { color: var(--df-teal2); font-style: normal; }
.ab-turning__text p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.ab-turning__text p:last-child { margin-bottom: 0; }
.ab-turning__text strong { color: rgba(255,255,255,.85); font-weight: 700; }
.ab-turning__right { position: relative; display: flex; flex-direction: column; gap: 20px; }
.ab-turning__year {
  font-size: clamp(80px, 12vw, 140px);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1;
  color: rgba(255,255,255,.04);
  position: absolute;
  top: -20px; right: 0;
  pointer-events: none;
  user-select: none;
}
/* Deck card */
.ab-deck-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--df-radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.ab-deck-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--df-purple2), var(--df-teal2));
}
.ab-deck-card__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 12px;
}
.ab-deck-card__title { font-size: 18px; font-weight: 900; color: #fff; margin-bottom: 6px; }
.ab-deck-card__sub { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.65; }
/* Person card */
.ab-person-card {
  background: rgba(0,168,128,.08);
  border: 1px solid rgba(0,201,154,.2);
  border-radius: var(--df-radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ab-person-card__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--df-teal) 0%, var(--df-purple2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}
.ab-person-card__name { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 3px; }
.ab-person-card__role { font-size: 12px; color: rgba(255,255,255,.45); line-height: 1.5; }

/* ── 4. Hard Years ──────────────────────────────────────────────────────── */
.ab-hy { background: var(--df-bg2); padding: 96px 0; }
.ab-hy__inner {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.ab-hy__label { position: sticky; top: 40px; }
.ab-hy__label h2 {
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--df-text);
  margin-bottom: 20px;
}
.ab-hy__label h2 .df-accent { color: var(--df-purple2); font-style: normal; }
.ab-hy__label p { font-size: 14px; line-height: 1.8; color: var(--df-text-body); margin-bottom: 24px; }
.ab-hy__quote {
  background: #fff;
  border-radius: var(--df-radius);
  padding: 24px;
  border-left: 3px solid var(--df-teal);
  box-shadow: var(--df-shadow);
}
.ab-hy__quote-text {
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  color: var(--df-text-body);
  line-height: 1.75;
  margin-bottom: 14px;
}
.ab-hy__quote-author { display: flex; align-items: center; gap: 10px; }
.ab-hy__quote-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--df-purple2), var(--df-purple3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}
.ab-hy__quote-name { font-size: 13px; font-weight: 800; color: var(--df-text); }
.ab-hy__quote-role { font-size: 11px; color: var(--df-text-muted); }
.ab-hy__lessons { display: flex; flex-direction: column; }
.ab-lesson {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(45,1,80,.08);
  align-items: start;
}
.ab-lesson:first-child { padding-top: 0; }
.ab-lesson:last-child { border-bottom: none; }
.ab-lesson__num { font-size: 11px; font-weight: 800; color: var(--df-teal); letter-spacing: .1em; padding-top: 4px; }
.ab-lesson__title { font-size: 18px; font-weight: 800; color: var(--df-text); margin-bottom: 8px; }
.ab-lesson__body { font-size: 14px; line-height: 1.8; color: var(--df-text-body); }

/* ── 5. Inflection ──────────────────────────────────────────────────────── */
.ab-inf {
  background: var(--df-bg-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ab-inf::after {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(0,201,154,.10) 0%, transparent 70%);
  pointer-events: none;
}
.ab-inf__inner { position: relative; z-index: 1; }
.ab-inf__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 72px;
}
.ab-inf__text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 20px;
}
.ab-inf__text h2 .df-accent { color: var(--df-teal2); font-style: normal; }
.ab-inf__text p { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,.55); margin-bottom: 18px; }
.ab-inf__text strong { color: rgba(255,255,255,.85); font-weight: 700; }
/* Growth chart */
.ab-growth__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 12px;
}
.ab-growth__rows { display: flex; flex-direction: column; gap: 12px; }
.ab-growth-row {
  display: grid;
  grid-template-columns: 80px 1fr 64px;
  gap: 12px;
  align-items: center;
}
.ab-growth-row__year { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.4); text-align: right; }
.ab-growth-row--current .ab-growth-row__year { color: var(--df-teal2); }
.ab-growth-row__track {
  height: 10px;
  background: rgba(255,255,255,.06);
  border-radius: 5px;
  position: relative;
  overflow: hidden;
}
.ab-growth-row__bar { position: absolute; left: 0; top: 0; height: 100%; border-radius: 5px; }
.ab-growth-row__val { font-size: 12px; font-weight: 800; color: rgba(255,255,255,.7); text-align: right; }
.ab-growth-row--current .ab-growth-row__val { color: var(--df-teal2); }
/* Stats grid */
.ab-inf__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.07);
  border-radius: var(--df-radius);
  overflow: hidden;
}
.ab-istat { background: var(--df-bg-dark); padding: 36px 28px; text-align: center; }
.ab-istat__num {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 900;
  letter-spacing: -.025em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.ab-istat__num em { color: var(--df-teal2); font-style: normal; }
.ab-istat__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.3); }
.ab-istat__sub { font-size: 11px; color: rgba(255,255,255,.2); margin-top: 4px; }

/* ── 6. Founders ────────────────────────────────────────────────────────── */
.ab-founders { background: var(--df-bg); padding: 96px 0; }
.ab-founders__intro { text-align: center; max-width: 560px; margin: 0 auto 64px; }
.ab-founders__intro h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--df-text);
  margin-bottom: 14px;
}
.ab-founders__intro h2 .df-accent { color: var(--df-purple2); font-style: normal; }
.ab-founders__intro p { font-size: 15px; color: var(--df-text-body); line-height: 1.75; }
.ab-founders__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ab-founder-card {
  border: 1px solid rgba(90,10,148,.12);
  border-radius: var(--df-radius);
  overflow: hidden;
  background: var(--df-bg-card);
  transition: box-shadow .2s, transform .2s;
}
.ab-founder-card:hover { box-shadow: var(--df-shadow-lg); transform: translateY(-3px); }
.ab-founder-card__photo { aspect-ratio: 4/5; position: relative; overflow: hidden; }
.ab-founder-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.ab-founder-card__photo-ph {
  height: 100%;
  background: linear-gradient(135deg, var(--df-purple2) 0%, #1a0040 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 900;
  color: rgba(255,255,255,.15);
}
.ab-founder-card__plate {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(45,1,80,.92));
  padding: 40px 28px 24px;
}
.ab-founder-card__name { font-size: 22px; font-weight: 900; color: #fff; letter-spacing: -.01em; margin-bottom: 4px; }
.ab-founder-card__title { font-size: 12px; font-weight: 700; color: var(--df-teal2); text-transform: uppercase; letter-spacing: .12em; }
.ab-founder-card__body { padding: 28px; }
.ab-founder-card__bio { font-size: 14px; line-height: 1.8; color: var(--df-text-body); margin-bottom: 20px; }
.ab-founder-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.ab-tag {
  background: var(--df-bg3);
  border: 1px solid rgba(90,10,148,.1);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  color: var(--df-purple2);
  letter-spacing: .04em;
}

/* ── 7. Today ───────────────────────────────────────────────────────────── */
.ab-today { background: var(--df-bg2); padding: 96px 0; }
.ab-today__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ab-today__text h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--df-text);
  margin-bottom: 20px;
}
.ab-today__text h2 .df-accent { color: var(--df-purple2); font-style: normal; }
.ab-today__text p { font-size: 15px; line-height: 1.8; color: var(--df-text-body); margin-bottom: 18px; }
.ab-today__text p:last-of-type { margin-bottom: 28px; }
.ab-today__text strong { color: var(--df-text); font-weight: 700; }
.ab-values { display: flex; flex-direction: column; gap: 16px; }
.ab-value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: var(--df-radius-sm);
  padding: 20px 22px;
  border: 1px solid rgba(45,1,80,.07);
}
.ab-value__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--df-bg3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.ab-value__icon svg { width: 16px; height: 16px; }
.ab-value__title { font-size: 14px; font-weight: 800; color: var(--df-text); margin-bottom: 4px; }
.ab-value__body { font-size: 13px; line-height: 1.65; color: var(--df-text-body); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
/* ── About page contact section ─────────────────────────────────────────── */
.ab-contact {
  background: var(--df-bg-dark);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.ab-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image:
    linear-gradient(rgba(255,255,255,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.4) 1px, transparent 1px);
  background-size: 64px 64px;
}
.ab-contact::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(0,201,154,.10) 0%, transparent 70%);
  pointer-events: none;
}
.ab-contact__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: start;
}
.ab-contact__h2 {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.ab-contact__h2 .df-accent { color: var(--df-teal2); font-style: normal; }
.ab-contact__lead {
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  line-height: 1.8;
  margin-bottom: 36px;
}
.ab-contact__promises { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.ab-contact__promise  { display: flex; align-items: flex-start; gap: 14px; }
.ab-contact__p-icon {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(0,200,154,.1);
  border: 1px solid rgba(0,200,154,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--df-teal2);
}
.ab-contact__p-icon svg { width: 15px; height: 15px; }
.ab-contact__p-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
  padding-top: 6px;
}
.ab-contact__p-text strong { color: rgba(255,255,255,.85); font-weight: 700; }
.ab-contact__emails { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.ab-contact__email {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  transition: color .15s;
}
.ab-contact__email:hover { color: var(--df-teal2); }
/* Bare form — homepage-style dark inputs (no card wrapper) */
.ab-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.ab-form-group { margin-bottom: 16px; }
.ab-form-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 8px;
}
.ab-form-input,
.ab-form-textarea {
  width: 100%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px;
  padding: 14px 16px;
  font-family: var(--df-font);
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.ab-form-input::placeholder,
.ab-form-textarea::placeholder { color: rgba(255,255,255,.22); font-weight: 400; }
.ab-form-input:focus,
.ab-form-textarea:focus {
  border-color: rgba(0,200,154,.4);
  background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(0,200,154,.08);
}
.ab-form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.ab-contact-note {
  font-size: 11px;
  color: rgba(255,255,255,.2);
  text-align: center;
  margin-top: 16px;
  letter-spacing: .03em;
}
.ab-form-alert {
  padding: 14px 18px;
  border-radius: 8px;
  border: 1px solid;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 600;
}
.ab-form-alert--ok  { color: var(--df-teal2); background: rgba(0,200,154,.08); border-color: rgba(0,200,154,.25); }
.ab-form-alert--err { color: #f87171; background: rgba(220,50,50,.08); border-color: rgba(220,50,50,.2); }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .ab-hero__content                              { grid-template-columns: 1fr 340px; gap: 40px; }
  .ab-origin__inner, .ab-turning__inner,
  .ab-inf__top, .ab-today__inner                 { gap: 48px; }
  .ab-hy__inner                                  { grid-template-columns: 300px 1fr; gap: 48px; }
  .ab-contact__inner                             { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .ab-hero                                       { padding: 80px 0 0; }
  .ab-hero__content                              { grid-template-columns: 1fr; }
  .ab-hero__photo                                { display: none; }
  .ab-hero__stats                                { flex-wrap: wrap; gap: 24px; }
  .ab-hero__stat                                 { border-right: none; padding-right: 0; margin-right: 0; }
  .ab-origin__inner, .ab-turning__inner,
  .ab-hy__inner, .ab-inf__top, .ab-today__inner  { grid-template-columns: 1fr; }
  .ab-hy__label                                  { position: static; }
  .ab-inf__stats                                 { grid-template-columns: 1fr 1fr; }
  .ab-founders__grid                             { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════════════════════════════════════
   CASE STUDY — DATA-RICH TEMPLATE  (.cs-dr-*)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero — contained image (right 42%), solid dark left panel ──────────────── */
.cs-dr-hero         { position: relative; min-height: 480px; display: flex; flex-direction: column; overflow: hidden; background: #1a0a2e; }
/* Image: right 42% only — absolute so left stays solid dark */
.cs-dr-hero__bg     { position: absolute; top: 0; right: 0; bottom: 0; width: 42%; z-index: 0; }
.cs-dr-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
/* Overlay: fades only the left edge of the image into the dark bg */
.cs-dr-hero__overlay { position: absolute; inset: 0; background: linear-gradient(to right, #1a0a2e 0%, rgba(26,10,46,.85) 30%, transparent 75%); }
/* Text content: z-index 2, stays on solid dark left area */
.cs-dr-hero__content { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 140px 40px 36px; width: 100%; flex: 1; }
.cs-dr-hero__back   { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); text-decoration: none; margin-bottom: 28px; transition: color .15s; }
.cs-dr-hero__back:hover { color: rgba(255,255,255,.75); }
.cs-dr-hero__back svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cs-dr-hero__tags   { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.cs-dr-hero__tag    { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 14px; border-radius: 4px; }
.cs-dr-hero__tag--teal  { background: rgba(0,201,154,.14); color: var(--df-teal2); border: 1px solid rgba(0,201,154,.25); }
.cs-dr-hero__tag--ghost { background: rgba(255,255,255,.06); color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.1); }
.cs-dr-hero__title  { font-size: clamp(28px,4vw,52px); font-weight: 900; color: #fff; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 18px; max-width: 580px; }
.cs-dr-hero__lead   { font-size: 16px; font-weight: 500; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 500px; }
/* Scoreboard: full-width solid dark strip — numbers always crystal clear */
.cs-dr-hero__scores-wrap { background: rgba(0,0,0,.3); border-top: 1px solid rgba(255,255,255,.07); position: relative; z-index: 2; }
.cs-dr-hero__scores { max-width: 1100px; margin: 0 auto; padding: 20px 40px 24px; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
/* Scorecards: solid bg, no backdrop-filter needed */
.cs-dr-sc           { border-radius: 8px; padding: 16px 18px; text-align: center; }
.cs-dr-sc--teal     { background: rgba(0,200,154,.1);  border: 1px solid rgba(0,200,154,.22); }
.cs-dr-sc--purple   { background: rgba(90,10,148,.2);  border: 1px solid rgba(90,10,148,.4); }
.cs-dr-sc__before        { display: flex; align-items: center; justify-content: center; gap: 6px; margin-bottom: 6px; }
.cs-dr-sc__before-badge  { font-size: 9px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.3); background: rgba(255,255,255,.07); padding: 2px 7px; border-radius: 3px; }
.cs-dr-sc__before-val    { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.45); }
.cs-dr-sc__num      { font-size: clamp(22px,2.5vw,34px); font-weight: 900; color: #fff; letter-spacing: -.025em; line-height: 1; }
.cs-dr-sc__label    { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.45); margin-top: 6px; }
.cs-dr-sc__delta    { font-size: 11px; font-weight: 700; color: var(--df-teal2); margin-top: 6px; }
.cs-dr-sc--purple .cs-dr-sc__delta { color: rgba(180,140,255,.85); }

/* ── Context strip — dark, continues from hero ─────────────────────────────── */
.cs-dr-context        { background: #1a0a2e; border-bottom: 1px solid rgba(255,255,255,.06); }
.cs-dr-context__inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; display: flex; }
.cs-dr-ctx-item       { flex: 1; padding: 18px 0; border-right: 1px solid rgba(255,255,255,.07); padding-right: 24px; padding-left: 24px; }
.cs-dr-ctx-item:first-child { padding-left: 0; }
.cs-dr-ctx-item:last-child  { border-right: none; padding-right: 0; }
.cs-dr-ctx-label      { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.cs-dr-ctx-value      { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.7); line-height: 1.35; }

/* ── Featured image ────────────────────────────────────────────────────────── */
.cs-dr-image         { max-width: 1100px; margin: 0 auto; padding: 0 40px; transform: translateY(-32px); }
.cs-dr-image img     { width: 100%; max-height: 500px; object-fit: cover; border-radius: 10px; display: block; box-shadow: 0 8px 48px rgba(65,2,112,.16); }

/* ── Body grid ─────────────────────────────────────────────────────────────── */
.cs-dr-body          { max-width: 1100px; margin: 0 auto; padding: 72px 40px 80px; display: grid; grid-template-columns: 1fr 320px; gap: 64px; align-items: start; }
.cs-dr-section       { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid var(--df-border2); }
.cs-dr-section:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.cs-dr-section__label { font-size: 10px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; color: var(--df-teal); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.cs-dr-section__label::after { content: ''; flex: 1; height: 1px; background: var(--df-border2); max-width: 60px; }
.cs-dr-section__body { font-size: 15px; font-weight: 500; color: var(--df-text2); line-height: 1.85; }
.cs-dr-section__body p  { margin-bottom: 16px; }
.cs-dr-section__body p:last-child { margin-bottom: 0; }
.cs-dr-section__body strong { color: var(--df-text); font-weight: 700; }
.cs-dr-section__body ul, .cs-dr-section__body ol { padding-left: 20px; margin-bottom: 16px; }
.cs-dr-section__body li { margin-bottom: 8px; }
.cs-dr-section__body h2 { font-size: clamp(18px,2vw,24px); font-weight: 900; color: var(--df-text); margin-bottom: 12px; letter-spacing: -.018em; }

/* ── Pull stats ────────────────────────────────────────────────────────────── */
.cs-dr-pull-row      { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.cs-dr-pull-stat     { background: var(--df-bg2); border: 1px solid var(--df-border2); border-radius: 8px; padding: 20px 22px; flex: 1; min-width: 120px; border-top: 3px solid var(--cs-accent,#00A880); }
.cs-dr-pull-stat__val   { font-size: 26px; font-weight: 900; color: var(--df-text); letter-spacing: -.02em; line-height: 1; }
.cs-dr-pull-stat__label { font-size: 11px; font-weight: 600; color: var(--df-muted); margin-top: 6px; line-height: 1.4; }

/* ── Testimonial ───────────────────────────────────────────────────────────── */
.cs-dr-testimonial        { background: var(--df-bg3); border-left: 4px solid var(--df-teal); border-radius: 0 8px 8px 0; padding: 28px 32px; margin: 0; position: relative; }
.cs-dr-testimonial__mark  { position: absolute; top: 8px; left: 14px; font-size: 80px; line-height: 1; color: var(--df-teal); opacity: .15; font-family: Georgia,serif; user-select: none; }
.cs-dr-testimonial__quote { font-size: 18px; font-weight: 700; font-style: italic; color: var(--df-text); line-height: 1.65; margin: 0 0 16px; padding-left: 20px; }
.cs-dr-testimonial__footer { font-size: 13px; color: var(--df-muted); padding-left: 20px; }
.cs-dr-testimonial__name  { font-weight: 800; color: var(--df-text); }

/* ── Sidebar ───────────────────────────────────────────────────────────────── */
.cs-dr-sidebar            { position: sticky; top: 100px; }
.cs-dr-sidebar-card       { background: #fff; border: 1px solid var(--df-border); border-radius: 12px; overflow: hidden; margin-bottom: 16px; box-shadow: var(--df-shadow); }
.cs-dr-sidebar-card__head { background: var(--df-purple3); padding: 18px 22px; }
.cs-dr-sidebar-card__head-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.cs-dr-sidebar-card__head-title { font-size: 15px; font-weight: 800; color: #fff; }
.cs-dr-sidebar-card__body { padding: 18px 22px; }
.cs-dr-detail-row         { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--df-border2); }
.cs-dr-detail-row:last-child { border-bottom: none; }
.cs-dr-detail-row__key    { font-size: 12px; font-weight: 600; color: var(--df-muted); flex-shrink: 0; }
.cs-dr-detail-row__val    { font-size: 12px; font-weight: 700; color: var(--df-text); text-align: right; }

/* ── ROI timeline ──────────────────────────────────────────────────────────── */
.cs-dr-roi-timeline       { display: flex; flex-direction: column; gap: 0; }
.cs-dr-roi-point          { display: grid; grid-template-columns: 56px 1fr; gap: 12px; padding-bottom: 20px; }
.cs-dr-roi-point:last-child { padding-bottom: 0; }
.cs-dr-roi-point__left    { display: flex; flex-direction: column; align-items: center; }
.cs-dr-roi-point__dot     { width: 10px; height: 10px; border-radius: 50%; background: var(--df-teal2); border: 2px solid #fff; box-shadow: 0 0 0 3px rgba(0,201,154,.2); flex-shrink: 0; margin-top: 4px; }
.cs-dr-roi-point__line    { width: 1px; flex: 1; background: rgba(45,1,80,.1); margin-top: 6px; }
.cs-dr-roi-point__period  { font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--df-teal); text-align: center; margin-top: 2px; }
.cs-dr-roi-point__val     { font-size: 17px; font-weight: 900; color: var(--df-text); line-height: 1; margin-bottom: 3px; }
.cs-dr-roi-point__label   { font-size: 12px; color: var(--df-muted); line-height: 1.5; }

/* ── Tech list (shared with narrative) ────────────────────────────────────── */
.cs-dr-tech-list  { display: flex; flex-wrap: wrap; gap: 8px; }
.cs-dr-tech-pill  { background: var(--df-bg3); border: 1px solid rgba(90,10,148,.12); border-radius: 6px; padding: 5px 12px; font-size: 11px; font-weight: 700; color: var(--df-purple2); letter-spacing: .04em; }

/* ── Sidebar CTA (shared with narrative) ──────────────────────────────────── */
.cs-dr-sidebar-cta       { background: var(--df-purple3); border-radius: 12px; padding: 24px; text-align: center; margin-top: 4px; }
.cs-dr-sidebar-cta__text { font-size: 14px; font-weight: 700; color: #fff; line-height: 1.6; margin-bottom: 16px; }
.cs-dr-sidebar-cta__text em { color: var(--df-teal2); font-style: normal; }

/* ── Results track cards band ─────────────────────────────────────────────── */
.cs-dr-results-band       { background: var(--df-purple3); padding: 72px 40px; position: relative; overflow: hidden; }
.cs-dr-results-band::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .04; background-image: linear-gradient(rgba(255,255,255,.4) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.4) 1px,transparent 1px); background-size: 64px 64px; }
.cs-dr-results-band__inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.cs-dr-results-grid       { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.cs-dr-track-card         { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 28px; position: relative; overflow: hidden; }
.cs-dr-track-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.cs-dr-track-card--1::before { background: var(--df-teal2); }
.cs-dr-track-card--2::before { background: var(--df-purple2); }
.cs-dr-track-card__label { font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 10px; color: rgba(255,255,255,.35); }
.cs-dr-track-card__title { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cs-dr-track-card__body  { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.45); }


/* ═══════════════════════════════════════════════════════════════════════════
   CASE STUDY — NARRATIVE TEMPLATE  (.cs-nr-*)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero — contained image right 42% ──────────────────────────────────────── */
.cs-nr-hero            { position: relative; min-height: 480px; display: flex; flex-direction: column; overflow: hidden; background: #1a0a2e; }
.cs-nr-hero__bg        { position: absolute; top: 0; right: 0; bottom: 0; width: 42%; z-index: 0; }
.cs-nr-hero__bg img    { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.cs-nr-hero__overlay   { position: absolute; inset: 0; background: linear-gradient(to right, #1a0a2e 0%, rgba(26,10,46,.85) 30%, transparent 75%); }
.cs-nr-hero__content   { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; padding: 140px 40px 56px; width: 100%; display: flex; flex-direction: column; justify-content: flex-start; }
.cs-nr-hero__back      { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: rgba(255,255,255,.35); text-decoration: none; margin-bottom: 28px; transition: color .15s; }
.cs-nr-hero__back:hover { color: rgba(255,255,255,.75); }
.cs-nr-hero__back svg  { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.cs-nr-hero__tags      { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.cs-nr-hero__tag       { font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 14px; border-radius: 4px; }
.cs-nr-hero__tag--teal  { background: rgba(0,201,154,.14); color: var(--df-teal2); border: 1px solid rgba(0,201,154,.25); }
.cs-nr-hero__tag--ghost { background: rgba(255,255,255,.06); color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.1); }
.cs-nr-hero__title     { font-size: clamp(28px,4vw,52px); font-weight: 900; color: #fff; line-height: 1.08; letter-spacing: -.025em; margin-bottom: 18px; max-width: 640px; }
.cs-nr-hero__lead      { font-size: 16px; font-weight: 500; color: rgba(255,255,255,.5); line-height: 1.75; max-width: 540px; margin-bottom: 28px; }

/* ── Outcome pills ─────────────────────────────────────────────────────────── */
.cs-nr-hero__pills     { display: flex; flex-direction: column; gap: 10px; }
.cs-nr-outcome-pill    { display: flex; align-items: flex-start; gap: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08); border-radius: 8px; padding: 12px 16px; }
.cs-nr-outcome-pill__icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
.cs-nr-outcome-pill__text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.65); line-height: 1.5; }
.cs-nr-outcome-pill__text strong { color: var(--df-teal2); font-weight: 700; }

/* ── Opening ───────────────────────────────────────────────────────────────── */
.cs-nr-opening         { padding: 64px 40px; background: var(--df-bg2); border-bottom: 1px solid rgba(45,1,80,.07); }
.cs-nr-opening__inner  { max-width: 760px; margin: 0 auto; font-size: 17px; font-weight: 500; line-height: 1.85; color: var(--df-text2); }

/* ── Body grid ─────────────────────────────────────────────────────────────── */
.cs-nr-body            { max-width: 1100px; margin: 0 auto; padding: 80px 40px; display: grid; grid-template-columns: 1fr 300px; gap: 64px; align-items: start; }
.cs-nr-section         { margin-bottom: 52px; padding-bottom: 52px; border-bottom: 1px solid var(--df-border2); }
.cs-nr-section:last-child { border-bottom: none; padding-bottom: 0; margin-bottom: 0; }
.cs-nr-section__label  { font-size: 10px; font-weight: 800; letter-spacing: .3em; text-transform: uppercase; color: var(--df-teal); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.cs-nr-section__label::after { content: ''; flex: 1; height: 1px; background: var(--df-border2); max-width: 60px; }
.cs-nr-section__body   { font-size: 15px; font-weight: 500; color: var(--df-text2); line-height: 1.85; }
.cs-nr-section__body p { margin-bottom: 16px; }
.cs-nr-section__body p:last-child { margin-bottom: 0; }
.cs-nr-section__body strong { color: var(--df-text); font-weight: 700; }
.cs-nr-section__body ul, .cs-nr-section__body ol { padding-left: 20px; margin-bottom: 16px; }
.cs-nr-section__body li { margin-bottom: 8px; }
.cs-nr-section__body h2 { font-size: clamp(18px,2vw,24px); font-weight: 900; color: var(--df-text); margin-bottom: 12px; letter-spacing: -.018em; }
.cs-nr-content         { }

/* ── Sidebar ───────────────────────────────────────────────────────────────── */
.cs-nr-sidebar         { position: sticky; top: 100px; }
.cs-nr-sidebar-box     { background: #fff; border: 1px solid var(--df-border); border-radius: 12px; overflow: hidden; margin-bottom: 16px; box-shadow: var(--df-shadow); }
.cs-nr-sidebar-box__head { background: var(--df-purple3); padding: 16px 22px; }
.cs-nr-sidebar-box__head-label { font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 4px; }
.cs-nr-sidebar-box__head-title { font-size: 15px; font-weight: 800; color: #fff; }
.cs-nr-sidebar-box__body { padding: 18px 22px; }
.cs-nr-wins-list       { display: flex; flex-direction: column; gap: 14px; }
.cs-nr-win-item        { display: flex; align-items: flex-start; gap: 10px; }
.cs-nr-win-dot         { width: 6px; height: 6px; border-radius: 50%; background: var(--df-teal2); flex-shrink: 0; margin-top: 7px; }
.cs-nr-win-text        { font-size: 13px; line-height: 1.6; color: var(--df-text2); }
.cs-nr-win-text strong { color: var(--df-text); font-weight: 700; }
.cs-nr-info-list       { display: flex; flex-direction: column; gap: 12px; }
.cs-nr-info-row        { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; border-bottom: 1px solid var(--df-border2); padding-bottom: 12px; }
.cs-nr-info-row:last-child { border-bottom: none; padding-bottom: 0; }
.cs-nr-info-label      { font-size: 11px; font-weight: 700; color: var(--df-muted); text-transform: uppercase; letter-spacing: .08em; }
.cs-nr-info-value      { font-size: 12px; font-weight: 700; color: var(--df-text); text-align: right; }

/* ── Outcomes band ─────────────────────────────────────────────────────────── */
.cs-nr-outcomes-band       { background: var(--df-purple3); padding: 72px 40px; position: relative; overflow: hidden; }
.cs-nr-outcomes-band::before { content: ''; position: absolute; inset: 0; pointer-events: none; opacity: .04; background-image: linear-gradient(rgba(255,255,255,.4) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,.4) 1px,transparent 1px); background-size: 64px 64px; }
.cs-nr-outcomes-band::after  { content: ''; position: absolute; bottom: -80px; right: -80px; width: 400px; height: 400px; background: radial-gradient(circle,rgba(0,201,154,.08) 0%,transparent 70%); pointer-events: none; }
.cs-nr-outcomes-band__inner  { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.cs-nr-outcomes-band__head   { margin-bottom: 48px; max-width: 560px; }
.cs-nr-outcomes-band__head h2 { font-size: clamp(22px,2.8vw,34px); font-weight: 900; letter-spacing: -.02em; color: #fff; margin-bottom: 8px; line-height: 1.2; }
.cs-nr-outcomes-grid         { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.cs-nr-outcome-card          { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); border-radius: 12px; padding: 28px 24px; position: relative; overflow: hidden; }
.cs-nr-outcome-card::before  { content: ''; position: absolute; top: 0; left: 0; width: 3px; bottom: 0; }
.cs-nr-outcome-card--teal::before   { background: var(--df-teal2); }
.cs-nr-outcome-card--purple::before { background: var(--df-purple2); }
.cs-nr-outcome-card--fade::before   { background: rgba(255,255,255,.2); }
.cs-nr-outcome-card__title  { font-size: 15px; font-weight: 800; color: #fff; margin-bottom: 10px; }
.cs-nr-outcome-card__body   { font-size: 13px; line-height: 1.75; color: rgba(255,255,255,.45); }


/* ═══════════════════════════════════════════════════════════════════════════
   CASE STUDY — SHARED ELEMENTS  (.cs-shared-*)
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── CEO Quote ─────────────────────────────────────────────────────────────── */
.cs-shared-quote        { background: var(--df-bg2); padding: 80px 40px; }
.cs-shared-quote__inner { max-width: 760px; margin: 0 auto; text-align: center; }
.cs-shared-quote__mark  { font-size: 80px; line-height: .6; color: var(--df-teal2); font-weight: 900; opacity: .2; margin-bottom: 12px; display: block; }
.cs-shared-quote__text  { font-size: clamp(16px,2vw,22px); font-style: italic; font-weight: 700; color: var(--df-text); line-height: 1.7; margin-bottom: 32px; }
.cs-shared-quote__author { display: inline-flex; align-items: center; gap: 14px; }
.cs-shared-quote__avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg,var(--df-purple2),var(--df-purple3)); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 800; color: #fff; flex-shrink: 0; }
.cs-shared-quote__name  { font-size: 14px; font-weight: 800; color: var(--df-text); text-align: left; }
.cs-shared-quote__role  { font-size: 12px; color: var(--df-muted); text-align: left; }

/* ── Next case study ───────────────────────────────────────────────────────── */
.cs-shared-next        { display: block; background: var(--df-purple3); text-decoration: none; padding: 48px 40px; position: relative; overflow: hidden; transition: background .2s; }
.cs-shared-next:hover  { background: var(--df-purple); }
.cs-shared-next__inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.cs-shared-next__label { font-size: 10px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 8px; }
.cs-shared-next__title { font-size: 22px; font-weight: 900; color: #fff; line-height: 1.2; }
.cs-shared-next__arrow { font-size: 28px; color: var(--df-teal2); flex-shrink: 0; transition: transform .2s; }
.cs-shared-next:hover .cs-shared-next__arrow { transform: translateX(6px); }


/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — Case study templates
   ═══════════════════════════════════════════════════════════════════════════ */
@media(max-width:900px) {
  /* Data-rich hero */
  .cs-dr-hero__bg      { display: none; }
  .cs-dr-hero__content { padding: 120px 24px 28px; }
  .cs-dr-hero__scores  { padding: 0 24px 28px; grid-template-columns: 1fr 1fr; }
  /* Data-rich body */
  .cs-dr-body { padding: 48px 24px 64px; grid-template-columns: 1fr; gap: 40px; }
  .cs-dr-sidebar { position: static; }
  /* Context strip */
  .cs-dr-context__inner { flex-wrap: wrap; padding: 0 24px; }
  .cs-dr-ctx-item { flex: 1 1 45%; padding: 12px 0; border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .cs-dr-ctx-item:last-child { border-bottom: none; }
  /* Results */
  .cs-dr-results-band { padding: 48px 24px; }
  .cs-dr-results-grid { grid-template-columns: 1fr; }
  /* Narrative hero */
  .cs-nr-hero__bg      { display: none; }
  .cs-nr-hero__content { padding: 120px 24px 48px; }
  /* Narrative body */
  .cs-nr-opening { padding: 48px 24px; }
  .cs-nr-body { padding: 48px 24px; grid-template-columns: 1fr; gap: 40px; }
  .cs-nr-sidebar { position: static; }
  .cs-nr-outcomes-band { padding: 48px 24px; }
  .cs-nr-outcomes-grid { grid-template-columns: 1fr; }
  /* Shared */
  .cs-shared-quote { padding: 64px 24px; }
  .cs-shared-next  { padding: 36px 24px; }
}

@media(max-width:600px) {
  .cs-dr-hero__scores  { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cs-dr-ctx-item { flex: 1 1 100%; }
}

/* ── Shared contact section (service pages + homepage) ───────────────────── */
.df-cs { background: var(--df-purple3); padding: 96px 40px; position: relative; overflow: hidden; }
.df-cs__bg { position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 60% at 100% 0%, rgba(90,10,148,.7) 0%, transparent 55%),
              radial-gradient(ellipse 35% 35% at 0% 100%, rgba(0,168,128,.08) 0%, transparent 50%); }
.df-cs__grid { position: relative; z-index: 1; max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.df-cs__eyebrow { font-size: 10px; font-weight: 800; letter-spacing: .28em; text-transform: uppercase;
  color: var(--df-teal2); margin-bottom: 16px; display: flex; align-items: center; gap: 10px; }
.df-cs__eyebrow::before { content: ''; width: 18px; height: 1.5px; background: var(--df-teal2); }
.df-cs__h2 { font-size: clamp(28px,3.5vw,44px); font-weight: 900; color: #fff; line-height: 1.15;
  letter-spacing: -.02em; margin: 0 0 16px; }
.df-cs__h2 span { color: var(--df-teal2); }
.df-cs__lead { font-size: 16px; font-weight: 500; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 36px; }
.df-cs__promises { display: flex; flex-direction: column; gap: 16px; margin-bottom: 36px; }
.df-cs__promise { display: flex; align-items: flex-start; gap: 14px; }
.df-cs__promise-icon { width: 36px; height: 36px; border-radius: 8px; background: rgba(0,200,154,.1);
  border: 1px solid rgba(0,200,154,.2); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--df-teal2); }
.df-cs__promise-text { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.6); line-height: 1.6; padding-top: 7px; }
.df-cs__promise-text strong { color: rgba(255,255,255,.85); font-weight: 700; }
.df-cs__detail { display: flex; align-items: center; gap: 12px; font-size: 13px; font-weight: 600;
  color: rgba(255,255,255,.4); margin-top: 6px; }
.df-cs__form { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 40px; backdrop-filter: blur(8px); }
.df-cs__form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.df-cs__form-row--full { grid-template-columns: 1fr; }
.df-cs__form-group { display: flex; flex-direction: column; gap: 8px; }
.df-cs__form-label { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.4); }
.df-cs__form-input { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: 6px; padding: 14px 16px; font-family: var(--df-font); font-size: 14px; font-weight: 500;
  color: #fff; outline: none; transition: all .2s; width: 100%; box-sizing: border-box; }
.df-cs__form-input::placeholder { color: rgba(255,255,255,.22); }
.df-cs__form-input:focus { border-color: rgba(0,200,154,.4); background: rgba(255,255,255,.08);
  box-shadow: 0 0 0 3px rgba(0,200,154,.08); }
textarea.df-cs__form-input { resize: vertical; min-height: 130px; }
.df-cs__submit { margin-top: 20px; }
.df-cs__submit .df-btn--teal { width: 100%; justify-content: center; font-size: 14px; padding: 18px; display: flex; }
.df-cs__note { font-size: 11px; color: rgba(255,255,255,.3); text-align: center; margin-top: 16px; line-height: 1.5; }
.df-cs__success { display: none; text-align: center; padding: 40px 20px; }
.df-cs__success p { color: rgba(255,255,255,.7); font-size: 15px; margin-top: 12px; }
.df-cs__success svg { color: var(--df-teal2); }

.df-btn--teal { background: var(--df-teal); color: #fff; border: none; font-family: var(--df-font);
  font-size: 13px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: 16px 32px; border-radius: 6px; cursor: pointer; display: inline-flex;
  align-items: center; gap: 10px; box-shadow: 0 4px 20px rgba(0,168,128,.35); transition: all .22s; }
.df-btn--teal:hover { background: var(--df-teal2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,168,128,.4); }

@media(max-width:900px) {
  .df-cs { padding: 64px 24px; }
  .df-cs__grid { grid-template-columns: 1fr; gap: 48px; }
  .df-cs__form-row { grid-template-columns: 1fr; }
}

/* ─── DT STRATEGY PAGE (page-digital-transformation-strategy.php) ─── */
.dts-page { font-family: 'Inter', -apple-system, sans-serif; -webkit-font-smoothing: antialiased; }
.dts-page *, .dts-page *::before, .dts-page *::after { box-sizing: border-box; }

/* Hero */
.dts-hero { position: relative; min-height: 580px; overflow: hidden; display: flex; flex-direction: column; background: #1a0a2e; }
.dts-hero__bg { position: absolute; inset: 0; }
.dts-hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.dts-hero__overlay { position: absolute; inset: 0; background: linear-gradient(105deg, rgba(26,10,46,0.97) 0%, rgba(26,10,46,0.93) 38%, rgba(26,10,46,0.65) 58%, rgba(26,10,46,0.25) 80%, rgba(26,10,46,0.12) 100%); }
.dts-hero__content { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; padding: 56px 40px 0; width: 100%; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.dts-hero__eyebrow { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #00C99A; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.dts-hero__eyebrow::before { content: ''; width: 24px; height: 2px; background: #00C99A; }
.dts-hero__title { font-size: clamp(34px, 4.5vw, 56px); font-weight: 900; color: #fff; line-height: 1.06; letter-spacing: -0.03em; margin-bottom: 20px; max-width: 640px; }
.dts-hero__title em { color: #00C99A; font-style: normal; }
.dts-hero__lead { font-size: 17px; font-weight: 500; color: rgba(255,255,255,0.75) !important; line-height: 1.7; max-width: 540px; margin-bottom: 36px; }
.dts-hero__cta { display: inline-flex; align-items: center; gap: 10px; background: #00A880; color: #fff; font-size: 12px; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 16px 28px; border-radius: 8px; text-decoration: none; transition: all 0.2s; margin-bottom: 48px; }
.dts-hero__cta:hover { background: #00C99A; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,168,128,0.3); }
.dts-hero__proof { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; padding: 0 40px 36px; width: 100%; display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; }
.dts-proof-card { background: rgba(255,255,255,0.04); backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,0.08); border-radius: 8px; padding: 18px; text-align: center; }
.dts-proof-card__num { font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -0.03em; }
.dts-proof-card__num em { color: #00C99A; font-style: normal; }
.dts-proof-card__label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.4); margin-top: 4px; line-height: 1.4; }
.dts-proof-card__source { font-size: 9px; font-weight: 700; color: rgba(255,255,255,0.2); margin-top: 6px; letter-spacing: 0.08em; text-transform: uppercase; }

/* Content area */
.dts-container { max-width: 1160px; margin: 0 auto; padding: 0 40px; }
.dts-content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 56px; padding: 64px 0 80px; }
.dts-section-label { font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #00A880; margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.dts-section-label::before { content: ''; width: 16px; height: 2px; background: #00A880; }
.dts-page h2 { font-size: clamp(24px, 2.5vw, 32px); font-weight: 900; color: #2d0150; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 20px; }
.dts-page h2 em { color: #00A880; font-style: normal; }
.dts-page h3 { font-size: 18px; font-weight: 800; color: #2d0150; margin: 32px 0 12px; }
.dts-page p { font-size: 16px; line-height: 1.8; margin-bottom: 20px; color: #5a3a7a; }
.dts-page strong { font-weight: 800; color: #2d0150; }
.dts-content-section { margin-bottom: 56px; }
.dts-content-section:last-child { margin-bottom: 0; }

/* Process grid */
.dts-process-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin: 28px 0 32px; }
.dts-process-card { background: #f2eaf8; border-radius: 10px; padding: 24px; border-left: 3px solid #410270; }
.dts-process-card__step { font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: #00A880; margin-bottom: 6px; }
.dts-process-card__title { font-size: 16px; font-weight: 900; color: #2d0150; margin-bottom: 8px; }
.dts-process-card__body { font-size: 14px; line-height: 1.65; color: #5a3a7a; margin: 0; }

/* Callout */
.dts-callout { background: #2d0150; border-radius: 12px; padding: 28px 32px; margin: 32px 0; }
.dts-callout__label { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #00C99A; margin-bottom: 10px; }
.dts-callout p { font-size: 16px; font-weight: 600; color: #fff !important; line-height: 1.6; margin: 0; }
.dts-callout em { color: #00C99A; font-style: normal; }

/* Stat row */
.dts-stat-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin: 32px 0; }
.dts-stat-tile { background: #2d0150; border-radius: 8px; padding: 22px 16px; text-align: center; position: relative; overflow: hidden; }
.dts-stat-tile::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #00C99A, transparent); }
.dts-stat-tile__num { font-size: 32px; font-weight: 900; color: #fff; letter-spacing: -0.04em; }
.dts-stat-tile__num em { color: #00C99A; font-style: normal; }
.dts-stat-tile__label { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.45); margin-top: 6px; line-height: 1.4; }

/* Vertical list */
.dts-vertical-list { margin: 24px 0; }
.dts-vertical-item { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid rgba(90,10,148,0.1); }
.dts-vertical-item:last-child { border-bottom: none; }
.dts-vertical-item__icon { width: 40px; height: 40px; border-radius: 8px; background: #f2eaf8; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; }
.dts-vertical-item__title { font-size: 15px; font-weight: 800; color: #2d0150; margin-bottom: 4px; }
.dts-vertical-item__body { font-size: 14px; line-height: 1.6; color: #5a3a7a; margin: 0; }

/* Sidebar */
.dts-sidebar { position: sticky; top: 92px; display: flex; flex-direction: column; gap: 20px; }
.dts-sidebar-toc { background: #fff; border: 1px solid rgba(90,10,148,0.1); border-radius: 12px; padding: 22px; }
.dts-sidebar-toc__label { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #8a7a9a; margin-bottom: 14px; }
.dts-sidebar-toc__list { list-style: none; padding: 0; margin: 0; }
.dts-sidebar-toc__item { padding: 8px 0; border-bottom: 1px solid rgba(90,10,148,0.07); }
.dts-sidebar-toc__item:last-child { border-bottom: none; }
.dts-sidebar-toc__link { font-size: 13px; font-weight: 600; color: #8a7a9a; text-decoration: none; transition: color 0.15s; display: flex; align-items: flex-start; gap: 10px; }
.dts-sidebar-toc__link:hover { color: #2d0150; }
.dts-sidebar-toc__num { font-size: 10px; font-weight: 800; color: rgba(90,10,148,0.25); flex-shrink: 0; margin-top: 2px; }
.dts-sidebar-cta { background: #2d0150; border-radius: 12px; padding: 26px; position: relative; overflow: hidden; }
.dts-sidebar-cta::before { content: ''; position: absolute; bottom: -40px; right: -30px; width: 180px; height: 180px; border-radius: 50%; background: radial-gradient(circle, rgba(0,168,128,0.15) 0%, transparent 65%); }
.dts-sidebar-cta__eyebrow { font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: #00C99A; margin-bottom: 10px; position: relative; z-index: 1; }
.dts-sidebar-cta__title { font-size: 17px; font-weight: 900; color: #fff; line-height: 1.35; margin-bottom: 12px; position: relative; z-index: 1; }
.dts-sidebar-cta__body { font-size: 13px; color: rgba(255,255,255,0.7) !important; line-height: 1.65; margin-bottom: 20px; position: relative; z-index: 1; }
.dts-sidebar-cta__btn { display: block; text-align: center; background: #00A880; color: #fff; font-size: 11px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px 16px; border-radius: 8px; text-decoration: none; transition: all 0.2s; position: relative; z-index: 1; }
.dts-sidebar-cta__btn:hover { background: #00C99A; transform: translateY(-1px); }

/* Responsive */
@media (max-width: 960px) {
  .dts-content-grid { grid-template-columns: 1fr; }
  .dts-sidebar { position: static; }
  .dts-sidebar-toc { display: none; }
  .dts-hero__proof { grid-template-columns: repeat(2,1fr); }
  .dts-process-grid { grid-template-columns: 1fr; }
  .dts-stat-row { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .dts-hero__content { padding: 36px 20px 0; }
  .dts-hero__proof { padding: 0 20px 28px; }
  .dts-container { padding: 0 20px; }
  .dts-hero__overlay { background: linear-gradient(180deg, rgba(26,10,46,0.96) 0%, rgba(26,10,46,0.85) 60%, rgba(26,10,46,0.6) 100%); }
}

/* ─── BLOG INDEX — Featured post card ─── */
.df-blog-hero--index { min-height: 340px; }
.df-blog-hero__inner--index { padding-bottom: 56px; }
.df-featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--df-radius);
  overflow: hidden;
  text-decoration: none;
  background: var(--df-purple3);
  margin-bottom: 40px;
  transition: box-shadow 0.2s, transform 0.2s;
  border: 1px solid rgba(90,10,148,0.15);
}
.df-featured-post:hover { box-shadow: var(--df-shadow-lg); transform: translateY(-3px); }
.df-featured-post__img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: linear-gradient(135deg, #1e0038 0%, #410270 60%, #005a44 100%);
}
.df-featured-post__img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.df-featured-post:hover .df-featured-post__img img { transform: scale(1.04); }
.df-featured-post__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(20,0,40,0.3) 0%, transparent 100%);
}
.df-featured-post__cat {
  position: absolute; top: 20px; left: 20px;
  font-size: 9px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: #00C99A; background: rgba(0,200,154,0.12);
  border: 1px solid rgba(0,200,154,0.25);
  padding: 5px 10px; border-radius: 4px;
}
.df-featured-post__body {
  padding: 40px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.df-featured-post__label {
  font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase;
  color: #00A880; margin-bottom: 14px;
}
.df-featured-post__title {
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 900;
  color: #fff; line-height: 1.2; letter-spacing: -0.02em; margin-bottom: 14px;
}
.df-featured-post__excerpt {
  font-size: 14px; line-height: 1.7;
  color: rgba(255,255,255,0.55); margin-bottom: 24px; flex: 1;
}
.df-featured-post__meta {
  font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.35);
  display: flex; align-items: center; gap: 10px;
}
.df-featured-post__cta {
  margin-left: auto; font-size: 12px; font-weight: 800;
  color: #00C99A; letter-spacing: 0.04em;
}
@media (max-width: 760px) {
  .df-featured-post { grid-template-columns: 1fr; }
  .df-featured-post__img { aspect-ratio: 16/9; }
  .df-featured-post__body { padding: 24px; }
}

/* ── Homepage contact form — success state ─────────────────────────────────── */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 20px;
  gap: 16px;
}
.form-success svg {
  color: var(--df-teal);
  stroke: var(--df-teal);
  flex-shrink: 0;
}
.form-success p {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  margin: 0;
}
