/* ═══════════════════════════════════════════
   WATTHAUS STRATEGY — Shared Stylesheet
   ═══════════════════════════════════════════ */

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

:root {
  --black:      #000000;
  --blue:       #003B78;
  --blue-mid:   #005BAA;
  --cream:      #F8F1D6;
  --white:      #FFFFFF;
  --grey-light: #F4F4F4;
  --grey:       #8A8A8A;
  --grey-dark:  #3A3A3A;
  --text:       #111111;
  --radius:     14px;
  --radius-lg:  24px;
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* ── Type scale ── */
  --fs-label:   0.72rem;   /* section labels, badges */
  --fs-xs:      0.78rem;   /* meta, captions */
  --fs-sm:      0.875rem;  /* card body, list items */
  --fs-body:    0.95rem;   /* main paragraph / section sub */
  --fs-md:      1rem;      /* slightly larger body */
  --fs-h4:      1.1rem;    /* card headings */
  --fs-h3:      1.25rem;   /* sub-section headings */
}

html { scroll-behavior: auto; overflow-x: hidden; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
}

/* ─── PAGE LOADER (weave spinner) ─── */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.is-loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.ws-loader-container {
  position: relative;
  width: 160px;
  height: 160px;
  transform-style: preserve-3d;
  perspective: 1200px;
}
.ws-loader-node {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #ffaa00;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 20px #ffaa00,
    0 0 40px rgba(255, 170, 0, 0.6);
  animation: wsNodePulse 1.6s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite;
}
.ws-loader-thread {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(255, 170, 0, 0.8), transparent);
  box-shadow: 0 0 10px rgba(255, 170, 0, 0.5);
  transform-origin: center;
}
.ws-loader-thread.t1 { width: 100%; height: 2px; top: 30%; left: 0; animation: wsWeave1 2s cubic-bezier(0.45, 0, 0.55, 1) infinite; }
.ws-loader-thread.t2 { width: 2px; height: 100%; top: 0; left: 70%; animation: wsWeave2 2.2s cubic-bezier(0.68, -0.55, 0.27, 1.55) infinite; }
.ws-loader-thread.t3 { width: 100%; height: 2px; bottom: 30%; left: 0; animation: wsWeave3 2.4s cubic-bezier(0.23, 1, 0.32, 1) infinite; }
.ws-loader-thread.t4 { width: 2px; height: 100%; top: 0; left: 30%; animation: wsWeave4 2.6s cubic-bezier(0.36, 0, 0.66, -0.56) infinite; }

@keyframes wsNodePulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 0 20px #ffaa00, 0 0 40px rgba(255, 170, 0, 0.6);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.4);
    box-shadow: 0 0 30px #ffaa00, 0 0 60px rgba(255, 170, 0, 0.8);
  }
}
@keyframes wsWeave1 {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateZ(0deg); opacity: 0.8; }
  50% { transform: translateY(40px) rotateX(60deg) rotateZ(20deg); opacity: 1; }
}
@keyframes wsWeave2 {
  0%, 100% { transform: translateX(0) rotateY(0deg) rotateZ(0deg); opacity: 0.8; }
  50% { transform: translateX(-40px) rotateY(60deg) rotateZ(-20deg); opacity: 1; }
}
@keyframes wsWeave3 {
  0%, 100% { transform: translateY(0) rotateX(0deg) rotateZ(0deg); opacity: 0.8; }
  50% { transform: translateY(-40px) rotateX(-60deg) rotateZ(15deg); opacity: 1; }
}
@keyframes wsWeave4 {
  0%, 100% { transform: translateX(0) rotateY(0deg) rotateZ(0deg); opacity: 0.8; }
  50% { transform: translateX(40px) rotateY(-60deg) rotateZ(-15deg); opacity: 1; }
}

