/* =========================================================
   DALA TECHNOLOGIES — PREMIUM DESIGN SYSTEM v2
   ========================================================= */

/* -------------------------
   1. CUSTOM PROPERTIES
   ------------------------- */
:root {
  --primary:       #D42027;
  --primary-dark:  #A81820;
  --primary-light: #E84048;
  --ink:           #0B0B14;
  --ink-2:         #111120;
  --ink-3:         #1A1A2E;
  --ink-4:         #22223A;
  --surface:       #F5F5FA;
  --surface-2:     #EDEDF5;
  --white:         #FFFFFF;
  --muted:         #6B6B8A;
  --muted-light:   #9898B0;
  --border:        rgba(255,255,255,0.08);
  --border-dark:   rgba(11,11,20,0.10);
  --red-glow:      rgba(212,32,39,0.22);
  --red-glow-sm:   rgba(212,32,39,0.10);
  --font: 'Plus Jakarta Sans', sans-serif;
  --ease:        cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.27, 1.55);
  --max-w:    1200px;
  --max-w-sm: 960px;
  --nav-h:    68px;
  --r-xs: 4px; --r-sm: 8px; --r-md: 12px;
  --r-lg: 16px; --r-xl: 24px; --r-2xl: 32px; --r-full: 9999px;
  --s-xs: 0 1px 3px rgba(0,0,0,0.06);
  --s-sm: 0 2px 8px rgba(0,0,0,0.08), 0 1px 3px rgba(0,0,0,0.05);
  --s-md: 0 4px 20px rgba(0,0,0,0.10), 0 2px 8px rgba(0,0,0,0.06);
  --s-lg: 0 8px 40px rgba(0,0,0,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --s-xl: 0 20px 60px rgba(0,0,0,0.18), 0 8px 24px rgba(0,0,0,0.10);
  --s-red: 0 8px 32px rgba(212,32,39,0.30);
  --s-red-sm: 0 4px 16px rgba(212,32,39,0.20);
}

/* -------------------------
   2. RESET & BASE
   ------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
body.loaded { opacity: 1; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: var(--font); }

/* Force headings to stay in brand font — no serif switching */
h1, h2, h3, h4, h5, h6 { font-family: var(--font); }
h1 em, h2 em, h3 em { font-style: italic; color: var(--primary); }
.font-serif { font-family: var(--font) !important; }

/* -------------------------
   3. SCROLL PROGRESS BAR
   ------------------------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--red-glow);
}

/* -------------------------
   4. LAYOUT
   ------------------------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.container--sm { max-width: var(--max-w-sm); }

.section {
  padding: clamp(64px, 8vw, 96px) 0;
}
.section--sm {
  padding: clamp(40px, 5vw, 64px) 0;
}
.section--gray { background: var(--surface); }
.section--ink  { background: var(--ink); }
.section--ink-2 { background: var(--ink-2); }
.section--dark { background: var(--ink-3); }

.section-header {
  text-align: center;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}
.section--ink .section-header p,
.section--ink-2 .section-header p,
.section--dark .section-header p { color: rgba(255,255,255,0.60); }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(20px, 3vw, 36px); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(16px, 2.5vw, 28px); }

/* -------------------------
   5. TYPOGRAPHY
   ------------------------- */
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; line-height: 1.10; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.025em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.015em; }
h4 { font-size: 1.125rem; font-weight: 700; line-height: 1.3; }
p  { line-height: 1.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  flex-shrink: 0;
}
.section--ink .eyebrow,
.section--ink-2 .eyebrow,
.section--dark .eyebrow { color: var(--primary-light); }
.section--ink .eyebrow::before,
.section--ink-2 .eyebrow::before { background: var(--primary-light); }

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

/* -------------------------
   6. NAVBAR
   ------------------------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease),
              backdrop-filter 0.3s var(--ease);
}
.navbar.scrolled {
  background: rgba(11,11,20,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 20px rgba(0,0,0,0.3);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-d {
  width: 34px;
  height: 34px;
  background: var(--primary);
  color: white;
  font-weight: 900;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-xs);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.1rem;
  font-weight: 800;
  color: white;
  letter-spacing: 0.04em;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.navbar__links a {
  color: rgba(255,255,255,0.72);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: var(--r-sm);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.navbar__links a:hover,
.navbar__links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.navbar__links a.active { color: var(--primary-light); }

.navbar__cta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(11,11,20,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.navbar__mobile.open {
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateY(0);
  opacity: 1;
}
.navbar__mobile a {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 16px;
  border-radius: var(--r-md);
  transition: background 0.2s, color 0.2s;
}
.navbar__mobile a:hover { background: rgba(255,255,255,0.07); color: white; }
.navbar__mobile .btn { margin-top: 12px; width: 100%; justify-content: center; text-align: center; }

/* -------------------------
   7. BUTTONS
   ------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--r-full);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
              background 0.25s var(--ease), color 0.25s, border-color 0.25s;
  will-change: transform;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.2s;
  border-radius: inherit;
}
.btn:hover::after { opacity: 1; }
.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: var(--s-red-sm);
}
.btn--primary:hover {
  background: var(--primary-dark);
  box-shadow: var(--s-red);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--ink);
}
.btn--white:hover {
  background: var(--surface);
  transform: translateY(-2px);
  box-shadow: var(--s-md);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.30);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.60);
  transform: translateY(-2px);
}

.btn--outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--border-dark);
}
.btn--outline-dark:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 0.95rem;
}
.btn--sm {
  padding: 8px 18px;
  font-size: 0.8rem;
}

/* Icon arrow */
.btn svg, .btn .icon { transition: transform 0.25s var(--ease-spring); }
.btn:hover svg, .btn:hover .icon { transform: translateX(4px); }

/* -------------------------
   8. HERO (Homepage)
   ------------------------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 12vw, 140px) 0 clamp(64px, 8vw, 96px);
}

/* Animated grid background */
.hero__grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 24s linear infinite;
  pointer-events: none;
}
@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 60px 60px; }
}

/* Radial glow orbs */
.hero::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  top: -200px; left: -200px;
  background: radial-gradient(circle, rgba(212,32,39,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 12s ease-in-out infinite alternate;
}
.hero::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, rgba(212,32,39,0.10) 0%, transparent 70%);
  pointer-events: none;
  animation: orbFloat 16s ease-in-out infinite alternate-reverse;
}
@keyframes orbFloat {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, 40px) scale(1.1); }
}

.hero__centered {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,32,39,0.12);
  border: 1px solid rgba(212,32,39,0.25);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 24px;
  animation: fadeInUp 0.6s var(--ease) both;
}
.hero__eyebrow-dot {
  width: 6px; height: 6px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}

.hero__centered h1 {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.1s var(--ease) both;
}
.hero__centered h1 em { color: var(--primary-light); }

.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.62);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
  animation: fadeInUp 0.7s 0.2s var(--ease) both;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.3s var(--ease) both;
}

/* Hero video */
.hero__video-wrap {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.25s var(--ease) both;
  box-shadow: 0 32px 80px rgba(0,0,0,0.50), 0 0 0 1px rgba(255,255,255,0.06);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.hero__video-wrap video {
  width: 100%;
  display: block;
  border-radius: var(--r-xl);
}
.hero__video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.08);
  pointer-events: none;
}

