/* ─── FONT ─────────────────────────────────────────── */
@font-face {
  font-family: 'LamaSans';
  src: url('../fonts/lamasans/LamaSans-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LamaSans';
  src: url('../fonts/lamasans/LamaSans-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LamaSans';
  src: url('../fonts/lamasans/LamaSans-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LamaSans';
  src: url('../fonts/lamasans/LamaSans-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'LamaSans';
  src: url('../fonts/lamasans/LamaSans-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* ─── TOKENS ────────────────────────────────────────── */
:root {
  --red:          #bc131a;
  --red-dark:     #8a0d12;
  --black:        #0c0b0b;
  --black-soft:   #1a1818;
  --white:        #ffffff;
  --cream:        #faf8f5;
  --grey:         #666;
  --grey-light:   #e8e4df;
  --border:       rgba(0, 0, 0, 0.09);
  --border-w:     rgba(255, 255, 255, 0.10);
  --font-display: 'LamaSans', sans-serif;
  --font-body:    'LamaSans', sans-serif;
  --ease-out:  cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in:   cubic-bezier(0.64, 0, 0.78, 0);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a   { text-decoration: none; color: inherit; }

/* ─── SCROLL REVEAL ─────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.in  { opacity: 1; transform: translateY(0); }
.reveal.d1  { transition-delay: .10s; }
.reveal.d2  { transition-delay: .20s; }
.reveal.d3  { transition-delay: .30s; }
.reveal.d4  { transition-delay: .40s; }
.reveal.d5  { transition-delay: .55s; }

/* ─── SHARED UTILITIES ──────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--red);
  flex-shrink: 0;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 600;
  line-height: 1.1;
  color: var(--black);
}
.section-heading em { font-style: italic; color: var(--red); }

.section-body-text {
  font-size: 16px;
  /* font-weight: 300; */
  color: var(--grey);
  line-height: 1.78;
}

/* ─── BUTTONS ───────────────────────────────────────── */
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 15px 34px;
  border: none;
  cursor: pointer;
  transition: background .35s;
  text-decoration: none;
}
.btn-solid:hover { background: var(--black); color: var(--white); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 13px 30px;
  border: 1.5px solid rgba(255, 255, 255, .38);
  cursor: pointer;
  transition: all .35s;
  text-decoration: none;
}
.btn-ghost:hover { background: var(--white); color: var(--black); border-color: var(--white); }

/* ═══════════════════════════════════════════════════════
HEADER
═══════════════════════════════════════════════════════ */
#header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 500;
  transition: background .5s var(--ease-out), padding .5s var(--ease-out), box-shadow .5s;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 60px;
  transition: padding .5s var(--ease-out);
}

#header.solid .header-inner {
  padding: 15px 60px;
}

#header.solid {
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 var(--border);
}

.logo {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--white);
  transition: color .5s;
}
#header.solid .logo { color: var(--black); }
.logo em { font-style: normal; color: var(--red); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.header-nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .82);
  transition: color .3s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--red);
  transition: width .3s var(--ease-out);
}
.header-nav a:hover { color: var(--white); }
.header-nav a:hover::after { width: 100%; }
#header.solid .header-nav a { color: var(--black); }
#header.solid .header-nav a:hover { color: var(--red); }

.header-btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .38);
  padding: 11px 26px;
  transition: all .35s;
}
.header-btn:hover,
#header.solid .header-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}
#header.solid .header-btn {
  color: var(--red);
  border-color: var(--red);
}

/* Mobile menu */
.mobile-menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: background .4s;
}
#header.solid .mobile-menu-btn span { background: var(--black); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav-link {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--black);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .3s;
}
.mobile-nav-link:hover { color: var(--red); }
.btn-mobile-cta {
  margin-top: 18px;
  background: var(--red);
  color: var(--white) !important;
  padding: 14px 0;
  text-align: center;
  border-bottom: none !important;
  font-weight: 700;
}
.btn-mobile-cta:hover { background: var(--black); }