/* ─── SITE HEADER (topbar + nav combined) ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10000;
  display: flex;
  flex-direction: column;
}

/* ─── TOP BAR ─── */
.topbar {
  background: #111;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 5vw;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  position: static;
  z-index: unset;
}
.topbar-left { display: flex; align-items: center; gap: 0.75rem; }
.topbar-linkedin { color: rgba(255,255,255,0.65); display: flex; align-items: center; transition: color 0.2s; }
.topbar-linkedin:hover { color: #fff; }
.topbar-instagram { color: rgba(255,255,255,0.65); display: flex; align-items: center; transition: color 0.2s; margin-left: -0.25rem; }
.topbar-instagram:hover { color: #fff; }
.topbar-sep { color: rgba(255,255,255,0.2); }
.topbar-email { color: rgba(255,255,255,0.65); text-decoration: none; transition: color 0.2s; }
.topbar-email:hover { color: #fff; }
.topbar-right { display: flex; align-items: center; gap: 0.85rem; }
.topbar-avatars { display: flex; align-items: center; }
.topbar-avatars img {
  width: 28px; height: 28px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 2px solid #111;
  margin-left: -8px;
}
.topbar-avatars img:first-child { margin-left: 0; }
.topbar-cta {
  color: #f97316;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.78rem;
  transition: color 0.2s;
  white-space: nowrap;
}
.topbar-cta:hover { color: #fff; }
@media (max-width: 600px) {
  .topbar-email { display: none; }
  .topbar-sep { display: none; }
}

/* ─── PROGRESS BAR ─── */
#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--cream));
  z-index: 9999;
  pointer-events: none;
}

/* ─── FILM GRAIN ─── */
#grain {
  position: fixed;
  inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
  opacity: 0.022;
  animation: grain 0.5s steps(1) infinite;
}
@keyframes grain {
  0%,100%{ transform:translate(0,0) }
  10%    { transform:translate(-3%,-4%) }
  20%    { transform:translate(-6%, 3%) }
  30%    { transform:translate( 2%,-5%) }
  40%    { transform:translate(-1%, 6%) }
  50%    { transform:translate( 5%,-2%) }
  60%    { transform:translate(-4%, 1%) }
  70%    { transform:translate( 3%, 4%) }
  80%    { transform:translate(-2%,-3%) }
  90%    { transform:translate( 4%, 2%) }
}

/* ─── NAVIGATION ─── */
nav {
  position: static;
  z-index: unset;
  height: 72px;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-logo img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #ffffff; }
.nav-cta {
  background: var(--cream) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.4rem !important;
  border-radius: 100px !important;
  font-weight: 700 !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 20px rgba(248,241,214,0.35) !important;
  color: var(--black) !important;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 114px; left: 0; right: 0;
  background: var(--black);
  padding: 2rem 5vw;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  flex-direction: column;
  gap: 1.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--black);
  padding: 10rem 5vw 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 50%, rgba(0,59,120,0.4) 0%, transparent 70%);
}
.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
}
.page-hero-label::before {
  content: '';
  width: 18px; height: 1px;
  background: var(--cream);
}
.page-hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero h1 .highlight { color: var(--cream); }
.page-hero p {
  margin-top: 1.4rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: rgba(255,255,255,0.4); text-decoration: none; }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* ─── SECTION BASE ─── */
.section-pad   { padding: 7rem 5vw; }
.section-pad-sm{ padding: 4.5rem 5vw; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  width: 18px; height: 1.5px;
  background: var(--blue);
}
.section-label.light { color: var(--cream); }
.section-label.light::before { background: var(--cream); }

h2.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 1.2rem;
}
h2.section-title.light { color: var(--white); }
h2.section-title .char { display: inline-block; }

.section-sub {
  font-size: var(--fs-body);
  color: var(--grey);
  max-width: 520px;
  line-height: 1.75;
}
.section-sub.light { color: rgba(255,255,255,0.55); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,59,120,0.35);
  background: var(--blue-mid);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--blue);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: 1.5px solid var(--blue);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--blue); color: var(--white); }

.btn-cream {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--cream);
  color: var(--black);
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}
.btn-cream:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(248,241,214,0.4);
}

/* ─── MAGNETIC ─── */
.magnetic { display: inline-block; }

/* ─── STATS BAR ─── */
.stats-bar {
  background: var(--black);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  padding: 3.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 0.4rem;
  display: block;
}
.stat-suffix {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--cream);
}
.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ─── SHARED LAYOUT UTILITIES ─── */
/* Two-col header row used across pages (Services, Finance, CTA) */
.section-header-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 4rem;
}
/* Consultation CTA row: heading + button */
.cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: center;
}