/* Floating service pills */
.hero__floating-services {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.hero__pill {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--r-full);
  padding: 8px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255,255,255,0.70);
  white-space: nowrap;
  animation: pillFloat 6s ease-in-out infinite;
}
.hero__pill:nth-child(1) { top: 22%; left: 3%; animation-delay: 0s; }
.hero__pill:nth-child(2) { top: 38%; left: 1%; animation-delay: 0.8s; }
.hero__pill:nth-child(3) { top: 58%; left: 3%; animation-delay: 1.6s; }
.hero__pill:nth-child(4) { top: 72%; left: 2%; animation-delay: 2.4s; }
.hero__pill:nth-child(5) { top: 22%; right: 3%; animation-delay: 0.4s; }
.hero__pill:nth-child(6) { top: 38%; right: 1%; animation-delay: 1.2s; }
.hero__pill:nth-child(7) { top: 58%; right: 3%; animation-delay: 2.0s; }
.hero__pill:nth-child(8) { top: 72%; right: 2%; animation-delay: 2.8s; }
@keyframes pillFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}

/* -------------------------
   9. PAGE HEADER (inner pages)
   ------------------------- */
.page-header {
  background: #1E0A0C;
  padding: clamp(100px, 12vw, 140px) 0 clamp(56px, 7vw, 80px);
  position: relative;
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}
.page-header::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; right: -200px;
  background: radial-gradient(circle, rgba(212,32,39,0.14) 0%, transparent 70%);
  pointer-events: none;
}
.page-header .container { position: relative; z-index: 2; }
.page-header .eyebrow { display: inline-flex; }
.page-header h1 { color: var(--white); }
.page-header h1 em { color: var(--primary-light); }
.page-header p {
  color: rgba(255,255,255,0.60);
  font-size: 1.1rem;
  max-width: 560px;
  margin-top: 14px;
  line-height: 1.7;
}

/* Dark hero variant used on for-brands / for-supermarkets */
.page-header--dark {
  background: #1E0A0C;
  min-height: 400px;
}
.page-header--dark::after {
  background: radial-gradient(circle, rgba(212,32,39,0.18) 0%, transparent 65%);
}

/* -------------------------
   10. STATS BAR
   ------------------------- */
.stats-bar {
  background: var(--ink-2);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-bar .container {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 0;
}
.hero__stats {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-xl);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 4px 0;
  margin-top: 36px;
  animation: fadeInUp 0.8s 0.45s var(--ease) both;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(16px, 3vw, 28px) clamp(20px, 4vw, 40px);
  position: relative;
  gap: 4px;
  flex: 1;
  min-width: 120px;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}
.stat-item .stat-value {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-item .stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

/* About page stats strip inside page-header */
.about-stats-strip {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl);
  margin-top: 36px;
  overflow: hidden;
}
.about-stats-strip .stat-item { flex: 1; min-width: 100px; }
.about-stats-strip .stat-item + .stat-item::before { background: rgba(255,255,255,0.08); }
.about-stats-strip .stat-value {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}
.about-stats-strip .stat-label {
  font-size: 0.70rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}

/* -------------------------
   11. LOGO CAROUSEL
   ------------------------- */
.logo-carousel {
  overflow: hidden;
  position: relative;
  padding: clamp(28px, 4vw, 44px) 0;
}
.logo-carousel::before,
.logo-carousel::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.logo-carousel::before { left: 0;  background: linear-gradient(90deg, var(--white) 0%, transparent 100%); }
.logo-carousel::after  { right: 0; background: linear-gradient(-90deg, var(--white) 0%, transparent 100%); }
.logo-carousel--dark::before { background: linear-gradient(90deg, var(--ink) 0%, transparent 100%); }
.logo-carousel--dark::after  { background: linear-gradient(-90deg, var(--ink) 0%, transparent 100%); }
.logo-carousel--white::before { background: linear-gradient(90deg, var(--white) 0%, transparent 100%); }
.logo-carousel--white::after  { background: linear-gradient(-90deg, var(--white) 0%, transparent 100%); }

.logo-carousel__track {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 52px);
  animation: carouselScroll 30s linear infinite;
  width: max-content;
}
.logo-carousel__track--reverse { animation-direction: reverse; }
.logo-carousel__track:hover { animation-play-state: paused; }

@keyframes carouselScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-carousel__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 8px;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.3s var(--ease), transform 0.3s var(--ease);
}
.logo-carousel__item:hover {
  filter: grayscale(0) opacity(1);
  transform: scale(1.06);
}
.logo-carousel__item img { height: 36px; width: auto; max-width: 130px; object-fit: contain; }

/* Section label above carousel */
.carousel-label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

/* -------------------------
   12. VALUE CARDS (grid)
   ------------------------- */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s-lg);
  border-color: rgba(212,32,39,0.15);
}
.value-card:hover::before { transform: scaleX(1); }
.value-card__icon {
  width: 48px; height: 48px;
  background: rgba(212,32,39,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 1.4rem;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}
.value-card:hover .value-card__icon {
  background: rgba(212,32,39,0.14);
  transform: scale(1.08) rotate(-3deg);
}
.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.value-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* Dark surface value cards */
.section--ink .value-card,
.section--ink-2 .value-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}
.section--ink .value-card:hover,
.section--ink-2 .value-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(212,32,39,0.30);
}
.section--ink .value-card h3,
.section--ink-2 .value-card h3 { color: var(--white); }
.section--ink .value-card p,
.section--ink-2 .value-card p { color: rgba(255,255,255,0.55); }
.section--ink .value-card__icon,
.section--ink-2 .value-card__icon { background: rgba(212,32,39,0.12); }

/* -------------------------
   13. SERVICE CARDS / SLIDESHOW
   ------------------------- */
.services-slideshow {
  display: flex;
  gap: clamp(16px, 2.5vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 16px;
  cursor: grab;
}
.services-slideshow:active { cursor: grabbing; }
.services-slideshow::-webkit-scrollbar { height: 4px; }
.services-slideshow::-webkit-scrollbar-track { background: transparent; }
.services-slideshow::-webkit-scrollbar-thumb { background: rgba(212,32,39,0.30); border-radius: 4px; }

.service-card {
  flex-shrink: 0;
  width: clamp(260px, 30vw, 320px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--s-lg); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.service-card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* Section with dark bg for service cards */
.section--ink .service-card,
.section--ink-2 .service-card {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}
.section--ink .service-card h3,
.section--ink-2 .service-card h3 { color: var(--white); }
.section--ink .service-card p,
.section--ink-2 .service-card p { color: rgba(255,255,255,0.55); }

/* -------------------------
   14. CARDS GRID (generic)
   ------------------------- */
.cards-grid--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
.cards-grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
.cards-grid--4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 24px);
}

/* Generic info card */
.info-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 32px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--s-md); }
.info-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.info-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* Dark bg info cards */
.section--ink .info-card,
.section--gray .info-card.dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
  color: var(--white);
}
.section--ink .info-card p { color: rgba(255,255,255,0.55); }

/* -------------------------
   15. PROCESS STEPS
   ------------------------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(16px, 3vw, 28px);
  position: relative;
}
/* Horizontal connecting line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(10% + 24px);
  right: calc(10% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(212,32,39,0.15) 100%);
  z-index: 0;
  pointer-events: none;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
}
.process-step__num {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid rgba(212,32,39,0.20);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  transition: background 0.3s var(--ease), border-color 0.3s, transform 0.3s var(--ease-spring);
  box-shadow: 0 0 0 6px var(--surface);
}
.process-step:hover .process-step__num,
.process-step.active .process-step__num {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: scale(1.10);
  box-shadow: 0 0 0 6px rgba(212,32,39,0.08), var(--s-red-sm);
}
.process-step h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.process-step p  { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* Dark bg process steps */
.section--ink .process-step__num,
.section--ink-2 .process-step__num {
  background: rgba(255,255,255,0.05);
  border-color: rgba(212,32,39,0.30);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.03);
}
.section--ink .process-step:hover .process-step__num { box-shadow: 0 0 0 6px rgba(212,32,39,0.12), var(--s-red-sm); }
.section--ink .process-steps::before { background: linear-gradient(90deg, var(--primary) 0%, rgba(212,32,39,0.08) 100%); }
.section--ink .process-step h3 { color: var(--white); }
.section--ink .process-step p  { color: rgba(255,255,255,0.50); }