/* ═══════════════════════════════════════════════════════
HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  /* height: 100vh; */
  min-height: 800px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-media img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroZoom 18s var(--ease-out) forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.12); }
  to   { transform: scale(1.0);  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
  linear-gradient(to top,  rgba(5,4,4,.90) 0%, rgba(5,4,4,.38) 25%, rgba(5,4,4,.08) 100%),
  linear-gradient(to right, rgba(0,0,0,.32) 0%, transparent 25%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}

/* .hero-bar {
position: absolute;
top: 0; left: 0;
width: 5px;
height: 0;
background: var(--red);
z-index: 3;
animation: barGrow 1.4s var(--ease-out) .4s forwards;
} */
@keyframes barGrow { to { height: 100%; } }

.hero-content {
  position: relative;
  z-index: 4;
  padding-left: 80px;
  padding-right: 80px;
  padding-bottom: 110px;
  width: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: 8px 18px;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .9s forwards;
}
.hero-badge-dot {
  width: 5px; height: 5px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
}

/* Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 7.5vw, 56px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  overflow: hidden;
}
.hero-title .line {
  display: block;
  transform: translateY(110%);
  opacity: 0;
  animation: lineReveal 1s var(--ease-out) forwards;
}
.hero-title .line:nth-child(1) { animation-delay: .75s; }
.hero-title .line:nth-child(2) { animation-delay: .95s; }
.hero-title .line:nth-child(3) { animation-delay: 1.15s; }
.hero-title em { font-style: italic; }

@keyframes lineReveal { to { transform: translateY(0); opacity: 1; } }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero-sub {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255, 255, 255, 1);
  line-height: 1.75;
  max-width: 620px;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) 1.4s forwards;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 36px;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) 1.65s forwards;
}

/* Sidebar highlights */
.hero-sidebar {
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) 1.9s forwards;
}
.hero-highlights-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 16px;
}
.hero-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .09);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 1);
  line-height: 1.5;
}
.hero-highlight:last-child { border-bottom: none; }
.highlight-bullet {
  width: 5px; height: 5px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 42px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 2.5s forwards;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100% { opacity:1; } 50% { opacity:.3; } }
.scroll-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

/* ═══════════════════════════════════════════════════════
MARQUEE BAND
═══════════════════════════════════════════════════════ */
.marquee-band {
  background: var(--red);
  overflow: hidden;
  padding: 15px 0;
}
.marquee-inner {
  display: flex;
  animation: marqueeScroll 30s linear infinite;
  width: max-content;
}
.marquee-inner:hover { animation-play-state: paused; }
.m-item {
  display: flex;
  align-items: center;
  gap: 34px;
  padding: 0 34px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .92);
  white-space: nowrap;
}
.m-sep {
  width: 4px; height: 4px;
  background: rgba(255,255,255,.4);
  border-radius: 50%;
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════
STATS
═══════════════════════════════════════════════════════ */
.stats-section {
  background: var(--cream);
  padding: 60px 0;
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--red);
}

.stats-divider {
  width: 1px;
  height: 130px;
  background: var(--grey-light);
  margin: 0 auto;
}

.stat-block { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(52px, 5vw, 68px);
  font-weight: 300;
  color: var(--red);
  line-height: 1;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.stat-num sup { font-size: 26px; vertical-align: super; font-weight: 400; }
.stat-lbl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey);
}

/* ═══════════════════════════════════════════════════════
SERVICES
═══════════════════════════════════════════════════════ */
.services-section { padding: 80px 0; background: var(--white); }

.svc-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--black);
  cursor: pointer;
}
.svc-img {
  position: absolute;
  inset: 0;
}
.svc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease-out), filter .8s;
  filter: grayscale(25%) brightness(.85);
}
.svc-card:hover .svc-img img {
  transform: scale(1.09);
  filter: grayscale(0%) brightness(.72);
}

.svc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.88) 0%, rgba(0,0,0,.18) 65%, transparent 100%);
  transition: background .7s;
  z-index: 1;
}
.svc-card:hover .svc-overlay {
  background: linear-gradient(to top, rgba(188,19,26,.92) 0%, rgba(0,0,0,.22) 60%, transparent 100%);
}

.svc-num {
  position: absolute;
  top: 22px; right: 20px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  transition: color .4s;
}
.svc-card:hover .svc-num { color: rgba(255,255,255,.7); }

.svc-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 2;
  padding: 26px 24px 30px;
}
.svc-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--white);
  transition: border-color .4s, background .4s;
}
.svc-card:hover .svc-icon {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.1);
}
.svc-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 10px;
}
.svc-desc {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.65;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height .55s var(--ease-out), opacity .5s;
}
.svc-card:hover .svc-desc { max-height: 100px; opacity: 1; }

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 16px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s .1s, transform .4s .1s var(--ease-out);
}
.svc-card:hover .svc-link { opacity: 1; transform: translateY(0); }
.svc-link svg { transition: transform .3s; }
.svc-link:hover svg { transform: translateX(5px); }

/* ═══════════════════════════════════════════════════════
CTA + FORM
═══════════════════════════════════════════════════════ */
.cta-section {
  background: var(--red);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

/* Watermark */
.cta-watermark {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -52%);
  font-family: var(--font-display);
  font-size: 22vw;
  font-weight: 700;
  color: rgba(255,255,255,.035);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -.04em;
}

/* Decorative circles */
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 400px; height: 400px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -120px; right: 80px;
  width: 540px; height: 540px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: 50%;
  pointer-events: none;
}

.cta-text .eyebrow { color: rgba(255,255,255,.55); }
.cta-text .eyebrow::before { background: rgba(255,255,255,.55); }

.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 5.5vw, 52px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.cta-heading em { font-style: italic; }