/* ─── BRAND CAROUSEL ─── */
.brand-carousel-section {
  background: var(--grey-light);
  padding: 4rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.carousel-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2.5rem;
}
.carousel-track-wrap {
  overflow: hidden;
  position: relative;
}
.carousel-track-wrap::before,
.carousel-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.carousel-track-wrap::before { left: 0; background: linear-gradient(90deg, var(--grey-light), transparent); }
.carousel-track-wrap::after  { right: 0; background: linear-gradient(-90deg, var(--grey-light), transparent); }
.carousel-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  animation: scroll-logos 22s linear infinite;
  width: max-content;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes scroll-logos {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.carousel-logo {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: opacity(0.85);
  transition: filter 0.3s;
  flex-shrink: 0;
}
.carousel-logo:hover { filter: opacity(1); transform: scale(1.05); }

/* ─── SERVICES GRID ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 3rem;
  transition: background 0.3s;
  position: relative;
}
.service-card:hover { background: var(--grey-light); }
.service-icon {
  width: 52px; height: 52px;
  background: var(--cream);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
  transition: transform 0.3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.service-tagline {
  font-size: var(--fs-label);
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.service-card p {
  font-size: var(--fs-sm);
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: gap 0.2s;
}
.service-link:hover { gap: 0.8rem; }

/* ─── PACKAGES ─── */
.packages-tabs {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 3rem;
  background: var(--grey-light);
  padding: 4px;
  border-radius: 100px;
  width: fit-content;
  border: 1px solid rgba(0,0,0,0.08);
}
.tab-btn {
  padding: 0.55rem 1.5rem;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: var(--grey);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.22s;
  font-family: 'Inter', sans-serif;
}
.tab-btn.active { background: var(--blue); color: var(--white); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.package-includes-label {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: inherit;
}
.package-card-img {
  margin: -2.5rem -2.5rem 1.5rem;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.package-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.package-card {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.1);
  border-color: rgba(0,59,120,0.2);
}
.package-card.featured {
  background: var(--blue);
  border-color: var(--blue);
}
.package-card.featured * { color: var(--white) !important; }
.package-card.featured .package-specs li::before { background: rgba(255,255,255,0.15); color: var(--cream); }
.package-card.featured .btn-package {
  background: var(--cream) !important;
  color: var(--black) !important;
  border-color: var(--cream) !important;
}
.package-card.featured .btn-package:hover {
  background: var(--white) !important;
  border-color: var(--white) !important;
}
.package-badge {
  display: inline-block;
  background: var(--cream);
  color: var(--black);
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.22rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.package-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.package-sub { font-size: var(--fs-sm); color: var(--grey); margin-bottom: 2rem; }
.package-price { margin-bottom: 2rem; }
.package-price .amount {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.04em;
  color: var(--blue);
}
.package-card.featured .package-price .amount { color: var(--cream); }
.package-price .currency { font-size: 1.1rem; vertical-align: super; }
.package-price .note { font-size: 0.72rem; color: var(--grey); margin-top: 0.2rem; }
.package-specs { list-style: none; margin-bottom: 2rem; }
.package-specs li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: var(--fs-sm);
  color: var(--grey-dark);
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.package-card.featured .package-specs li { border-bottom-color: rgba(255,255,255,0.1); }
.package-specs li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(0,59,120,0.1);
  color: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  flex-shrink: 0;
}
.btn-package {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.9rem;
  border-radius: 100px;
  border: 1.5px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  transition: background 0.2s, color 0.2s;
}
.btn-package:hover { background: var(--blue); color: var(--white); }

/* ─── TEAM CARDS ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.team-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.07);
  background: var(--white);
  transition: transform 0.4s, box-shadow 0.4s;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 56px rgba(0,0,0,0.1);
}
.team-img-wrap {
  height: 340px;
  overflow: hidden;
  position: relative;
  background: var(--grey-light);
}
.team-img-wrap img {
  width: 100%; height: 100%;
  object-fit: contain;
  object-position: center top;
  transition: transform 0.6s;
}
.team-card:hover .team-img-wrap img { transform: scale(1.04); }
.team-info {
  padding: 1.8rem;
  background: var(--white);
}
.team-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  color: var(--text);
}
.team-role {
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.team-links { display: flex; gap: 0.6rem; }
.team-link {
  width: 34px; height: 34px;
  background: var(--grey-light);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-dark);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
.team-link:hover { background: var(--blue); color: var(--white); border-color: var(--blue); }

/* ─── PROCESS STEPS ─── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 27px; left: 56px; right: 56px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), rgba(0,59,120,0.2), transparent);
}
.step-num {
  width: 54px; height: 54px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.process-step h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: var(--fs-h4);
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.process-step p { font-size: var(--fs-sm); color: var(--grey); line-height: 1.65; }

/* ─── FINANCE CARDS ─── */
.finance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.finance-card {
  background: var(--white);
  border: 1.5px solid rgba(0,0,0,0.07);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.finance-card:hover {
  border-color: rgba(0,59,120,0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.finance-bank {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  color: var(--blue);
}
.finance-product { font-size: var(--fs-xs); color: var(--grey); margin-bottom: 0.8rem; }
.finance-details { font-size: var(--fs-sm); color: var(--grey-dark); line-height: 1.5; }
.finance-limit {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text);
  margin-top: 0.7rem;
}

/* ─── ABOUT — INTRO SPLIT ─── */
.intro-split-section {
  background: var(--white);
  padding: 5rem 5vw;
}
.intro-split-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}
/* Bottom row: Vision | Mission, sharing the same columns so they sit
   side by side and align with the photo / paragraph above. */
.intro-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 5rem;
  align-items: stretch;
  max-width: 1200px;
  margin: 1.2rem auto 0;
}

/* Left column */
.intro-split-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-photo-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.10);
  /* Stretches to the paragraph block's height (grid align-items: stretch). */
}
.intro-photo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.intro-vm-card {
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem;
}
.intro-vm-vision {
  background: var(--blue);
}
.intro-vm-mission {
  background: var(--cream);
}
.intro-vm-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 0.65rem;
  letter-spacing: -0.01em;
}
.intro-vm-vision .intro-vm-label { color: var(--white); }
.intro-vm-mission .intro-vm-label { color: var(--text); }
.intro-vm-vision p  { font-size: var(--fs-sm); color: rgba(255,255,255,0.72); line-height: 1.65; }
.intro-vm-mission p { font-size: var(--fs-sm); color: var(--grey-dark); line-height: 1.65; }