/* -------------------------
   16. BUILT-FOR CARDS (Homepage)
   ------------------------- */
.built-for-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 36px);
}
.built-for-card {
  border-radius: var(--r-2xl);
  padding: clamp(32px, 4vw, 52px);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.built-for-card:hover { transform: translateY(-8px) scale(1.01); }

.built-for-card--dark {
  background: var(--ink-2);
  border: 1px solid rgba(255,255,255,0.07);
  color: var(--white);
}
.built-for-card--dark:hover { box-shadow: var(--s-xl); }

.built-for-card--light {
  background: var(--surface);
  border: 1px solid var(--border-dark);
  color: var(--ink);
}
.built-for-card--light:hover { box-shadow: var(--s-lg); }

.built-for-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.built-for-card--light .built-for-card__tag { color: var(--primary); }
.built-for-card__tag::before {
  content: '';
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
}

.built-for-card h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.built-for-card--dark h3 { color: var(--white); }
.built-for-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 24px;
}
.built-for-card--dark p { color: rgba(255,255,255,0.60); }
.built-for-card--light p { color: var(--muted); }

.built-for-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.built-for-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
}
.built-for-card--dark .built-for-card__feature { color: rgba(255,255,255,0.75); }
.built-for-card__feature::before {
  content: '';
  width: 18px; height: 18px;
  background: rgba(212,32,39,0.12);
  border-radius: 50%;
  border: 1.5px solid rgba(212,32,39,0.40);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23D42027' d='M6.5 11.5L3 8l1-1 2.5 2.5 5-5 1 1z'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

/* -------------------------
   17. CASE STUDY CARDS
   ------------------------- */
.case-study-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
  display: flex;
  flex-direction: column;
}
.case-study-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--s-xl);
  border-color: rgba(212,32,39,0.15);
}
.case-study-card__img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
}
.case-study-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.case-study-card:hover .case-study-card__img img { transform: scale(1.06); }
.case-study-card__body { padding: clamp(20px, 3vw, 28px); flex: 1; display: flex; flex-direction: column; }
.case-study-card__brand {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}
.case-study-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.case-study-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}
.case-study-card__result {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  padding: 6px 12px;
  background: rgba(212,32,39,0.07);
  border-radius: var(--r-full);
  margin-bottom: 16px;
  width: fit-content;
}

/* -------------------------
   18. MISSION / CORE VALUES CARDS
   ------------------------- */
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.5vw, 28px);
}
.mission-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  transition: transform 0.35s var(--ease), background 0.35s, border-color 0.35s;
}
.mission-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.07);
  border-color: rgba(212,32,39,0.25);
}
.mission-card__icon {
  width: 44px; height: 44px;
  background: rgba(212,32,39,0.12);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}
.mission-card:hover .mission-card__icon {
  background: rgba(212,32,39,0.20);
  transform: scale(1.08) rotate(-3deg);
}
.mission-card h3 { font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.mission-card p  { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* -------------------------
   19. TRUST GRID (About page)
   ------------------------- */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}
.trust-item {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--s-md); }
.trust-item__num {
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: rgba(212,32,39,0.07);
  border-radius: var(--r-sm);
  padding: 6px 10px;
  flex-shrink: 0;
  line-height: 1;
}
.trust-item h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.trust-item p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* -------------------------
   20. STORY BLOCKS (About page)
   ------------------------- */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.story-block--reverse .story-block__img { order: 2; }
.story-block--reverse .story-block__content { order: 1; }

.story-block__img {
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
}
.story-block__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212,32,39,0.12), transparent 50%);
  z-index: 1;
  border-radius: inherit;
  pointer-events: none;
}
.story-block__img img {
  width: 100%; height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease);
}
.story-block:hover .story-block__img img { transform: scale(1.03); }
.story-block__content .eyebrow { display: inline-flex; }
.story-block__content h2 { margin-bottom: 16px; }
.story-block__content p { color: var(--muted); line-height: 1.75; }

/* Dark section story block */
.section--ink .story-block__content h2 { color: var(--white); }
.section--ink .story-block__content p   { color: rgba(255,255,255,0.58); }

/* -------------------------
   21. PHOTO MOSAIC / STRIP
   ------------------------- */
.photo-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 240px);
  gap: 12px;
}
.photo-mosaic__item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
}
.photo-mosaic__item--tall { grid-row: span 2; }
.photo-mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.photo-mosaic__item:hover img { transform: scale(1.06); }
.photo-mosaic__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.photo-mosaic__item:hover::after { opacity: 1; }

.photo-strip--3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.photo-strip--3 img {
  width: 100%; height: 220px;
  object-fit: cover;
  border-radius: var(--r-lg);
  transition: transform 0.4s var(--ease);
}
.photo-strip--3 .photo-item {
  overflow: hidden;
  border-radius: var(--r-lg);
  position: relative;
}
.photo-strip--3 .photo-item:hover img { transform: scale(1.05); }

/* -------------------------
   22. TESTIMONIALS SLIDER
   ------------------------- */
.testimonials-section { overflow: hidden; }
.testimonials-slider {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.testimonial-slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 4px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 4vw, 48px);
  max-width: 720px;
  width: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 24px; right: 32px;
  font-size: 6rem;
  line-height: 1;
  color: rgba(212,32,39,0.08);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #F4A11B;
  font-size: 1rem;
}
.testimonial-card__body {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--surface-2);
}
.testimonial-card__name { font-weight: 700; font-size: 0.9rem; color: var(--ink); }
.testimonial-card__role { font-size: 0.8rem; color: var(--muted); }

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}
.testimonials-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s var(--ease-spring);
  color: var(--ink);
  font-size: 1.1rem;
}
.testimonials-btn:hover { background: var(--ink); color: white; border-color: var(--ink); transform: scale(1.08); }
.testimonials-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}
.testimonials-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--border-dark);
  transition: background 0.3s, transform 0.3s var(--ease-spring), width 0.3s;
  cursor: pointer;
}
.testimonials-dot.active {
  background: var(--primary);
  width: 24px;
  border-radius: var(--r-full);
  transform: none;
}
/* Dots on dark section backgrounds */
.section--ink .testimonials-dot,
[style*="background:var(--ink)"] .testimonials-dot { background: rgba(255,255,255,0.25); }
[style*="background:var(--ink)"] .testimonials-dot.active { background: var(--primary); }

/* -------------------------
   23. FIT GRID (Get Listed)
   ------------------------- */