.cta-sub {
  font-size: 16px;
  color: #fff;
  line-height: 1.75;
}

.cta-bullets { margin-top: 36px; }
.cta-bullet {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  padding: 7px 0;
}
.cta-bullet::before {
  content: '';
  width: 6px; height: 6px;
  background: rgba(255,255,255,.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Form card */
.form-card {
  background: var(--white);
  padding: 50px 25px 46px;
  box-shadow: 0 40px 100px rgba(0,0,0,.25);
}
.form-card-title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 6px;
}
.form-card-sub {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 32px;
}
#popupFormContainer .form-card {
  padding: 35px !important;
}
.fgroup {
  position: relative;
  margin-bottom: 24px;
}
.fgroup input,
.fgroup textarea {
  width: 100%;
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,.14);
  background: transparent;
  padding: 14px 0 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  outline: none;
  transition: border-color .3s;
  resize: none;
}
.fgroup textarea { height: 68px; }
.fgroup input:focus,
.fgroup textarea:focus { border-color: var(--red); }

.fgroup label {
  position: absolute;
  top: 14px; left: 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--grey);
  pointer-events: none;
  transition: all .3s var(--ease-out);
}
.fgroup label span {
  color: red;
}
.fgroup input:focus       + label,
.fgroup input:not(:placeholder-shown) + label,
.fgroup textarea:focus    + label,
.fgroup textarea:not(:placeholder-shown) + label {
  top: -2px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}

.form-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 18px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .35s;
  margin-top: 10px;
}
.form-btn:hover { background: var(--red); }

/* Success state */
.form-success {
  text-align: center;
  padding: 48px 0;
  display: none;
}
.form-success.show { display: block; }
.success-icon {
  width: 64px; height: 64px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--white);
  margin: 0 auto 18px;
}
.success-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--black);
  margin-bottom: 8px;
}
.success-sub { font-size: 14px; color: var(--grey); }

/* ═══════════════════════════════════════════════════════
TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testi-section { padding: 80px 0; overflow: hidden; }
/* .testi-section .container { margin-bottom: 50px; } */

.testi-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 6px 60px 12px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.testi-track::-webkit-scrollbar { display: none; }
.testi-track:active { cursor: grabbing; }

.testi-card {
  flex: 0 0 430px;
  scroll-snap-align: start;
  background: var(--cream);
  padding: 40px 36px 38px;
  border-top: 3px solid transparent;
  transition: border-color .4s, transform .4s var(--ease-out), box-shadow .4s;
}
.testi-card:hover {
  border-color: var(--red);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,.10);
}

.testi-stars { display: flex; gap: 4px; margin-bottom: 20px; }
.star { color: var(--red); font-size: 14px; }

.testi-quote-mark {
  font-family: var(--font-display);
  font-size: 88px;
  line-height: .55;
  color: var(--red);
  opacity: .25;
  margin-bottom: 20px;
  display: block;
}
.testi-title {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 12px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--white);
  flex-shrink: 0;
}
.testi-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  color: var(--black);
}
.testi-loc {
  font-size: 11.5px;
  color: var(--grey);
  letter-spacing: .05em;
}

.testi-controls { display: flex; gap: 12px; margin-top: 38px; }
.t-btn {
  width: 52px; height: 52px;
  border: 1.5px solid var(--border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s;
  color: var(--black);
}
.t-btn:hover { border-color: var(--red); background: var(--red); color: var(--white); }

/* ═══════════════════════════════════════════════════════
FAQ
═══════════════════════════════════════════════════════ */
.faq-section {
  /* background: var(--black-soft); */
  padding: 80px 0;
}

.faq-left { position: sticky; top: 110px; }
.faq-left .eyebrow { color: var(--red); }
.faq-left .eyebrow::before { background: var(--red); }

.faq-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  /* color: var(--white); */
  line-height: 1.1;
}
.faq-heading em { font-style: italic; color: var(--red); }

.faq-sub {
  /* color: #fff; */
  line-height: 1.75;
}

.faq-cta-link {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
  gap: 10px;
  transition: gap .3s;
}
.faq-cta-link:hover { gap: 16px; color: var(--red); }

.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,.09); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  /* color: rgba(255,255,255,.9); */
  transition: color .3s;
  user-select: none;
}
/* .faq-q:hover { color: var(--white); } */
.faq-item.open .faq-q { color: var(--red); }

.faq-toggle {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all .4s var(--ease-out);
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform .4s var(--ease-out), opacity .4s;
}
.faq-toggle::before { width: 13px; height: 1.5px; }
.faq-toggle::after  { width: 1.5px; height: 13px; }
.faq-item.open .faq-toggle {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .55s var(--ease-out);
}
.faq-item.open .faq-a { max-height: 220px; }
.faq-a-inner {
  padding-bottom: 26px;
  font-size: 16px;
  font-weight: 400;
  /* color: #fff; */
  line-height: 1.75;
}
/* ═══════════════════════════════════════════════════════
FOOTER
═══════════════════════════════════════════════════════ */
/* footer {
background: var(--black);
border-top: 1px solid rgba(255,255,255,.07);
} */