/* Right column */
.intro-tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.intro-desc {
  font-size: var(--fs-body);
  color: var(--grey-dark);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.intro-stats-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}
.intro-stat {
  background: var(--grey-light);
  border-radius: var(--radius);
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.intro-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1;
}
.intro-stat-label {
  font-size: 0.76rem;
  color: var(--grey);
  font-weight: 500;
  line-height: 1.4;
}

/* ─── WORX PARTNERSHIP ─── */
.worx-section {
  background: var(--blue);
  padding: 6rem 5vw;
  position: relative;
}
.worx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
/* Framed image container — no hover, full image visible */
.worx-img-frame {
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 1rem;
  box-shadow: 0 24px 64px rgba(0,0,0,0.35);
}
.worx-img-frame img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  object-fit: contain;
}
/* Legacy: keep .worx-img for any old references */
.worx-img { position: relative; overflow: hidden; }
.worx-img img { width:100%; height:100%; object-fit:cover; }
.worx-img-overlay { display: none; }
.worx-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0;
}
.worx-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(248,241,214,0.15);
  border: 1px solid rgba(248,241,214,0.3);
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 2rem;
  width: fit-content;
}
.worx-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.worx-content h2 .highlight { color: var(--cream); }
.worx-content p {
  font-size: var(--fs-body);
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 420px;
}
.worx-points {
  list-style: none;
  margin-bottom: 2.5rem;
}
.worx-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.9rem;
}
.worx-points li::before {
  content: '✓';
  color: var(--cream);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* worx new elements */
.worx-announce {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.worx-announce p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.worx-announce p strong { color: var(--white); }
.worx-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.worx-quote {
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--cream);
  background: rgba(255,255,255,0.06);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.worx-quote p {
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(255,255,255,0.85);
  line-height: 1.75;
  margin: 0;
}
.worx-closing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 1rem;
}
.worx-closing p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.75;
  margin: 0;
}
@media (max-width: 700px) {
  .worx-closing { grid-template-columns: 1fr; }
}