.fit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 3vw, 32px);
  margin-bottom: clamp(32px, 5vw, 52px);
}
.fit-box {
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
}
.fit-box--green-border {
  background: rgba(22,163,74,0.04);
  border: 1.5px solid rgba(22,163,74,0.25);
}
.fit-box--red-border {
  background: rgba(239,68,68,0.04);
  border: 1.5px solid rgba(239,68,68,0.20);
}
.fit-box h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.fit-box--green-border h3 { color: #16a34a; }
.fit-box--red-border h3   { color: #dc2626; }
.fit-box ul { display: flex; flex-direction: column; gap: 10px; }
.fit-box ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.5;
}
.fit-box--green-border li::before {
  content: '✓';
  color: #16a34a;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.fit-box--red-border li::before {
  content: '✕';
  color: #dc2626;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* -------------------------
   24. REVIEW IMAGES GRID
   ------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.reviews-grid img {
  width: 100%;
  border-radius: var(--r-xl);
  object-fit: cover;
  transition: transform 0.4s var(--ease), box-shadow 0.4s;
}
.reviews-grid img:hover {
  transform: scale(1.02);
  box-shadow: var(--s-lg);
}

/* -------------------------
   25. PAIN / TICKER SECTION
   ------------------------- */
.pain-section { background: var(--primary); overflow: hidden; padding: clamp(48px, 6vw, 72px) 0; }
.pain-section .section-header h2 { color: var(--white); }
.pain-section .section-header p  { color: rgba(255,255,255,0.75); }
.pain-section .eyebrow { color: rgba(255,255,255,0.80); }
.pain-section .eyebrow::before { background: rgba(255,255,255,0.60); }
.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-top: clamp(28px, 4vw, 44px);
}
.pain-card {
  background: rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 28px);
  transition: background 0.3s, transform 0.3s var(--ease);
}
.pain-card:hover { background: rgba(0,0,0,0.25); transform: translateY(-3px); }
.pain-card h3 { color: var(--white); font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.pain-card p  { color: rgba(255,255,255,0.70); font-size: 0.85rem; line-height: 1.6; }

/* Ticker */
.ticker-wrap {
  overflow: hidden;
  background: var(--ink-2);
  border-top: 2px solid rgba(212,32,39,0.45);
  border-bottom: 2px solid rgba(212,32,39,0.45);
  padding: 10px 0;
}
.ticker-track {
  display: flex;
  animation: ticker 22s linear infinite;
  width: max-content;
}
.ticker-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  white-space: nowrap;
}
.ticker-item::after {
  content: '';
  width: 4px; height: 4px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* -------------------------
   26. CTA SECTION
   ------------------------- */
.cta-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 96px) 0;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212,32,39,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-section .eyebrow { color: var(--primary-light); }
.cta-section .eyebrow::before { background: var(--primary-light); }
.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin-bottom: 14px;
}
.cta-section p { color: rgba(255,255,255,0.60); max-width: 520px; margin: 0 auto 32px; }
.cta-section .btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* -------------------------
   27. CONTACT / WORK WITH US
   ------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

/* Form styling */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-dark);
  border-radius: var(--r-md);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212,32,39,0.10);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--muted-light); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%236B6B8A' d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
}
.form-btn { align-self: flex-start; }

/* Contact info card */
.contact-info-card {
  background: var(--ink);
  border-radius: var(--r-2xl);
  padding: clamp(28px, 4vw, 40px);
  color: var(--white);
  position: sticky;
  top: calc(var(--nav-h) + 20px);
}
.contact-info-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-info-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-item__icon {
  width: 36px; height: 36px;
  background: rgba(212,32,39,0.12);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.contact-info-item__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.45); margin-bottom: 3px; }
.contact-info-item__value { font-size: 0.9rem; color: rgba(255,255,255,0.80); }
.contact-info-item__value a { color: rgba(255,255,255,0.80); transition: color 0.2s; }
.contact-info-item__value a:hover { color: var(--primary-light); }

/* -------------------------
   28. TRUST STRIP (Work With Us)
   ------------------------- */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 24px);
  margin-top: 32px;
}
.trust-strip-card {
  background: var(--surface);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.trust-strip-card:hover { transform: translateY(-3px); box-shadow: var(--s-sm); }
.trust-strip-card__icon { font-size: 1.4rem; }
.trust-strip-card h4 { font-size: 0.95rem; font-weight: 700; }
.trust-strip-card p  { font-size: 0.83rem; color: var(--muted); line-height: 1.6; }

/* -------------------------
   29. FOOTER
   ------------------------- */
.footer {
  background: #6B0D11;
  color: rgba(255,255,255,0.62);
  padding: clamp(52px, 7vw, 80px) 0 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer__grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  padding-bottom: clamp(40px, 5vw, 60px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__brand {}
.footer__brand .navbar__logo { margin-bottom: 14px; }
.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.50);
  margin-bottom: 20px;
}
.footer__col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.58);
  transition: color 0.2s;
}
.footer__col ul a:hover { color: var(--white); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer__bottom-links {
  display: flex;
  gap: 20px;
}
.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer__bottom-links a:hover { color: rgba(255,255,255,0.70); }

/* -------------------------
   30. WHATSAPP BUTTON
   ------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.50);
}
.whatsapp-float img,
.whatsapp-float svg { width: 28px; height: 28px; }

/* -------------------------
   31. ANIMATION SYSTEM
   ------------------------- */

/* Fade in variants */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.fade-in-up-sm {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

/* Visible state (applied by IntersectionObserver) */
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible,
.fade-in-scale.visible,
.fade-in-up-sm.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays */
.delay-1 { transition-delay: 0.08s; }
.delay-2 { transition-delay: 0.16s; }
.delay-3 { transition-delay: 0.24s; }
.delay-4 { transition-delay: 0.32s; }
.delay-5 { transition-delay: 0.40s; }
.delay-6 { transition-delay: 0.48s; }

/* Keyframe animations used inline */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.88); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: 0.7; }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

/* Number counter */
.counter-value { font-variant-numeric: tabular-nums; }

/* -------------------------
   32. UTILITIES
   ------------------------- */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: 1rem; }
.mb-6  { margin-bottom: 1.5rem; }
.mb-8  { margin-bottom: 2rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-6  { margin-top: 1.5rem; }
.mt-8  { margin-top: 2rem; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.w-full { width: 100%; }
.overflow-hidden { overflow: hidden; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* -------------------------
   33. RESPONSIVE BREAKPOINTS
   ------------------------- */

/* Large tablet / small desktop (≤1100px) */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 200px 1fr 1fr; }
  .footer__col:last-child { grid-column: span 3; }
  .contact-grid { grid-template-columns: 1fr 360px; }
}

/* Tablet (≤900px) */
@media (max-width: 900px) {
  h1 { font-size: clamp(1.9rem, 5vw, 2.8rem); }
  h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }

  .built-for-cards { grid-template-columns: 1fr; }
  .built-for-card { min-height: auto; }

  .story-block { grid-template-columns: 1fr; gap: 28px; }
  .story-block--reverse .story-block__img { order: 0; }
  .story-block--reverse .story-block__content { order: 0; }
  .story-block__img img { height: 300px; }

  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .mission-grid  { grid-template-columns: repeat(2, 1fr); }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }

  .navbar__links { display: none; }
  .navbar__cta   { display: none; }
  .navbar__toggle { display: flex; }

  .trust-grid  { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr; }

  .photo-mosaic { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .photo-mosaic__item--tall { grid-row: span 1; }
  .photo-strip--3 { grid-template-columns: 1fr; }
  .photo-strip--3 img { height: 220px; }

  .fit-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
  .footer__col:last-child { grid-column: auto; }
}