.footer-body { padding-top: 100px; padding-bottom: 80px; }

.footer-logo {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: .04em;
  display: block;
  margin-bottom: 16px;
}
.footer-logo em { font-style: normal; color: var(--red); }

.footer-tagline {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.44);
  line-height: 1.75;
  max-width: 280px;
}

.soc-btn {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.45);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  transition: all .3s;
  cursor: pointer;
  text-decoration: none;
}
.soc-btn:hover { border-color: var(--red); background: var(--red); color: var(--white); }

.footer-col-title {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
  transition: color .3s;
  text-decoration: none;
}
a.contact-row:hover { color: var(--white); }
.ci { color: var(--red); font-size: 15px; margin-top: 1px; flex-shrink: 0; }

.map-frame {
  width: 100%;
  height: 210px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) invert(.92) brightness(.9);
  opacity: .8;
}

.footer-foot {
  padding: 26px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-foot p {
  font-size: 12.5px;
  color: rgba(255,255,255,.28);
  margin: 0;
}
.footer-foot em { 
  font-style: normal;
  color: var(--red); 
}
/* ═══════════════════════════════════════════════════════
RESPONSIVE OVERRIDES
═══════════════════════════════════════════════════════ */
@media (max-width: 992px) {
  .header-inner { padding: 18px 32px; }
  #header.solid .header-inner { padding: 13px 32px; }
  .hero-content { padding-left: 32px; padding-right: 32px; padding-bottom: 90px; }
  .faq-left { position: static; }
  .testi-track { padding: 6px 32px 12px; }
  .footer-body { padding-top: 70px; padding-bottom: 60px; }
}
@media (max-width: 768px) {
  .header-inner { padding: 14px 20px; }
  #header.solid .header-inner { padding: 11px 20px; }
  .hero-content { padding-left: 22px; padding-right: 22px; padding-bottom: 80px; }
  .stats-section { padding: 40px 0; }
  .testi-track { padding: 6px 20px 12px; }
  .testi-card { flex: 0 0 310px; }
  .faq-section { padding: 80px 0; }
  .footer-body { padding-top: 60px; padding-bottom: 50px; }
  .footer-foot { flex-direction: column; gap: 6px; text-align: center; }
}
.header-logo img {
  height: 40px;
}
@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1250px;
  }
}
/* ═══════════════════════════════════════════════════════
HEADER CONTACTS (replaces Get In Touch button)
═══════════════════════════════════════════════════════ */
.header-contacts {
  display: flex;
  align-items: center;
  gap: 0;
}

.hc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  text-decoration: none;
  transition: opacity .3s;
}
.hc-item:hover { opacity: .75; }

.hc-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--white);
  transition: color .5s;
}
.hc-icon svg {
  width: 100%;
  height: 100%;
}
#header.solid .hc-icon { color: var(--black); }

.hc-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hc-label {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .08em;
  color: rgba(255,255,255,.8);
  transition: color .5s;
  line-height: 2;
}
#header.solid .hc-label { color: var(--grey); }

.hc-num {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  transition: color .5s;
  line-height: 1.2;
  /* letter-spacing: .01em; */
}
#header.solid .hc-num { color: var(--black); }

.hc-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.2);
  flex-shrink: 0;
  transition: background .5s;
}
#header.solid .hc-divider { background: var(--border); }

/* hero-sidebar removed from hero — no mobile overrides needed */

/* ═══════════════════════════════════════════════════════
HERO VIDEO — desktop shows video, mobile shows fallback img
═══════════════════════════════════════════════════════ */
.hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(15%) brightness(.82);
}
.hero-img-fallback {
  display: none;
  width: 100%; height: 100%;
  object-fit: cover;
}
/* On mobile hide video, show image (saves 19 MB on mobile) */
@media (max-width: 767px) {
  .hero-video        { display: none; }
  .hero-img-fallback { display: block; }
}

/* ═══════════════════════════════════════════════════════
TESTIMONIALS — Google review card style
═══════════════════════════════════════════════════════ */
.testi-section {
  padding: 110px 0;
  background: var(--cream);
  overflow: hidden;
}

.testi-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--black);
  line-height: 1.15;
}

/* Google rating badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--white);
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 14px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.07);
}
.google-g {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.google-badge-text { display: flex; flex-direction: column; gap: 2px; }
.google-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.google-score {
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
}
.google-stars {
  color: #FBBC05;
  font-size: 14px;
  letter-spacing: 1px;
}
.google-count {
  font-size: 12px;
  color: var(--grey);
  text-align: left;
}

/* Carousel track */
.testi-track {
  display: flex;
  gap: 20px;
  padding: 8px 0 16px;
  overflow: hidden; /* JS controls scrolling */
}