/* ─── CONTACT FORM ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 42px; height: 42px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-detail-text .label {
  font-size: 0.68rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
  font-weight: 600;
}
.contact-detail-text a,
.contact-detail-text span { color: var(--text); text-decoration: none; font-size: var(--fs-sm); }
.contact-detail-text a:hover { color: var(--blue); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: var(--grey-light);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  color: var(--text);
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; }
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--blue);
  color: var(--white);
  padding: 1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.2s;
  font-family: 'Inter', sans-serif;
  margin-top: 0.5rem;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(0,59,120,0.35);
  background: var(--blue-mid);
}

/* ─── FAQ ACCORDION ─── */
.faq-list { margin-top: 3rem; }
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.07);
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--text);
  gap: 1rem;
  user-select: none;
}
.faq-question .icon {
  width: 28px; height: 28px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); background: var(--blue); color: var(--white); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  font-size: var(--fs-sm);
  color: var(--grey);
  line-height: 1.75;
  padding-bottom: 1.5rem;
}

/* ─── FOOTER ─── */
footer {
  background: var(--black);
  padding: 5rem 5vw 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-logo img { height: 34px; width: auto; object-fit: contain; margin-bottom: 1.2rem; }
.footer-desc {
  font-size: var(--fs-sm);
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 280px;
}
.footer-social { display: flex; gap: 0.75rem; }
.footer-social-link {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
}
.footer-social-link:hover { transform: translateY(-2px); opacity: 0.85; }
.footer-social-link svg { display: block; }
.footer-social-link.linkedin { background: #0A66C2; }
.footer-social-link.phone { background: var(--blue); }
.footer-social-link.email    { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); }
.footer-social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.footer-col h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 1.5rem;
}
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.8rem; }
.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.newsletter-form input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 0.65rem 1rem;
  color: var(--white);
  font-size: 0.83rem;
  font-family: 'Inter', sans-serif;
  outline: none;
}
.newsletter-form input:focus { border-color: rgba(248,241,214,0.4); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.2); }
.newsletter-form button {
  background: var(--cream);
  color: var(--black);
  border: none;
  border-radius: 100px;
  padding: 0.65rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  font-family: 'Inter', sans-serif;
  transition: transform 0.2s;
}
.newsletter-form button:hover { transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p { font-size: 0.76rem; color: rgba(255,255,255,0.25); }
.footer-bottom-links { display: flex; gap: 2rem; }
.footer-bottom-links a { font-size: 0.76rem; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.6); }

/* ─── REVEAL CLASSES ─── */
.reveal-up    { opacity: 0; transform: translateY(50px); }
.reveal-left  { opacity: 0; transform: translateX(-50px); }
.reveal-right { opacity: 0; transform: translateX(50px); }
.reveal-scale { opacity: 0; transform: scale(0.93); }

/* ─── CASE STUDIES HORIZONTAL SCROLL ─── */
.cs-scroll-section { overflow: hidden; background: var(--grey-light); }
.cs-intro { padding: 7rem 5vw 3rem; }
.cs-track-outer { overflow: hidden; }
.cs-track {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem 5vw 5rem;
  width: max-content;
}
.cs-card {
  width: 400px;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}
.cs-card:hover { transform: translateY(-8px); box-shadow: 0 32px 64px rgba(0,0,0,0.12); }
.cs-img { height: 220px; overflow: hidden; position: relative; }
.cs-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s; }
.cs-card:hover .cs-img img { transform: scale(1.05); }
.cs-location {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.25rem 0.7rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cs-body { padding: 1.8rem; }
.cs-body h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
  line-height: 1.3;
}
.cs-body p { font-size: 0.84rem; color: var(--grey); line-height: 1.65; margin-bottom: 1.5rem; }
.cs-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  padding: 1rem;
  background: var(--cream);
  border-radius: 10px;
}
.cs-stat-item { text-align: center; }
.cs-stat-item .val { display: block; font-family: 'Montserrat', sans-serif; font-size: 1.1rem; font-weight: 800; color: var(--blue); }
.cs-stat-item .lbl { font-size: 0.65rem; color: var(--grey); text-transform: uppercase; letter-spacing: 0.06em; }