/* Mobile (≤640px) */
@media (max-width: 640px) {
  :root { --nav-h: 60px; }

  .section  { padding: clamp(44px, 8vw, 64px) 0; }
  .section--sm { padding: clamp(28px, 6vw, 44px) 0; }

  h1 { font-size: clamp(1.7rem, 7vw, 2.4rem); letter-spacing: -0.025em; }
  h2 { font-size: clamp(1.4rem, 5.5vw, 1.9rem); }

  .hero { min-height: 100svh; padding-top: 80px; padding-bottom: 44px; }
  .hero__floating-services { display: none; }
  .hero__cta-group { flex-direction: row; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px; }
  .hero__cta-group .btn--lg { padding: 12px 22px; font-size: 0.85rem; }

  .stat-item { min-width: 90px; }
  .about-stats-strip { flex-wrap: wrap; }
  .about-stats-strip .stat-item { min-width: 45%; }

  .hero__stats { flex-wrap: nowrap; overflow-x: auto; justify-content: center; gap: 0; }
  .hero__stats .stat-item { min-width: unset; flex: 1; padding: 14px 10px; }
  .hero__stats .stat-item .stat-value { font-size: clamp(1.2rem, 4vw, 1.8rem); }
  .hero__stats .stat-item .stat-label { font-size: 0.62rem; }

  .cards-grid--3,
  .cards-grid--2 { grid-template-columns: 1fr; }
  .cards-grid--4 { grid-template-columns: 1fr 1fr; }
  .mission-grid  { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }

  .logo-carousel::before,
  .logo-carousel::after { width: 60px; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { grid-column: auto; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }

  .btn--lg { padding: 14px 24px; font-size: 0.875rem; }

  .service-card { width: clamp(240px, 80vw, 300px); }

  .reviews-grid { grid-template-columns: 1fr; }

  .form-group--split { grid-template-columns: 1fr; }

  .testimonial-card { padding: 24px 20px; }
  .testimonial-card::before { display: none; }

  .cta-section .btn-group { flex-direction: column; align-items: stretch; }
  .cta-section .btn { width: 100%; justify-content: center; }

  .whatsapp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
}

/* Very small (≤380px) */
@media (max-width: 380px) {
  .cards-grid--4 { grid-template-columns: 1fr; }
  .hero__stats .stat-item { width: 100%; }
  .about-stats-strip .stat-item { min-width: 100%; }
}

/* -------------------------
   34. REDUCED MOTION
   ------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in, .fade-in-left, .fade-in-right, .fade-in-scale, .fade-in-up-sm {
    opacity: 1;
    transform: none;
  }
  body { opacity: 1; }
  .logo-carousel__track { animation: none; }
  .ticker-track { animation: none; }
}

/* =========================================================
   BRIDGE / COMPATIBILITY — Old inner-page class names
   Maps legacy markup to new design system
   ========================================================= */

/* --- Navbar --- */
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}

/* --- Stats bar grid --- */
.stats-bar__grid {
  display: flex;
  justify-content: space-around;
  align-items: stretch;
  flex-wrap: wrap;
}
.stat-item__number { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 900; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.stat-item__label  { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.50); }

/* --- About stats strip sub-elements --- */
.about-stats-strip__item { display: flex; flex-direction: column; align-items: center; padding: clamp(16px,3vw,28px) clamp(20px,4vw,40px); gap: 4px; flex: 1; min-width: 100px; position: relative; }
.about-stats-strip__item + .about-stats-strip__item::before { content:''; position:absolute; left:0; top:20%; height:60%; width:1px; background:rgba(255,255,255,0.08); }
.about-stats-strip__num   { font-size: clamp(1.5rem, 2.8vw, 2.2rem); font-weight: 900; color: var(--white); letter-spacing: -0.03em; line-height: 1; }
.about-stats-strip__label { font-size: 0.70rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.50); }
.about-stats-strip__divider { display: none; }

/* --- Process step number alias --- */
.process-step__number {
  width: 56px; height: 56px;
  background: var(--white);
  border: 2px solid rgba(212,32,39,0.20);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: var(--primary);
  letter-spacing: 0.02em; margin-bottom: 16px;
  transition: background 0.3s var(--ease), border-color 0.3s, transform 0.3s var(--ease-spring);
  box-shadow: 0 0 0 6px var(--surface);
}
.process-step:hover .process-step__number,
.process-step.active .process-step__number {
  background: var(--primary); border-color: var(--primary); color: var(--white);
  transform: scale(1.10);
  box-shadow: 0 0 0 6px rgba(212,32,39,0.08), var(--s-red-sm);
}
.section--ink .process-step__number,
.section--ink-2 .process-step__number {
  background: rgba(255,255,255,0.05); border-color: rgba(212,32,39,0.30);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.03);
}

/* --- Story block old sub-elements --- */
.story-text, .story-chapter { color: inherit; }
.story-text h2 { margin-bottom: 16px; }
.story-text p  { color: var(--muted); line-height: 1.75; }
.section--ink .story-text h2 { color: var(--white); }
.section--ink .story-text p  { color: rgba(255,255,255,0.58); }
.story-chapter { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; display: block; }
.story-img-wrap {
  border-radius: var(--r-2xl);
  overflow: hidden;
  position: relative;
}
.story-img-wrap::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,32,39,0.12), transparent 50%);
  z-index: 1; border-radius: inherit; pointer-events: none;
}
.story-img-wrap img, .story-img {
  width: 100%; height: 420px; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.story-block:hover .story-img-wrap img,
.story-block:hover .story-img { transform: scale(1.03); }

/* --- Generic card (how-it-works) --- */
.card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  padding: clamp(22px, 3vw, 32px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--s-lg); }
.card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 8px; }
.card p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }
.card__icon {
  width: 48px; height: 48px;
  background: rgba(212,32,39,0.08); border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.4rem;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}
.card:hover .card__icon { background: rgba(212,32,39,0.14); transform: scale(1.08) rotate(-3deg); }
.section--ink .card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.07); color: var(--white); }
.section--ink .card p { color: rgba(255,255,255,0.55); }

/* cards-grid compound class */
.cards-grid { display: grid; gap: clamp(16px, 2.5vw, 28px); }
.cards-grid.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid.cards-grid--2 { grid-template-columns: repeat(2, 1fr); }

/* --- Logo carousel header --- */
.logo-carousel__header { text-align: center; padding: clamp(24px,4vw,40px) clamp(20px,4vw,48px) 8px; }
.logo-carousel__header .eyebrow { display: inline-flex; margin-bottom: 10px; }
.logo-carousel__header h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; margin-bottom: 6px; }
.logo-carousel__header p  { font-size: 0.9rem; color: var(--muted); }
.section--ink .logo-carousel__header h3 { color: var(--white); }
.section--ink .logo-carousel__header p  { color: rgba(255,255,255,0.55); }

/* --- Fit box aliases --- */
.fit-box.fit-box--good { background: rgba(22,163,74,0.04); border: 1.5px solid rgba(22,163,74,0.25); border-radius: var(--r-xl); padding: clamp(24px,3vw,36px); }
.fit-box.fit-box--not  { background: rgba(239,68,68,0.04);  border: 1.5px solid rgba(239,68,68,0.20);  border-radius: var(--r-xl); padding: clamp(24px,3vw,36px); }
.fit-box.fit-box--good h3 { color: #16a34a; font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.fit-box.fit-box--not  h3 { color: #dc2626; font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
.fit-box.fit-box--good ul, .fit-box.fit-box--not ul { display: flex; flex-direction: column; gap: 10px; }
.fit-box.fit-box--good li, .fit-box.fit-box--not li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.9rem; line-height: 1.5; }
.fit-box.fit-box--good li::before { content:'✓'; color:#16a34a; font-weight:700; flex-shrink:0; }
.fit-box.fit-box--not  li::before { content:'✕'; color:#dc2626; font-weight:700; flex-shrink:0; }

/* --- Photo strip sub-element --- */
.photo-strip { overflow: hidden; }
.photo-strip.photo-strip--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.photo-strip__item { overflow: hidden; border-radius: var(--r-lg); position: relative; }
.photo-strip__item img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.4s var(--ease); display: block; }
.photo-strip__item:hover img { transform: scale(1.05); }

/* --- Service card sub-elements --- */
.service-card__icon {
  width: 40px; height: 40px;
  background: rgba(212,32,39,0.08);
  border: 1px solid rgba(212,32,39,0.15);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 12px;
  transition: background 0.3s, transform 0.3s var(--ease-spring);
}
.service-card:hover .service-card__icon { background: rgba(212,32,39,0.14); transform: scale(1.08) rotate(-3deg); }
.service-card__body { flex: 1; padding: clamp(18px, 2.5vw, 24px); }
.service-card__body h4 {
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.service-card__body p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.68;
}

/* Image wrap — fixed height, proper fill */
.service-card__img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  position: relative;
  background: var(--ink-2);
  flex-shrink: 0;
}
/* Gradient overlay for depth */
.service-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 40%,
    rgba(11,11,20,0.55) 100%
  );
  border-radius: inherit;
  pointer-events: none;
}
/* Number badge bottom-left of image */
.service-card__img-wrap::before {
  content: attr(data-num);
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  background: rgba(212,32,39,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  padding: 4px 10px;
  line-height: 1;
}
/* The actual image — fills container completely */
.service-card__img-wrap img,
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.5s var(--ease);
  aspect-ratio: unset;
}
.service-card:hover .service-card__img-wrap img,
.service-card:hover .service-card__img { transform: scale(1.06); }