/* Google-style card */
.testi-card {
  flex: 0 0 calc(25% - 15px);
  background: var(--white);
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 24px 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  transition: box-shadow .3s, transform .3s;
}
.testi-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
  transform: translateY(-3px);
}

.testi-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}
.testi-author-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
  flex-shrink: 0;
}
.testi-author-info { display: flex; flex-direction: column; gap: 2px; }
.testi-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--black);
  line-height: 1.2;
}
.testi-date {
  font-size: 11.5px;
  color: var(--grey);
}
.google-icon-sm {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Stars row */
.testi-stars-row {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 12px;
}
.tstar {
  color: #FBBC05;
  font-size: 16px;
}
.verified-check {
  width: 18px;
  height: 18px;
  margin-left: 4px;
}

/* Review text */
.testi-text {
  font-size: 15px;
  color: #444;
  line-height: 1.7;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dot navigation */
.testi-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.tdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: #d0d0d0;
  cursor: pointer;
  padding: 0;
  transition: background .3s, transform .3s;
}
.tdot.active {
  background: #FBBC05;
  transform: scale(1.25);
}

/* Responsive cards */
@media (max-width: 1100px) {
  .testi-card { flex: 0 0 calc(33.333% - 14px); }
}
@media (max-width: 767px) {
  .testi-section { padding: 80px 0; }
  .testi-card { flex: 0 0 calc(85% - 10px); }
  .testi-track { overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .testi-card { scroll-snap-align: start; }
}

/* ═══════════════════════════════════════════════════════
FOOTER — dark centered rounded design
═══════════════════════════════════════════════════════ */
/* .footer-new {
background: #111010;
padding: 80px 0 0;
} */

.footer-card {
  background: #1e1e1e;
  border-top-left-radius: 3rem;
  border-top-right-radius: 3rem;
  padding: 60px 48px;
  /* max-width: 1000px;
  margin: 0 auto; */
}

.footer-card-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}

.footer-contact-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 32px;
}

.footer-vdivider {
  width: 1px;
  height: 100px;
  background: rgba(255,255,255,.1);
  flex-shrink: 0;
  align-self: center;
}

.footer-ci-icon {
  width: 48px;
  height: 48px;
  color: var(--white);
  margin-bottom: 20px;
  opacity: .85;
}
.footer-ci-icon svg {
  width: 100%;
  height: 100%;
}

.footer-ci-text {
  font-size: 16px;
  /* font-weight: 300; */
  color: rgba(255,255,255,1);
  line-height: 1.7;
  text-decoration: none;
}
.footer-ci-link { transition: color .3s; }
.footer-ci-link:hover { color: var(--white); }

.footer-copy {
  text-align: center;
  padding: 15px 0;
}
.footer-copy p {
  font-size: 13px;
  color: rgba(0,0,0,.8);
  margin: 0;
}

@media (max-width: 767px) {
  .footer-card { padding: 40px 24px; border-radius: 16px; }
  .footer-card-inner { flex-direction: column; align-items: center; gap: 32px; }
  .footer-vdivider { display: none; }
  .footer-contact-item { padding: 0; }
  .footer-new { padding: 0px 16px 0; }
}

.contact-container {
  position: fixed;
  right: 0;
  bottom: 20px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}
.call-us, .whatsapp-us {
  background-color: #fff;
  border: 1px solid #eee;
  border-radius: 18px 0 0 18px;
  max-width: 52px;
  margin-bottom: 10px;
  text-align: center;
  padding: 5px 6px;
  transition: max-width 0.5s ease-in-out, opacity 0.5s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.call-us a, .whatsapp-us a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--bs-body-color);
}
.whatsapp-us img {
  width: 30px;
  height: 30px;
  margin-right: 12px;
  margin-left: 10px;
}
.call-us:hover, .whatsapp-us:hover {
  max-width: 255px;
}
.chat-with-us p {
  margin-bottom: 0;
  line-height: 20px;
  font-weight: 500;
  font-size: 16px;
}

@media (max-width: 575px) {
  .call-us:hover, .whatsapp-us:hover{
    max-width: 50px !important;
  }
}
.call-us svg,
.whatsapp-us svg {
  width: 30px !important;
  margin-right: 10px;
  margin-left: 6px;
}
.error {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}
.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgb(0 0 0 / .4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.popup-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 12px;
  /* background-color: #141414; */
  /* padding: 25px; */
}