/* ─── RESPONSIVE ─── */
/* ═══════════════════════════════════════════
   RESPONSIVE — TABLET  (≤ 1024px)
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  /* Nav */
  .nav-links { gap: 1.5rem; }

  /* Stats */
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 2.5rem 1.5rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2.5rem; }

  /* Packages */
  .packages-grid { grid-template-columns: 1fr 1fr; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Process */
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }

  /* Finance */
  .finance-grid { grid-template-columns: repeat(2, 1fr); }

  /* WORX */
  .worx-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .worx-content { padding: 0; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  /* Section padding */
  .section-pad { padding: 5rem 5vw; }

  /* Header rows */
  .section-header-row { gap: 2.5rem; }
  .cta-row { gap: 2rem; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE — MOBILE  (≤ 768px)
   ═══════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Global ── */
  .section-pad { padding: 4rem 5vw; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.4rem); }

  /* ── Navigation ── */
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-cta { display: none; }
  nav { padding: 0 5vw; }

  /* ── Headings / text ── */
  h1, h2 { word-break: break-word; }

  /* ── Stats bar ── */
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-item { padding: 2rem 1.2rem; }
  .stat-number { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  /* ── Brand carousel ── */
  .carousel-logo { height: 42px; }
  .carousel-track { gap: 2.5rem; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 2rem; }

  /* ── Packages tabs ── */
  .packages-tabs { flex-wrap: wrap; gap: 0.4rem; }
  .tab-btn { font-size: 0.72rem; padding: 0.45rem 1rem; }
  .packages-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .package-card { padding: 2rem; }
  /* keep image bleed flush with the reduced card padding so it lines up with the info box */
  .package-card-img { margin: -2rem -2rem 1.5rem; }
  .package-price .amount { font-size: 2rem; }

  /* ── Team grid ── */
  .team-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .team-img-wrap { height: 280px; }

  /* ── Process steps ── */
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2.5rem; }
  .process-steps::before { display: none; }

  /* ── Finance cards ── */
  .finance-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* ── WORX section ── */
  .worx-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .worx-section { padding: 4rem 5vw; }
  .worx-content { padding: 0; }
  .worx-content p { max-width: 100%; }

  /* ── Contact form ── */
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }

  /* ── Finance header row (rooftop inline grid) ── */
  .finance-header-row,
  .section-header-row { grid-template-columns: 1fr !important; gap: 1.5rem !important; margin-bottom: 2.5rem; }
  .cta-row { grid-template-columns: 1fr !important; gap: 1.5rem; }

  /* ── Case study cards ── */
  .cs-card { width: min(320px, 88vw); }

  /* ── Footer ── */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  footer { padding: 4rem 5vw 2rem; }

  /* ── Sunshine section two-col ── */
  .sunshine-grid { grid-template-columns: 1fr !important; gap: 3rem; }

  /* ── Consultation timeline ── */
  .timeline-grid { grid-template-columns: 1fr !important; gap: 2rem; }

  /* ── pkg-faq body indent ── */
  .pkg-faq-body { padding-left: 1rem; }
  .pkg-faq-title { font-size: 0.9rem; }

  /* ── Intro split (about) ── */
  .intro-split-grid,
  .intro-vm-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .intro-split-grid { gap: 3rem; }
  .intro-photo-wrap { min-height: 260px; }
  .intro-photo-wrap img { height: 100%; min-height: 260px; }

  /* ── Page hero (about / rooftop / consultation / contact) ── */
  .page-hero { padding: 7rem 5vw 3.5rem; }
  .page-hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .page-hero p { font-size: 0.93rem; }

  /* ── Homepage hero content ── */
  .hero-content { padding: 120px 5vw 2.5rem; }

  /* ── Progress bar stays full-width ── */
  #progress-bar { height: 2px; }
}