/* --- Case study card sub-elements (old markup) --- */
.case-study-card__img-wrap { aspect-ratio: 16/9; overflow: hidden; background: var(--surface-2); border-radius: var(--r-lg) var(--r-lg) 0 0; }
.case-study-card__img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.case-study-card:hover .case-study-card__img-wrap img { transform: scale(1.06); }
.case-study-card__body { padding: clamp(20px,3vw,28px); flex: 1; display: flex; flex-direction: column; }
.case-study-card__stars { color: #F4A11B; font-size: 0.9rem; margin-bottom: 10px; letter-spacing: 2px; }
.case-study-card__quote { font-size: 0.9rem; color: var(--muted); line-height: 1.65; font-style: italic; margin-bottom: 16px; flex: 1; }
.case-study-card__author { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.case-study-card__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--surface-2); flex-shrink: 0; }
.case-study-card__name { font-weight: 700; font-size: 0.875rem; color: var(--ink); }
.case-study-card__role { font-size: 0.78rem; color: var(--muted); }

/* --- Ghost button --- */
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.30);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.60);
  transform: translateY(-2px);
}

/* --- Button arrow span --- */
.btn-arrow::after { content: ' →'; }

/* --- Button group --- */
.btn-group { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* --- Footer legacy sub-elements --- */
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.58); transition: color 0.2s; }
.footer__links a:hover { color: var(--white); }
.footer__contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.875rem; color: rgba(255,255,255,0.58); margin-bottom: 10px; }
.footer__contact-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 34px; height: 34px; background: rgba(255,255,255,0.06); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; color: rgba(255,255,255,0.55); transition: background 0.2s, color 0.2s; text-decoration: none; }
.footer__social a:hover { background: var(--primary); color: var(--white); }
.footer__logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 14px; }

/* --- CTA orbs --- */
.cta-section__orb { position: absolute; border-radius: 50%; pointer-events: none; }
.cta-section__orb--1 { width: 500px; height: 500px; top: -150px; left: -100px; background: radial-gradient(circle, rgba(212,32,39,0.12) 0%, transparent 70%); }
.cta-section__orb--2 { width: 400px; height: 400px; bottom: -100px; right: -50px; background: radial-gradient(circle, rgba(212,32,39,0.10) 0%, transparent 70%); }
.page-header__orb { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }
.page-header__orb--1 { width: 600px; height: 600px; top: -200px; right: -200px; background: radial-gradient(circle, rgba(212,32,39,0.16) 0%, transparent 70%); }
.page-header__orb--2 { width: 400px; height: 400px; bottom: -100px; left: 10%; background: radial-gradient(circle, rgba(212,32,39,0.08) 0%, transparent 70%); }

/* --- WhatsApp old class --- */
.whatsapp-btn {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.40);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  cursor: pointer; text-decoration: none;
  font-size: 1.6rem; line-height: 1;
}
.whatsapp-btn:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(37,211,102,0.50); }
.whatsapp-btn__tooltip {
  position: absolute;
  right: 66px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--r-full);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(8px);
  transition: opacity 0.2s, transform 0.2s;
}
.whatsapp-btn:hover .whatsapp-btn__tooltip { opacity: 1; transform: translateX(0); }

/* --- Contact info sub-elements (old markup) --- */
.contact-info-icon {
  width: 36px; height: 36px;
  background: rgba(212,32,39,0.12);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0;
}

/* --- Trust item sub-elements (about page) --- */
.trust-item__num {
  font-size: 0.68rem; font-weight: 900; letter-spacing: 0.05em;
  color: var(--primary); background: rgba(212,32,39,0.07);
  border-radius: var(--r-sm); padding: 6px 10px;
  flex-shrink: 0; line-height: 1;
}
.trust-item__body { flex: 1; }
.trust-item__body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.trust-item__body p  { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* --- Responsive bridges --- */
@media (max-width: 900px) {
  .cards-grid.cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .photo-strip.photo-strip--3 { grid-template-columns: 1fr 1fr; }
  .fit-box.fit-box--good,
  .fit-box.fit-box--not { width: 100%; }
}
@media (max-width: 640px) {
  .cards-grid.cards-grid--3,
  .cards-grid.cards-grid--2 { grid-template-columns: 1fr; }
  .photo-strip.photo-strip--3 { grid-template-columns: 1fr; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group .btn { width: 100%; justify-content: center; }
  .story-img-wrap img, .story-img { height: 260px; }
}

/* =========================================================
   DROPDOWN / READ-MORE EXPANSION
   ========================================================= */
.card-expand__full {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease), margin 0.3s;
  margin-top: 0;
}
.card-expand__full.open {
  max-height: 600px;
  opacity: 1;
  margin-top: 12px;
}
.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
  transition: color 0.2s, gap 0.2s;
  letter-spacing: 0.02em;
}
.read-more-btn:hover { color: var(--primary-dark); gap: 10px; }
.read-more-btn .arrow {
  display: inline-block;
  transition: transform 0.3s var(--ease);
  font-style: normal;
}
.read-more-btn.open .arrow { transform: rotate(180deg); }

/* Value card default brand tint (for-brands page) */
.value-card--tinted {
  background: rgba(212,32,39,0.04);
  border-color: rgba(212,32,39,0.14);
}
.value-card--tinted:hover {
  background: rgba(212,32,39,0.07);
  border-color: rgba(212,32,39,0.28);
}

/* Partner results horizontal slider */
.partner-results {
  display: flex;
  gap: clamp(16px, 2.5vw, 24px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.partner-results::-webkit-scrollbar { height: 4px; }
.partner-results::-webkit-scrollbar-thumb { background: rgba(212,32,39,0.25); border-radius: 4px; }
.partner-result-card {
  flex-shrink: 0;
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 28px);
  text-align: center;
  min-width: 200px;
  width: clamp(200px, 22vw, 240px);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.partner-result-card:hover { transform: translateY(-5px); box-shadow: var(--s-lg); }
.partner-result-card__logo {
  width: 64px; height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--surface-2);
  flex-shrink: 0;
}
.partner-result-card__logo img { width: 100%; height: 100%; object-fit: cover; }
.partner-result-card__metric {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1;
}
.partner-result-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink);
}
.partner-result-card__desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}
.partner-result-card__active {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #16a34a;
  background: rgba(22,163,74,0.08);
  border-radius: var(--r-full);
  padding: 4px 10px;
}
.partner-result-card__active::before {
  content: '';
  width: 6px; height: 6px;
  background: #16a34a;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

/* Testimonial card improvements */
.testimonial-card__case-study {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary);
  border: 1.5px solid rgba(212,32,39,0.25);
  border-radius: var(--r-full);
  padding: 6px 14px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  text-decoration: none;
}
.testimonial-card__case-study:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.testimonial-card__active {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #16a34a;
  background: rgba(22,163,74,0.09);
  border-radius: var(--r-full);
  padding: 3px 9px;
  margin-bottom: 12px;
}
.testimonial-card__active::before {
  content: '';
  width: 5px; height: 5px;
  background: #16a34a;
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 1.8s ease-in-out infinite;
}