@media(min-width:768px) and (max-width:1200px) {
  .popup-content {
    width: 450px
  }
}
@media(min-width: 1200px) {
  .popup-content {
    width: 28%;
  }
}
@media(max-width: 547px) {
  .popup-content {
    width: 95%
  }
}
.form-trigger {
  cursor: pointer
}
.close{
  position: absolute;
  top: -15px;
  right: -15px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

/* hover effect */
.close:hover{
  color: #fff;
  transform: rotate(90deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.iti {
  width: 100%;
}

/* ═══════════════════════════════════════════════════════
PHONE FIELD — floating label fix for intlTelInput
(intlTelInput wraps <input> in .iti, breaking CSS
sibling selectors — use JS-toggled classes instead)
═══════════════════════════════════════════════════════ */
.fgroup-phone label {
  left: 90px; /* clear the flag + dial-code area */
}
.fgroup-phone.is-focused label,
.fgroup-phone.has-value label {
  top: -2px;
  left: 0;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--red);
}

/* ═══════════════════════════════════════════════════════
WHY MEDIXAVA — horizontal grid inside stats section
═══════════════════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-bottom: 1px solid var(--grey-light);
  margin-bottom: 56px;
  padding-bottom: 40px;
}
.why-label {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 20px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 0 24px 0 0;
  /* border-right: 1px solid var(--grey-light); */
  font-size: 13px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.6;
}
.why-item:last-child {
  border-right: none;
  padding-right: 0;
}
.why-item .highlight-bullet {
  background: var(--red);
  flex-shrink: 0;
  margin-top: 5px;
}
@media (max-width: 991.98px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .why-item {
    border-right: none;
    border-bottom: 1px solid var(--grey-light);
    padding: 14px 0;
  }
  .why-item:last-child { border-bottom: none; }
}
@media (max-width: 575px) {
  .why-grid { grid-template-columns: 1fr; }
  .faq-q {
    font-size: 16px;
  }
  .hc-item {
    padding: 10px !important;
  }
  .hc-icon svg {
    width: 30px !important;
  }
}

 /* ═══════════════════════════════════════════════════════
    V2 IMPROVEMENTS — all scoped to avoid conflicts
    ═══════════════════════════════════════════════════════ */
    
    /* ── HEADER: transparent overlay (same as main) ───── */
    #header {
      position: absolute;
      top: 0; left: 0; right: 0;
      z-index: 900;
    }
    
    /* ── HERO NAV DOT INDICATOR ────────────────────────── */
    .hero-scroll-progress {
      position: absolute;
      bottom: 44px; right: 40px;
      z-index: 4;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
    .hsp-dot {
      width: 5px; height: 5px;
      border-radius: 50%;
      background: rgba(255,255,255,.35);
      transition: background .4s, transform .4s;
    }
    .hsp-dot.active { background: var(--red); transform: scale(1.6); }
    @media (max-width: 767px) { .hero-scroll-progress { display: none; } }
    
    /* ── SERVICES: list + image panel ──────────────────── */
    .svc-list-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      margin-top: 56px;
      min-height: 480px;
    }
    /* Left: numbered list */
    .svc-list {
      border-top: 1px solid var(--grey-light);
    }
    .svc-row {
      display: grid;
      grid-template-columns: 52px 1fr 28px;
      align-items: start;
      gap: 0 16px;
      padding: 28px 32px 28px 0;
      border-bottom: 1px solid var(--grey-light);
      cursor: pointer;
      transition: background .25s;
    }
    .svc-row:hover { background: rgba(0,0,0,.02); }
    .svc-row-num {
      font-family: var(--font-display);
      font-size: 11px; font-weight: 700; letter-spacing: .22em;
      color: var(--grey);
      padding-top: 7px;
      transition: color .3s;
    }
    .svc-row.is-active .svc-row-num,
    .svc-row:hover .svc-row-num { color: var(--red); }
    .svc-row-title {
      font-family: var(--font-display);
      font-size: clamp(18px, 1.8vw, 26px);
      font-weight: 400;
      color: var(--black);
      margin: 0; line-height: 1.2;
      padding-top: 4px;
      transition: color .25s;
    }
    .svc-row.is-active .svc-row-title { color: var(--black); }
    /* Expandable description */
    .svc-row-expand {
      grid-column: 2;
      max-height: 0;
      overflow: hidden;
      transition: max-height .5s var(--ease-out), opacity .4s;
      opacity: 0;
    }
    .svc-row.is-active .svc-row-expand {
      max-height: 160px;
      opacity: 1;
    }
    .svc-row-desc {
      font-size: 14px; color: var(--grey);
      line-height: 1.72; margin: 10px 0 14px;
    }
    .svc-row-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 10px; font-weight: 700; letter-spacing: .2em;
      text-transform: uppercase; color: var(--red); text-decoration: none;
      transition: gap .25s;
    }
    .svc-row-link:hover { gap: 10px; }
    /* Arrow */
    .svc-row-arrow {
      font-size: 18px; color: var(--grey-light);
      padding-top: 4px;
      transition: color .3s, transform .3s;
      line-height: 1;
    }
    .svc-row.is-active .svc-row-arrow,
    .svc-row:hover .svc-row-arrow { color: var(--red); transform: translate(3px, -3px); }
    /* Right: image panel */
    .svc-visual {
      position: relative;
      overflow: hidden;
      background: #111;
    }
    .svc-vis-img {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
      opacity: 0;
      transition: opacity .65s, transform .65s;
      transform: scale(1.04);
    }
    .svc-vis-img.is-active {
      opacity: 1;
      transform: scale(1);
    }
    /* .svc-vis-dark {
      position: absolute; inset: 0;
      background: linear-gradient(145deg, rgba(0,0,0,.35) 0%, transparent 55%);
      z-index: 1;
    } */
    /* Mobile: hide image panel, full-width list */
    @media (max-width: 991px) {
      .svc-list-layout { grid-template-columns: 1fr; min-height: auto; }
      .svc-visual { display: none; }
      .svc-row { padding-right: 0; grid-template-columns: 44px 1fr 24px; }
      .svc-row-title { font-size: 18px; }
      .svc-row.is-active .svc-row-expand { max-height: 200px; }
    }
    @media (max-width: 575px) {
      .svc-row { padding: 22px 0; gap: 0 12px; }
      .svc-row-num { font-size: 10px; }
      .svc-row-title { font-size: 16px; }
    }
    
    /* ── PROCESS SECTION ───────────────────────────────── */
    .process-section {
      padding: 110px 0;
      background: var(--black);
      position: relative;
      overflow: hidden;
    }
    .process-section::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(188,19,26,.5), transparent);
    }
    .process-eyebrow { color: rgba(255,255,255,.45); }
    .process-eyebrow::before { background: rgba(255,255,255,.35) !important; }
    .process-heading {
      font-family: var(--font-display);
      font-size: clamp(36px, 4vw, 52px);
      font-weight: 400;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 0;
    }
    .process-heading em { font-style: italic; color: rgba(255,255,255,.55); }
    
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      margin-top: 72px;
      position: relative;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 30px; left: 30px; right: 30px;
      height: 1px;
      background: rgba(255,255,255,.1);
      z-index: 0;
    }
    .process-step {
      padding: 0 32px 0 0;
      position: relative;
      z-index: 1;
    }
    .process-step:last-child { padding-right: 0; }
    .ps-num-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 28px;
    }
    .ps-num {
      width: 60px; height: 60px;
      border-radius: 50%;
      border: 1px solid rgba(188,19,26,.45);
      background: rgba(188,19,26,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 300;
      color: var(--red);
      flex-shrink: 0;
      transition: background .4s, border-color .4s;
    }
    .process-step:hover .ps-num {
      background: var(--red);
      border-color: var(--red);
      color: #fff;
    }
    .ps-connector {
      flex: 1;
      height: 1px;
      background: rgba(255,255,255,.1);
    }
    .process-step:last-child .ps-connector { display: none; }
    .ps-title {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      color: var(--white);
      margin-bottom: 10px;
    }
    .ps-desc {
      font-size: 14px;
      color: rgba(255,255,255,.48);
      line-height: 1.7;
    }
    @media (max-width: 991.98px) {
      .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px 40px;
      }
      .process-steps::before { display: none; }
      .ps-connector { display: none; }
    }
    @media (max-width: 575.98px) {
      .process-steps { grid-template-columns: 1fr; gap: 40px; }
      .process-section { padding: 80px 0; }
    }
    
    /* ── PORTFOLIO SECTION ─────────────────────────────── */
    .portfolio-section {
      padding: 110px 0;
      background: var(--white);
    }
    .portfolio-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 56px;
    }
    /* Featured first item spans 2 rows */
    .portfolio-item:first-child {
      grid-row: span 2;
    }
    .portfolio-item {
      position: relative;
      overflow: hidden;
      background: var(--black);
    }
    .portfolio-item:first-child { aspect-ratio: auto; min-height: 480px; }
    .portfolio-item:not(:first-child) { aspect-ratio: 4/3; }
    .portfolio-img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform .8s var(--ease-out), filter .6s;
      filter: grayscale(15%) brightness(.9);
    }
    .portfolio-item:hover .portfolio-img {
      transform: scale(1.07);
      filter: grayscale(0%) brightness(.72);
    }
    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.85) 0%, transparent 55%);
      z-index: 1;
    }
    .portfolio-label {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      z-index: 2;
      padding: 22px 24px;
      transform: translateY(6px);
      opacity: 0;
      transition: all .4s var(--ease-out);
    }
    .portfolio-item:hover .portfolio-label { opacity: 1; transform: translateY(0); }
    .portfolio-cat {
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 4px;
    }
    .portfolio-name {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      color: #fff;
      line-height: 1.2;
    }
    /* Always show labels on mobile */
    @media (max-width: 767px) {
      .portfolio-label { opacity: 1; transform: translateY(0); }
      .portfolio-grid { grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 36px; }
      .portfolio-item:first-child { grid-row: span 1; aspect-ratio: 4/3; }
    }
    @media (max-width: 479px) {
      .portfolio-grid { grid-template-columns: 1fr; }
    }
    .portfolio-cta-row {
      margin-top: 44px;
      text-align: center;
    }
    
    /* ── CLIENT LOGOS STRIP ────────────────────────────── */
    .clients-section {
      padding: 56px 0;
      background: var(--cream);
      border-top: 1px solid var(--grey-light);
      border-bottom: 1px solid var(--grey-light);
    }
    .clients-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--grey);
      text-align: center;
      margin-bottom: 36px;
    }
    .clients-logos {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
    }
    .client-logo-item {
      padding: 8px 40px;
      border-right: 1px solid var(--grey-light);
      opacity: .35;
      filter: grayscale(1);
      transition: opacity .4s, filter .4s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .client-logo-item:last-child { border-right: none; }
    .client-logo-item:hover { opacity: .7; filter: grayscale(0); }
    .client-logo-text {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 600;
      color: var(--black);
      letter-spacing: .04em;
      white-space: nowrap;
    }
    @media (max-width: 767px) {
      .client-logo-item { padding: 10px 24px; }
      .clients-section { padding: 44px 0; }
    }
    
    /* ── CTA LEFT SIDE: trust icons (replaces bullets) ──── */
    .cta-trust-items {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 40px;
    }
    .cta-trust-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }
    .cti-icon {
      width: 42px; height: 42px;
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: rgba(255,255,255,.7);
      transition: border-color .3s, background .3s;
    }
    .cta-trust-item:hover .cti-icon {
      border-color: rgba(255,255,255,.5);
      background: rgba(255,255,255,.07);
    }
    .cti-text strong {
      display: block;
      font-size: 14px;
      font-weight: 600;
      color: #fff;
      margin-bottom: 2px;
    }
    .cti-text span {
      font-size: 13px;
      color: rgba(255,255,255,.55);
      line-height: 1.5;
    }
    
    /* ── STICKY NAV DOTS (sections) ────────────────────── */
    .side-nav {
      position: fixed;
      right: 24px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 800;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .snav-dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: rgba(0,0,0,.2);
      border: 1.5px solid rgba(0,0,0,.3);
      cursor: pointer;
      transition: all .3s;
    }
    .snav-dot.active {
      background: var(--red);
      border-color: var(--red);
      transform: scale(1.35);
    }
    /* Invert colours over dark sections */
    .side-nav.on-dark .snav-dot { background: rgba(255,255,255,.2); border-color: rgba(255,255,255,.35); }
    .side-nav.on-dark .snav-dot.active { background: var(--red); border-color: var(--red); }
    @media (max-width: 1199px) { .side-nav { display: none; } }
    
    /* ── SECTION TRANSITIONS: smoother reveal ──────────── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease-out), transform .75s var(--ease-out); }
    .reveal.in { opacity: 1; transform: none; }
    
    /* ── FAQ: improved open state ──────────────────────── */
    .faq-item.open .faq-q { color: var(--red); }
    .faq-item.open .faq-toggle::before { background: var(--red); }
    .faq-item.open .faq-toggle::after  { background: var(--red); transform: rotate(0deg); opacity: 0; }
    
    /* ── STATS V2 — counter cards row ──────────────────── */
    .stat-cards-row {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-right: none;
      margin-bottom: 60px;
    }
    .stat-card-v2 {
      padding: 40px 32px 36px;
      /* border-right: 1px solid var(--grey-light); */
      position: relative;
      overflow: hidden;
    }
    .stat-card-v2::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .45s var(--ease-out);
    }
    /* .stat-card-v2:hover::before { transform: scaleX(1); } */
    .scv2-lbl {
      font-size: 13px;
      color: var(--grey);
      margin-top: 6px;
      font-weight: 500;
      letter-spacing: .01em;
    }
    
    /* ── STATS V2 — lower two-column row ───────────────── */
    .stats-lower {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: start;
    }
    .stats-lower-right {
      border-left: 1px solid var(--grey-light);
      padding-left: 52px;
    }
    .why-checks-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--grey);
      margin-bottom: 22px;
    }
    .why-checks {
      list-style: none;
      margin: 0; padding: 0;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .why-check {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 14px;
      color: var(--black);
      line-height: 1.65;
    }
    .why-check-icon {
      flex-shrink: 0;
      width: 20px; height: 20px;
      border-radius: 50%;
      background: var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 2px;
    }
    
    @media (max-width: 991px) {
      .stat-cards-row { grid-template-columns: repeat(2, 1fr); }
      .stats-lower { grid-template-columns: 1fr; gap: 40px; }
      .stats-lower-right { border-left: none; padding-left: 0; border-top: 1px solid var(--grey-light); padding-top: 36px; }
    }
    @media (max-width: 575px) {
      .stat-card-v2 { padding: 28px 20px 24px;
      }
      .hero {
        min-height: 700px;
      }
    }