/* Pain We Remove section */
.pain-section {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 8vw, 96px) 0;
}
.pain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  pointer-events: none;
}
.pain-section .section-header h2,
.pain-section .section-header .eyebrow { color: var(--white); }
.pain-section .section-header .eyebrow::before { background: rgba(255,255,255,0.6); }
.pain-section .section-header p { color: rgba(255,255,255,0.75); }
.pain-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(14px, 2vw, 22px);
}
.pain-card {
  background: rgba(0,0,0,0.20);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3vw, 28px);
  color: var(--white);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.pain-card:hover {
  background: rgba(0,0,0,0.30);
  transform: translateY(-4px);
}
.pain-card__icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 14px;
  flex-shrink: 0;
}
.pain-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.pain-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
}
.pain-card__full {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.4s var(--ease), opacity 0.3s;
  margin-top: 0;
}
.pain-card__full.open { max-height: 300px; opacity: 1; margin-top: 10px; }
.pain-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-family: var(--font);
  transition: color 0.2s;
}
.pain-read-btn:hover { color: white; }
.pain-read-btn .arrow { display: inline-block; transition: transform 0.3s; }
.pain-read-btn.open .arrow { transform: rotate(180deg); }

/* How DALA Works (homepage version) */
.how-works-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}
.how-works-card {
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 32px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.how-works-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.how-works-card:hover { transform: translateY(-5px); box-shadow: var(--s-lg); }
.how-works-card:hover::before { transform: scaleX(1); }
.how-works-card__step {
  font-size: 2rem;
  font-weight: 900;
  color: rgba(212,32,39,0.12);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 14px;
  font-family: var(--font);
}
.how-works-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; color: var(--ink); }
.how-works-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

@media (max-width: 640px) {
  .partner-results { padding-bottom: 4px; }
  .pain-cards { grid-template-columns: 1fr; }
  .how-works-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   PREMIUM POLISH v3 — Lovable-Grade Refinements
   ========================================================= */

/* ---------------------------------------------------------
   HERO — upgraded depth & video frame
   --------------------------------------------------------- */

/* Subtle noise grain on hero via pseudo-element overlay */
.hero__grid-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* Hero video: stronger glow + premium frame */
.hero__video-wrap {
  max-width: 760px;
  border-radius: 20px;
  box-shadow:
    0 0 0 1px rgba(212,32,39,0.18),
    0 0 60px rgba(212,32,39,0.14),
    0 40px 100px rgba(0,0,0,0.60);
}
.hero__video-wrap video { border-radius: 18px; }

/* Hero h1: sharper weight and tighter tracking */
.hero__centered h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  letter-spacing: -0.04em;
}

/* Subtle shine border animation on video frame */
@keyframes borderShine {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Hero stats strip — cleaner spacing */
.hero__stats {
  border: 1px solid rgba(255,255,255,0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

/* ---------------------------------------------------------
   PARTNER RESULTS — proper grid, not horizontal scroll
   --------------------------------------------------------- */

.partner-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
}

/* Upgraded card design */
.partner-results-grid .partner-result-card {
  width: 100%;
  min-width: 0;
  background: var(--white);
  border: 1px solid var(--border-dark);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 32px) clamp(20px, 2.5vw, 28px);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.partner-results-grid .partner-result-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.partner-results-grid .partner-result-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--s-xl);
  border-color: rgba(212,32,39,0.12);
}
.partner-results-grid .partner-result-card:hover::after {
  transform: scaleX(1);
}
.partner-results-grid .partner-result-card__metric {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 4px;
}
.partner-results-grid .partner-result-card__logo {
  width: 68px; height: 68px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--surface-2);
  box-shadow: var(--s-sm);
}
.partner-results-grid .partner-result-card__name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
}
.partner-results-grid .partner-result-card__desc {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .partner-results-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .partner-results-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .partner-results-grid .partner-result-card { padding: 20px 16px; }
}

/* ---------------------------------------------------------
   PAIN CARDS — stronger visual treatment
   --------------------------------------------------------- */

.pain-card {
  background: rgba(0,0,0,0.18);
  border: 1px solid rgba(255,255,255,0.14);
  border-top: 1px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.pain-card:hover {
  background: rgba(0,0,0,0.28);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.pain-card__icon {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 1.4rem;
  width: 48px; height: 48px;
}
.pain-card h4 {
  font-size: 1.05rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.pain-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding: 7px 14px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.76rem;
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  letter-spacing: 0.02em;
}
.pain-read-btn:hover {
  background: rgba(255,255,255,0.18);
  color: white;
  border-color: rgba(255,255,255,0.30);
}
.pain-read-btn .arrow { transition: transform 0.3s var(--ease); }
.pain-read-btn.open .arrow { transform: rotate(180deg); }

/* ---------------------------------------------------------
   HOW DALA WORKS — premium numbered steps
   --------------------------------------------------------- */

.how-works-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2.5vw, 24px);
  position: relative;
}
/* Connecting line between cards */
.how-works-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--primary) 0%, rgba(212,32,39,0.08) 100%);
  pointer-events: none;
  z-index: 0;
}
.how-works-card {
  position: relative;
  z-index: 1;
  background: var(--white);
  border: 1px solid rgba(212,32,39,0.08);
  border-radius: var(--r-xl);
  padding: clamp(28px, 3vw, 36px) clamp(20px, 2.5vw, 28px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.how-works-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s-lg);
  border-color: rgba(212,32,39,0.18);
}
.how-works-card:hover::before { transform: scaleX(1); }
.how-works-card__step {
  width: 52px; height: 52px;
  background: rgba(212,32,39,0.07);
  border: 1.5px solid rgba(212,32,39,0.18);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--primary);
  letter-spacing: 0.04em;
  margin-bottom: 18px;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease-spring);
}
.how-works-card:hover .how-works-card__step {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: scale(1.08);
  box-shadow: var(--s-red-sm);
}
.how-works-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.how-works-card p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .how-works-grid { grid-template-columns: repeat(2, 1fr); }
  .how-works-grid::before { display: none; }
}
@media (max-width: 480px) {
  .how-works-grid { grid-template-columns: 1fr; }
}

/* ---------------------------------------------------------
   TESTIMONIAL CARDS — premium quote treatment on dark bg
   --------------------------------------------------------- */

.testimonial-card {
  position: relative;
}
/* Large decorative quote mark */
.testimonial-card::before {
  font-size: 5rem;
  line-height: 1;
  top: 12px;
  right: 20px;
  opacity: 0.08;
  font-family: Georgia, serif;
  color: var(--white);
}
/* Stars */
.testimonial-card__stars {
  font-size: 0.95rem;
  letter-spacing: 3px;
  color: #FBBF24;
  margin-bottom: 14px;
}
/* Body text — slightly larger for impact */
.testimonial-card__body {
  font-size: 0.975rem;
  line-height: 1.75;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 20px;
}
/* Author avatar — ring effect */
.testimonial-card__avatar {
  border: 2px solid rgba(212,32,39,0.40) !important;
  box-shadow: 0 0 0 3px rgba(212,32,39,0.10);
}

/* ---------------------------------------------------------
   BUILT-FOR CARDS — more premium feature list
   --------------------------------------------------------- */

.built-for-card__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0 28px;
}
.built-for-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  font-weight: 500;
}
.built-for-card--dark .built-for-card__feature {
  color: rgba(255,255,255,0.78);
}
.built-for-card--dark .built-for-card__feature::before {
  content: '';
  width: 18px; height: 18px;
  background: rgba(212,32,39,0.20);
  border: 1px solid rgba(212,32,39,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23E84048' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.built-for-card--light .built-for-card__feature {
  color: var(--ink);
}
.built-for-card--light .built-for-card__feature::before {
  content: '';
  width: 18px; height: 18px;
  background: rgba(212,32,39,0.07);
  border: 1px solid rgba(212,32,39,0.20);
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%23D42027' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
/* Built-for card tag */
.built-for-card__tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 12px;
  padding: 4px 10px;
  background: rgba(212,32,39,0.12);
  border: 1px solid rgba(212,32,39,0.22);
  border-radius: var(--r-full);
}

/* ---------------------------------------------------------
   VALUE CARD TINTED — more premium feel
   --------------------------------------------------------- */

.value-card--tinted {
  background: rgba(212,32,39,0.03);
  border-color: rgba(212,32,39,0.10);
}
.value-card--tinted:hover {
  background: rgba(212,32,39,0.06);
  border-color: rgba(212,32,39,0.22);
  box-shadow: 0 8px 32px rgba(212,32,39,0.10);
}

/* ---------------------------------------------------------
   SECTION HEADERS — stronger visual hierarchy
   --------------------------------------------------------- */

.section--gray .section-header h2,
.section--gray .section-header h3 {
  letter-spacing: -0.03em;
}

/* Eyebrow on light bg - subtle bg pill */
.section--gray .eyebrow,
.section--white .eyebrow {
  background: rgba(212,32,39,0.06);
  padding: 4px 12px;
  border-radius: var(--r-full);
  border: 1px solid rgba(212,32,39,0.12);
}

/* ---------------------------------------------------------
   CTA SECTION — stronger impact
   --------------------------------------------------------- */

.cta-section h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -0.035em;
}
.cta-section {
  background: var(--ink-2);
}
/* Shimmer effect on CTA primary button */
.cta-section .btn--white {
  position: relative;
  overflow: hidden;
}
.cta-section .btn--white::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s var(--ease);
}
.cta-section .btn--white:hover::before { left: 150%; }

/* ---------------------------------------------------------
   PAGE HEADER INNER PAGES — stronger hero
   --------------------------------------------------------- */

.page-header h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  letter-spacing: -0.035em;
}
.page-header h1 em {
  font-style: italic;
}

/* ---------------------------------------------------------
   FOOTER — subtle polish
   --------------------------------------------------------- */

.footer {
  border-top: 1px solid rgba(255,255,255,0.04);
}
.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.75;
  max-width: 220px;
}
/* Footer logo – faint divider between brand and links */
.footer__grid {
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ---------------------------------------------------------
   LOGO CAROUSELS — stronger fade edges
   --------------------------------------------------------- */

.logo-carousel--white::before {
  background: linear-gradient(90deg, var(--white) 30%, transparent 100%);
  width: 100px;
}
.logo-carousel--white::after {
  background: linear-gradient(-90deg, var(--white) 30%, transparent 100%);
  width: 100px;
}

/* ---------------------------------------------------------
   SCROLL PROGRESS BAR — thicker, more visible
   --------------------------------------------------------- */

#scroll-progress {
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, #FF5C63 50%, var(--primary-light) 100%);
  background-size: 200% 100%;
  animation: shimmer 2s linear infinite;
}

/* ---------------------------------------------------------
   ACTIVE PARTNER BADGE — pulse ring
   --------------------------------------------------------- */

.partner-result-card__active::before,
.testimonial-card__active::before {
  animation: pulseRing 2s ease-in-out infinite;
}
@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(22,163,74,0.4); }
  50%       { transform: scale(1.3); opacity: 0.8; box-shadow: 0 0 0 4px rgba(22,163,74,0); }
}

/* ---------------------------------------------------------
   CARD HOVER GLOW — subtle red ambient
   --------------------------------------------------------- */

.value-card:hover,
.how-works-card:hover {
  box-shadow:
    var(--s-lg),
    0 0 0 1px rgba(212,32,39,0.06),
    0 0 40px rgba(212,32,39,0.06);
}

/* ---------------------------------------------------------
   CASE STUDY CARDS — premium image treatment (matching service-card pattern)
   --------------------------------------------------------- */

.case-study-card__img-wrap {
  width: 100%;
  height: 190px;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  position: relative;
  background: linear-gradient(135deg, #0f0f1a 0%, #1a0608 100%);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-study-card__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(11,11,20,0.55) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 1;
}
.case-study-card__img-wrap::before {
  content: attr(data-num);
  position: absolute;
  bottom: 12px; left: 14px;
  z-index: 2;
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  background: rgba(212,32,39,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  padding: 4px 10px;
  line-height: 1;
}
.case-study-card__img-wrap img,
.case-study-card__img {
  width: 80%; height: 80%;
  object-fit: contain; object-position: center;
  display: block;
  margin: auto;
  position: absolute;
  inset: 0;
  transition: transform 0.5s var(--ease);
  aspect-ratio: unset;
}
.case-study-card:hover .case-study-card__img-wrap img,
.case-study-card:hover .case-study-card__img { transform: scale(1.06); }

/* ---------------------------------------------------------
   ABOUT STORY IMAGES — premium pill chapter badges
   --------------------------------------------------------- */

.story-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(11,11,20,0.45) 100%);
  border-radius: inherit;
  pointer-events: none;
  z-index: 2;
}
.story-chapter {
  position: absolute;
  bottom: 14px;
  left: 16px;
  z-index: 3;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  background: rgba(212,32,39,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  padding: 4px 10px;
  line-height: 1;
  display: block;
  margin-bottom: 0;
}

/* ---------------------------------------------------------
   PAGE HEADER SPLIT LAYOUT (for-brands / for-supermarkets)
   --------------------------------------------------------- */

.page-header--split {
  padding: clamp(100px, 12vw, 140px) 0 clamp(60px, 8vw, 100px);
}
.page-header--split .container {
  display: flex;
  align-items: center;
}
.page-header__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  width: 100%;
}
.page-header__copy { max-width: 580px; }
.page-header__copy p { max-width: 100%; }
.page-header__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.hero-stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-xl);
  padding: clamp(20px, 2.5vw, 28px);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.hero-stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
}
.hero-stat-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
  transform: translateY(-5px);
}
.hero-stat-card--accent {
  background: rgba(212,32,39,0.12);
  border-color: rgba(212,32,39,0.25);
}
.hero-stat-card--accent::before {
  background: linear-gradient(90deg, transparent, rgba(212,32,39,0.5), transparent);
}
.hero-stat-card--accent:hover {
  background: rgba(212,32,39,0.18);
  border-color: rgba(212,32,39,0.40);
}
.hero-stat-card__num {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}
.hero-stat-card--accent .hero-stat-card__num {
  color: #FF7B82;
}
.hero-stat-card__label {
  font-size: 0.76rem;
  font-weight: 600;
  color: rgba(255,255,255,0.50);
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 900px) {
  .page-header__split { grid-template-columns: 1fr; }
  .page-header__visual { grid-template-columns: repeat(4, 1fr); gap: 10px; }
}
@media (max-width: 640px) {
  .page-header__visual { display: none; }
}

/* ---------------------------------------------------------
   MOBILE REFINEMENTS
   --------------------------------------------------------- */

@media (max-width: 640px) {
  .how-works-grid { grid-template-columns: 1fr; }
  .how-works-grid::before { display: none; }
  .hero__video-wrap { border-radius: 14px; }
  .hero__video-wrap video { border-radius: 12px; }
  .hero__centered h1 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .cta-section h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
}
