/* ==========================================================================
   Gulf Trust Technical Services Design System
   Brand blue #1B75BC (from logo) + deep navy + champagne gold accent
   ========================================================================== */

/* ==========================================================================
   Self-hosted fonts (served from gulftrust.ae, no external requests).
   font-display: swap keeps text visible instantly while the font loads.
   ========================================================================== */
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/plus-jakarta-sans-600.woff2") format("woff2"); }
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/plus-jakarta-sans-700.woff2") format("woff2"); }
@font-face { font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/plus-jakarta-sans-800.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/hanken-grotesk-400.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 500; font-display: swap; src: url("../fonts/hanken-grotesk-500.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/hanken-grotesk-600.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/hanken-grotesk-700.woff2") format("woff2"); }
@font-face { font-family: "Hanken Grotesk"; font-style: normal; font-weight: 800; font-display: swap; src: url("../fonts/hanken-grotesk-800.woff2") format("woff2"); }

:root {
  /* Brand colors */
  --color-brand: #1B75BC;
  --color-brand-dark: #145A93;
  --color-brand-light: #4C94CE;
  --color-navy: #0B2E4D;
  --color-navy-2: #0F3A61;
  --color-navy-3: #133F6B;

  /* Gold / luxury accent */
  --color-gold: #C6A15B;
  --color-gold-light: #E4CFA0;
  --color-gold-dark: #8A6A2E;

  /* Neutrals */
  --color-ink: #101B2D;
  --color-slate: #47566C;
  --color-slate-light: #7C8AA0;
  --color-muted: #5A6980;        /* accessible muted text: >=4.5:1 on light bg */
  --color-border: #E1E7EF;
  --color-border-dark: rgba(255,255,255,0.14);
  --color-surface: #FFFFFF;
  --color-surface-alt: #F5F8FB;
  --color-surface-tint: #EAF3FB;

  /* Semantic */
  --color-success: #1F9D6B;
  --color-danger: #D6453A;

  /* Shadows (navy-tinted, layered) */
  --shadow-sm: 0 1px 2px rgba(11,46,77,0.06), 0 1px 1px rgba(11,46,77,0.04);
  --shadow-md: 0 6px 16px rgba(11,46,77,0.08), 0 2px 6px rgba(11,46,77,0.06);
  --shadow-lg: 0 20px 40px rgba(11,46,77,0.12), 0 6px 16px rgba(11,46,77,0.08);
  --shadow-gold: 0 10px 30px rgba(198,161,91,0.25);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Spacing (4/8 rhythm) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Type */
  --font-heading: "Plus Jakarta Sans", "Hanken Grotesk", system-ui, sans-serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, sans-serif;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --dur-slow: 400ms;

  --header-h: 84px;
}

/* ==========================================================================
   Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
body {
  font-family: var(--font-body);
  color: var(--color-ink);
  background: var(--color-surface);
  line-height: 1.6;
  font-size: 16px;
  min-height: 100dvh;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-navy);
  letter-spacing: -0.01em;
}
::selection { background: var(--color-gold-light); color: var(--color-navy); }

/* Focus visibility (accessibility) */
a:focus-visible, button:focus-visible, input:focus-visible,
textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2.5px solid var(--color-gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   Typography scale
   ========================================================================== */
.h0 { font-size: clamp(2.6rem, 2rem + 3vw, 4.5rem); line-height: 1.05; }
h1, .h1 { font-size: clamp(2.1rem, 1.7rem + 2vw, 3.4rem); }
h2, .h2 { font-size: clamp(1.7rem, 1.45rem + 1.3vw, 2.5rem); }
h3, .h3 { font-size: clamp(1.3rem, 1.15rem + 0.7vw, 1.6rem); }
h4, .h4 { font-size: 1.15rem; }
p { color: var(--color-slate); }
.lead { font-size: clamp(1.05rem, 1rem + 0.4vw, 1.25rem); color: var(--color-slate); line-height: 1.65; }
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--color-gold-dark);
}
.eyebrow::before {
  content: ""; width: 22px; height: 2px; background: var(--color-gold);
  border-radius: 2px;
}
.eyebrow.on-dark { color: var(--color-gold-light); }
.text-muted { color: var(--color-muted); }
.text-center { text-align: center; }

/* ==========================================================================
   Layout
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: var(--space-6);
}
@media (min-width: 768px) { .container { padding-inline: var(--space-10); } }

.section { padding-block: var(--space-20); position: relative; }
.section--tight { padding-block: var(--space-12); }
.section--alt { background: var(--color-surface-alt); }
.section--navy {
  background: linear-gradient(165deg, var(--color-navy) 0%, var(--color-navy-3) 100%);
  color: #fff;
}
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p { color: rgba(255,255,255,0.72); }

.section-head { max-width: 700px; margin-bottom: var(--space-12); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head > .eyebrow { margin-bottom: var(--space-4); display: inline-flex; }
.section-head > h2 { margin-bottom: var(--space-4); }

.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* Faint architectural line motif (echoes logo geometry) */
.line-motif {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0;
}
.line-motif svg { position: absolute; opacity: 0.08; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2);
  padding: 0.9rem 1.7rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 600; font-size: 0.98rem;
  white-space: nowrap;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
  min-height: 48px;
  will-change: transform;
}
.btn:active { transform: scale(0.97); }
.btn svg { width: 1.1em; height: 1.1em; flex-shrink: 0; }
/* Hero CTA phone icon: enlarge so the glyph reads at a consistent height with the button text (applies on mobile too) */
.hero__actions .btn svg { width: 1.45em; height: 1.45em; }

.btn--primary {
  background: var(--color-brand);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn--primary:hover { background: var(--color-brand-dark); transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
  color: var(--color-navy);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(198,161,91,0.35); }

.btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline:hover { border-color: var(--color-gold); color: var(--color-gold-light); background: rgba(255,255,255,0.06); }

.btn--outline-dark {
  background: transparent;
  color: var(--color-navy);
  border: 1.5px solid var(--color-border);
}
.btn--outline-dark:hover { border-color: var(--color-brand); color: var(--color-brand); background: var(--color-surface-tint); }

.btn--ghost { background: transparent; color: var(--color-brand); padding-inline: var(--space-4); }
.btn--ghost:hover { color: var(--color-brand-dark); }

.btn--block { width: 100%; }
.btn--lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }
.btn--sm { padding: 0.6rem 1.2rem; font-size: 0.88rem; min-height: 40px; }

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37,211,102,0.35);
}
.btn--whatsapp:hover { background: #1EBE5A; transform: translateY(-2px); }

/* ==========================================================================
   Header / Navigation
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-bottom: 1px solid transparent;
  transition: height var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.site-header.is-scrolled {
  height: 68px;
  background: rgba(255,255,255,0.97);
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: var(--space-6); }

.brand { display: flex; align-items: center; gap: var(--space-3); flex-shrink: 0; }
.brand img { height: 50px; width: auto; transition: height var(--dur-base) var(--ease-out); }
.site-header.is-scrolled .brand img { height: 44px; }

.nav-desktop { display: none; }
@media (min-width: 1024px) {
  .nav-desktop { display: flex; align-items: center; gap: var(--space-8); }
  .nav-desktop a {
    font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
    color: var(--color-navy); position: relative; padding: 6px 0;
  }
  .nav-desktop a::after {
    content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
    background: var(--color-gold); transition: width var(--dur-base) var(--ease-out);
  }
  .nav-desktop a:hover::after, .nav-desktop a.is-active::after { width: 100%; }
  .nav-desktop a.is-active { color: var(--color-brand); }
}

.header-actions { display: flex; align-items: center; gap: var(--space-4); }
.header-call {
  display: none;
  flex-direction: column; line-height: 1.2;
}
@media (min-width: 860px) {
  .header-call { display: flex; }
  .header-call .label { font-size: 0.72rem; color: var(--color-slate-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
  .header-call .number { font-family: var(--font-heading); font-weight: 700; color: var(--color-navy); font-size: 1rem; }
}

.nav-toggle {
  display: flex; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; border-radius: var(--radius-sm);
}
@media (min-width: 1024px) { .nav-toggle { display: none; } }
.nav-toggle span {
  display: block; width: 22px; height: 2px; background: var(--color-navy);
  border-radius: 2px; transition: transform var(--dur-base) var(--ease-out), opacity var(--dur-base) var(--ease-out);
  margin-inline: auto;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 99;
  background: var(--color-navy);
  background: linear-gradient(180deg, var(--color-navy) 0%, #081f36 100%);
  transform: translateX(100%);
  transition: transform var(--dur-slow) var(--ease-in-out);
  overflow-y: auto;
}
.nav-mobile.is-open { transform: translateX(0); }
.nav-mobile .container { padding-block: var(--space-10); display: flex; flex-direction: column; gap: var(--space-2); }
.nav-mobile a {
  font-family: var(--font-heading); font-weight: 700; font-size: 1.4rem; color: #fff;
  padding: var(--space-4) 0; border-bottom: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile a.is-active { color: var(--color-gold-light); }
.nav-mobile .mobile-cta { margin-top: var(--space-8); display: flex; flex-direction: column; gap: var(--space-3); }
@media (min-width: 1024px) { .nav-mobile { display: none; } }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--space-20));
  padding-bottom: var(--space-24);
  background: linear-gradient(165deg, var(--color-navy) 0%, var(--color-navy-3) 55%, var(--color-navy-2) 100%);
  color: #fff;
  overflow: hidden;
}
.hero h1 { color: #fff; }
.hero .lead { color: rgba(255,255,255,0.78); }
.hero__bg-shape {
  position: absolute; top: -10%; right: -10%; width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(198,161,91,0.18) 0%, rgba(198,161,91,0) 70%);
  pointer-events: none;
}
.hero__grid {
  display: grid; gap: var(--space-12); align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
  position: relative; z-index: 1;
}
@media (max-width: 940px) { .hero__grid { grid-template-columns: 1fr; } }

/* Split-ratio modifiers for two-column layout sections (replaces inline grid-template-columns
   so the responsive collapse below can always win on mobile regardless of source order). */
.split-90-110 { grid-template-columns: 0.9fr 1.1fr; }
.split-100-100 { grid-template-columns: 1fr 1fr; }
.split-55-100 { grid-template-columns: 0.55fr 1fr; }
.split-100-55 { grid-template-columns: 1fr 0.55fr; }
.split-85-115 { grid-template-columns: 0.85fr 1.15fr; }
.order-1 { order: 1; }
.order-2 { order: 2; }
@media (max-width: 940px) {
  .split-90-110, .split-100-100, .split-55-100, .split-100-55, .split-85-115 {
    grid-template-columns: 1fr !important;
  }
  .order-2 { order: -1 !important; }
}

.hero__badges { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-block: var(--space-6) var(--space-8); }
.hero__badge {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  font-size: 0.85rem; font-weight: 600;
}
.hero__badge svg { width: 1.05em; height: 1.05em; color: var(--color-gold-light); }

.hero__actions { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-8); }

.hero__visual {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(150deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.14);
  padding: var(--space-6);
  backdrop-filter: blur(6px);
}
.hero__stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: var(--space-5);
}
.hero__stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.hero__stat-num {
  font-family: var(--font-heading); font-weight: 800; font-size: 2rem;
  color: var(--color-gold-light); line-height: 1;
}
.hero__stat-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); margin-top: var(--space-2); }

.page-hero {
  position: relative;
  padding-top: calc(var(--header-h) + var(--space-16));
  padding-bottom: var(--space-16);
  background: linear-gradient(165deg, var(--color-navy) 0%, var(--color-navy-3) 100%);
  color: #fff; overflow: hidden;
}
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,0.75); max-width: 640px; }
.breadcrumb { display: flex; align-items: center; gap: var(--space-2); font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: var(--space-5); }
.breadcrumb a:hover { color: var(--color-gold-light); }

/* ==========================================================================
   Cards
   ========================================================================== */
.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }

.service-card { position: relative; }
.service-card__icon {
  width: 58px; height: 58px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface-tint);
  color: var(--color-brand);
  margin-bottom: var(--space-5);
  transition: background var(--dur-base) var(--ease-out), color var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.service-card__icon svg { width: 30px; height: 30px; }
.service-card:hover .service-card__icon { background: var(--color-brand); color: #fff; transform: scale(1.08) rotate(-4deg); }
.service-card h3 { margin-bottom: var(--space-3); font-size: 1.25rem; }
.service-card p { font-size: 0.95rem; }
.service-card__link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  margin-top: var(--space-5); font-family: var(--font-heading); font-weight: 700;
  font-size: 0.9rem; color: var(--color-brand);
}
.service-card__link svg { width: 1em; height: 1em; transition: transform var(--dur-base) var(--ease-out); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ==========================================================================
   Bento services grid ("What We Do")
   ========================================================================== */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-6); }
.bento-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.bento-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.bento-card h3 { margin-bottom: var(--space-3); font-size: 1.25rem; }
.bento-card p { font-size: 0.95rem; }
.bento-card:hover .service-card__icon { background: var(--color-brand); color: #fff; transform: scale(1.08) rotate(-4deg); }
.bento-card:hover .service-card__link svg { transform: translateX(4px); }

/* Card spans */
.bento-card--feature  { grid-column: span 4; display: grid; grid-template-columns: 1fr 1.15fr; align-items: stretch; }
.bento-card--reverse  { grid-template-columns: 1.15fr 1fr; }
.bento-card--standard { grid-column: span 2; padding: var(--space-8); }
.bento-card--compact  { grid-column: span 3; flex-direction: row; align-items: center; gap: var(--space-5); padding: var(--space-6) var(--space-7); }

/* Standard + feature push the link to the bottom so heights align neatly */
.bento-card--standard .service-card__link,
.bento-card--feature .service-card__link { margin-top: auto; }

/* Feature body + photo-ready media panel */
.bento-card__body { padding: var(--space-8); display: flex; flex-direction: column; }
.bento-card--compact .bento-card__body { padding: 0; }
.bento-card--compact .service-card__icon { margin-bottom: 0; flex-shrink: 0; }
.bento-card--compact h3 { font-size: 1.1rem; margin-bottom: var(--space-1); }
.bento-card--compact p { font-size: 0.9rem; }

.bento-card__media {
  position: relative; min-height: 210px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--color-navy) 0%, var(--color-navy-3) 100%);
  /* To use a real photo instead: add background-image and set background-size: cover. */
}
.bento-card__media::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 72% 28%, rgba(198,161,91,0.20), transparent 58%);
}
.bento-ghost {
  position: relative; width: 46%; max-width: 150px; height: auto;
  color: rgba(255,255,255,0.13);
  transition: transform var(--dur-slow) var(--ease-out);
}
.bento-card--feature:hover .bento-ghost { transform: scale(1.07) rotate(3deg); }

/* Photo panels (real images) */
.bento-photo { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform var(--dur-slow) var(--ease-out); }
.bento-card__media--photo { background: var(--color-navy); }
.bento-card__media--photo::after { display: none; }
.bento-card--feature:hover .bento-photo,
.bento-card--photo:hover .bento-photo { transform: scale(1.04); }

/* Photo-top card: image on top, content below */
.bento-card--photo { grid-column: span 2; padding: 0; }
.bento-card--photo .bento-card__media--top { aspect-ratio: 16 / 10; min-height: 0; width: 100%; }
.bento-card--photo .bento-card__body { padding: var(--space-7); display: flex; flex-direction: column; flex: 1; }
.bento-card--photo .service-card__link { margin-top: auto; }

@media (max-width: 980px) {
  .bento { grid-template-columns: repeat(2, 1fr); grid-auto-flow: dense; }
  .bento-card--feature  { grid-column: span 2; }
  .bento-card--standard { grid-column: span 1; }
  .bento-card--photo    { grid-column: span 1; }
  .bento-card--compact  { grid-column: span 2; }
}
@media (max-width: 620px) {
  .bento { grid-template-columns: 1fr; }
  .bento-card--feature, .bento-card--standard, .bento-card--photo, .bento-card--compact { grid-column: span 1; }
  .bento-card--feature, .bento-card--reverse { grid-template-columns: 1fr; }
  .bento-card__media { min-height: 180px; }
}

.feature-list { display: flex; flex-direction: column; gap: var(--space-4); }
.feature-item { display: flex; gap: var(--space-4); align-items: flex-start; }
.feature-item__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface-tint); color: var(--color-brand);
}
.feature-item__icon svg { width: 22px; height: 22px; }
.feature-item h3, .feature-item h4 { margin-bottom: var(--space-1); font-size: 1.02rem; }
.feature-item p { font-size: 0.92rem; }

.value-card { text-align: left; }
.value-card__num {
  font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem;
  color: var(--color-gold-dark); letter-spacing: 0.06em;
  border: 1.5px solid var(--color-gold); border-radius: var(--radius-pill);
  width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}

.project-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  border: 1px solid var(--color-border);
  background: var(--color-surface-alt);
}
.project-card__media {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
}
.project-card__media .art { position: absolute; inset: 0; }
.project-card__body { padding: var(--space-6); }
.project-card__tag {
  display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--color-brand); background: var(--color-surface-tint);
  padding: 4px 12px; border-radius: var(--radius-pill); margin-bottom: var(--space-3);
}
.project-card h3 { font-size: 1.1rem; margin-bottom: var(--space-2); }
.project-card p { font-size: 0.9rem; }

.testimonial-card {
  background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-lg); padding: var(--space-8);
}
.testimonial-card .stars { display: flex; gap: 3px; color: var(--color-gold); margin-bottom: var(--space-5); }
.testimonial-card .stars svg { width: 18px; height: 18px; }
.testimonial-card blockquote { font-size: 1.05rem; color: var(--color-navy); line-height: 1.6; margin-bottom: var(--space-6); }
.testimonial-card__author { display: flex; align-items: center; gap: var(--space-3); }
.testimonial-card__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand), var(--color-navy));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading); font-weight: 700;
}
.testimonial-card__author .name { font-weight: 700; color: var(--color-navy); font-size: 0.95rem; }
.testimonial-card__author .role { font-size: 0.82rem; color: var(--color-slate-light); }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); }
@media (max-width: 760px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
.stat {
  text-align: center; padding: var(--space-6) var(--space-4);
  border-right: 1px solid var(--color-border-dark);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: var(--font-heading); font-weight: 800;
  font-size: clamp(2rem, 1.6rem + 1.5vw, 3rem); color: var(--color-gold-light);
  line-height: 1;
}
.stat__label { margin-top: var(--space-3); font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.section:not(.section--navy) .stat__num { color: var(--color-brand); }
.section:not(.section--navy) .stat__label { color: var(--color-slate); }
.section:not(.section--navy) .stat { border-right-color: var(--color-border); }

/* ==========================================================================
   Process / timeline
   ========================================================================== */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); position: relative; }
@media (max-width: 900px) { .process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }
.process-step { position: relative; padding-top: var(--space-4); }
.process-step__index {
  font-family: var(--font-heading); font-weight: 800; font-size: 2.6rem;
  color: var(--color-surface-tint); -webkit-text-stroke: 1.5px var(--color-brand);
  margin-bottom: var(--space-3); line-height: 1;
}
.process-step h3, .process-step h4 { margin-bottom: var(--space-2); font-size: 1.15rem; }
.process-step p { font-size: 0.92rem; }

/* ==========================================================================
   Coverage / service areas
   ========================================================================== */
.area-chip-row { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.area-chip {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-border);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem;
  color: var(--color-navy);
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.area-chip svg { width: 1.1em; height: 1.1em; color: var(--color-brand); }
.area-chip:hover { border-color: var(--color-brand); background: var(--color-surface-tint); }

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-4); padding: var(--space-6) 0; text-align: left;
  font-family: var(--font-heading); font-weight: 700; font-size: 1.02rem; color: var(--color-navy);
}
.faq-item__q svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--color-brand); transition: transform var(--dur-base) var(--ease-out); }
.faq-item.is-open .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a {
  max-height: 0; overflow: hidden; transition: max-height var(--dur-slow) var(--ease-in-out), padding var(--dur-slow) var(--ease-in-out);
  font-size: 0.95rem; color: var(--color-slate);
}
.faq-item.is-open .faq-item__a { padding-bottom: var(--space-6); }

/* ==========================================================================
   Forms
   ========================================================================== */
.form-card {
  background: var(--color-surface); border-radius: var(--radius-lg);
  border: 1px solid var(--color-border); box-shadow: var(--shadow-lg);
  padding: var(--space-8);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: var(--space-5); }
.field label {
  display: block; font-family: var(--font-heading); font-weight: 700; font-size: 0.88rem;
  color: var(--color-navy); margin-bottom: var(--space-2);
}
.field .required { color: var(--color-danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border); background: var(--color-surface-alt);
  font-size: 0.98rem; color: var(--color-ink); min-height: 48px;
  transition: border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--color-brand); background: var(--color-surface); outline: none;
}
.field .hint { font-size: 0.8rem; color: var(--color-slate-light); margin-top: var(--space-2); }
.field .error { font-size: 0.82rem; color: var(--color-danger); margin-top: var(--space-2); display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--color-danger); }
.field.has-error .error { display: block; }

.form-status {
  display: none; align-items: center; gap: var(--space-3);
  padding: var(--space-4) var(--space-5); border-radius: var(--radius-md);
  background: rgba(31,157,107,0.1); color: var(--color-success);
  font-weight: 600; font-size: 0.92rem; margin-top: var(--space-5);
}
.form-status.is-visible { display: flex; }
.form-status svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ==========================================================================
   CTA band
   ========================================================================== */
.cta-band {
  border-radius: var(--radius-lg);
  background: linear-gradient(120deg, var(--color-navy) 0%, var(--color-navy-3) 100%);
  color: #fff; padding: var(--space-12) var(--space-10);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-8);
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; right: -60px; top: -60px; width: 220px; height: 220px;
  border-radius: 50%; background: radial-gradient(circle, rgba(198,161,91,0.25), transparent 70%);
}
.cta-band h2 { color: #fff; margin-bottom: var(--space-2); }
.cta-band p { color: rgba(255,255,255,0.72); }
.cta-band__actions { display: flex; gap: var(--space-4); flex-wrap: wrap; flex-shrink: 0; }
@media (max-width: 760px) { .cta-band { flex-direction: column; text-align: center; padding: var(--space-10) var(--space-6); } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--color-navy); color: rgba(255,255,255,0.7);
  padding-top: var(--space-20);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: var(--space-10);
  padding-bottom: var(--space-16);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand img { height: 50px; width: auto; margin-bottom: var(--space-5); filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.92rem; max-width: 320px; margin-bottom: var(--space-5); }
.footer-social { display: flex; gap: var(--space-3); }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center; transition: background var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.footer-social a:hover { background: var(--color-gold); border-color: var(--color-gold); color: var(--color-navy); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h3 {
  font-family: var(--font-heading); color: #fff; font-size: 0.85rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: var(--space-5);
}
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-col a, .footer-col li { font-size: 0.92rem; }
.footer-col a:hover { color: var(--color-gold-light); }
.footer-contact li { display: flex; gap: var(--space-3); align-items: flex-start; font-size: 0.92rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--color-gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--space-3);
  padding-block: var(--space-6); font-size: 0.82rem;
}

/* ==========================================================================
   Floating actions (WhatsApp + Back to top)
   ========================================================================== */
.float-stack {
  position: fixed; right: var(--space-5); bottom: var(--space-5); z-index: 90;
  display: flex; flex-direction: column; align-items: flex-end; gap: var(--space-3);
}
.fab-whatsapp {
  width: 60px; height: 60px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px rgba(37,211,102,0.45);
  transition: transform var(--dur-base) var(--ease-out);
  position: relative;
}
.fab-whatsapp svg { width: 30px; height: 30px; }
.fab-whatsapp:hover { transform: scale(1.08); }
.fab-whatsapp::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: #25D366; opacity: 0.55;
  animation: pulse-ring 2.4s var(--ease-out) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(1.7); opacity: 0; }
}
.fab-top {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-surface); color: var(--color-navy);
  border: 1px solid var(--color-border); box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px); pointer-events: none;
  transition: opacity var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out);
}
.fab-top.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.fab-top svg { width: 20px; height: 20px; }

/* Sticky mobile call bar */
.mobile-call-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 89;
  display: grid; grid-template-columns: 1fr 1fr;
  background: var(--color-surface); border-top: 1px solid var(--color-border);
  box-shadow: 0 -8px 24px rgba(11,46,77,0.1);
  padding: var(--space-3) var(--space-4);
  padding-bottom: max(var(--space-3), env(safe-area-inset-bottom));
  gap: var(--space-3);
}
@media (min-width: 760px) { .mobile-call-bar { display: none; } }

/* ==========================================================================
   Reveal animations (JS toggles .is-inview; GSAP also targets [data-reveal])
   ========================================================================== */
[data-reveal] { opacity: 0; transform: translateY(28px); }
[data-reveal].is-inview { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
}

/* Marquee for trust logos */
.marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.marquee__track { display: flex; width: max-content; animation: marquee 54s linear infinite; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--color-muted); letter-spacing: 0.02em; white-space: nowrap; opacity: 1; margin-right: var(--space-16); }

/* Brand slogan / tagline treatment */
.tagline-bar {
  display: inline-flex; align-items: center;
  padding-left: var(--space-4); border-left: 3px solid var(--color-gold);
  font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem;
  color: var(--color-gold-dark); letter-spacing: 0.01em;
}
.tagline-bar.on-dark { color: var(--color-gold-light); }
.footer-tagline {
  font-family: var(--font-heading); font-weight: 700; font-size: 0.95rem;
  color: var(--color-gold-light); margin-bottom: var(--space-3); letter-spacing: 0.01em;
}

/* Client logo wall (text wordmarks) */
.client-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: var(--space-4); }
.client-chip {
  display: flex; align-items: center; justify-content: center; text-align: center;
  min-height: 84px; padding: var(--space-4);
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  background: var(--color-surface);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.92rem;
  color: var(--color-slate); line-height: 1.25;
  transition: color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.client-chip:hover { color: var(--color-brand); border-color: var(--color-brand); background: var(--color-surface-tint); transform: translateY(-3px); box-shadow: var(--shadow-sm); }

/* Client logo wall with logos in full colour and a subtle lift on hover */
.logo-wall { display: grid; grid-template-columns: repeat(auto-fill, minmax(158px, 1fr)); gap: var(--space-4); }
.logo-tile {
  display: flex; align-items: center; justify-content: center;
  height: 96px; padding: var(--space-5) var(--space-6);
  border: 1px solid var(--color-border); border-radius: var(--radius-md);
  background: var(--color-surface);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.logo-tile img { max-width: 100%; max-height: 52px; width: auto; height: auto; object-fit: contain; display: block; }
/* Logos that read small at the default size get a little more room */
.logo-tile--lg { padding: var(--space-2) var(--space-4); }
.logo-tile--lg img { max-height: 66px; }
.logo-tile--xl { padding: var(--space-1) var(--space-3); }
.logo-tile--xl img { max-height: 82px; }
.logo-tile--xxl { padding: 0 var(--space-2); }
.logo-tile--xxl img { max-height: 92px; }
.logo-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.logo-tile--text { font-family: var(--font-heading); font-weight: 800; font-size: 0.9rem; color: var(--color-slate); text-align: center; line-height: 1.2; }
/* White/reversed logos sit on a dark tile so they stay visible in the grey resting state */
.logo-tile--dark { background: var(--color-navy); border-color: var(--color-navy); opacity: 1; }
@media (max-width: 600px) { .logo-wall { grid-template-columns: repeat(2, 1fr); } .logo-tile { height: 84px; padding: var(--space-4); } .logo-tile--lg, .logo-tile--xl, .logo-tile--xxl { padding: var(--space-2) var(--space-3); } .logo-tile--lg img, .logo-tile--xl img, .logo-tile--xxl img { max-height: 64px; } }

/* Service mini-cards (full catalog grid on services.html) */
.service-mini {
  display: flex; gap: var(--space-4); align-items: flex-start;
  padding: var(--space-5); border-radius: var(--radius-md);
  border: 1px solid var(--color-border); background: var(--color-surface);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out);
}
.service-mini:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-mini__icon {
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface-tint); color: var(--color-brand);
}
.service-mini__icon svg { width: 22px; height: 22px; }
.service-mini h4 { font-size: 0.98rem; margin-bottom: 4px; }
.service-mini p { font-size: 0.85rem; }
.section--navy .service-mini { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.14); }
.section--navy .service-mini__icon { background: rgba(255,255,255,0.1); color: var(--color-gold-light); }
.section--navy .service-mini h4 { color: #fff; }

.category-head { max-width: 640px; }
.category-head__icon {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  background: var(--color-surface-tint); color: var(--color-brand);
  margin-bottom: var(--space-5);
}
.category-head__icon svg { width: 32px; height: 32px; }
.section--navy .category-head__icon { background: rgba(255,255,255,0.1); color: var(--color-gold-light); }

/* Filter buttons */
.filter-buttons { display: flex; flex-wrap: wrap; gap: var(--space-3); }
.filter-buttons button.is-active { background: var(--color-brand); color: #fff; border-color: var(--color-brand); }

/* Utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.mt-4 { margin-top: var(--space-4); }
.mt-8 { margin-top: var(--space-8); }
.mb-4 { margin-bottom: var(--space-4); }
.divider { height: 1px; background: var(--color-border); border: none; }

/* ==========================================================================
   Craft micro-interactions, restrained and premium
   ========================================================================== */

/* Magnetic accent buttons: JS sets an inline translate, this eases the return */
.btn--gold { transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow var(--dur-base) var(--ease-out); }

/* Process. Connector line draws left-to-right, step numbers light in sequence */
.process-step { z-index: 1; }
.process-steps::before {
  content: ""; position: absolute; z-index: 0;
  top: calc(var(--space-4) + 1.35rem); left: 6%; right: 6%; height: 2px; border-radius: 2px;
  background: linear-gradient(90deg, var(--color-brand), var(--color-gold));
  opacity: 0.3; transform: scaleX(0); transform-origin: left center;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}
.process-steps.is-drawn::before { transform: scaleX(1); }
@media (max-width: 900px) { .process-steps::before { display: none; } }
.process-step__index {
  transition: color 0.55s var(--ease-out), -webkit-text-stroke-color 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.process-step.is-lit .process-step__index {
  color: var(--color-gold-light);
  -webkit-text-stroke-color: var(--color-gold-dark);
  transform: translateY(-2px);
}

/* Coverage & client chips, tactile spring lift */
.area-chip { transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }
.area-chip:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.area-chip svg { transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1); }
.area-chip:hover svg { transform: translateY(-1px) scale(1.14); }
.client-chip { transition: transform 0.45s cubic-bezier(0.16,1,0.3,1), color var(--dur-base) var(--ease-out), border-color var(--dur-base) var(--ease-out), background var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out); }

/* CTA band, one slow light sweep when it scrolls into view */
.cta-band > * { position: relative; z-index: 1; }
.cta-band::before {
  content: ""; position: absolute; z-index: 0; top: 0; bottom: 0; left: -45%; width: 32%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.12), transparent);
  transform: skewX(-16deg); opacity: 0; pointer-events: none;
}
.cta-band.is-lit::before { animation: cta-sweep 1.7s cubic-bezier(0.16,1,0.3,1) 0.25s forwards; }
@keyframes cta-sweep {
  0% { left: -45%; opacity: 0; }
  12% { opacity: 1; }
  100% { left: 130%; opacity: 0; }
}

/* Footer links, underline draws in on hover */
.footer-col a { position: relative; display: inline-block; }
.footer-col a::after {
  content: ""; position: absolute; left: 0; bottom: -1px; height: 1px; width: 0;
  background: var(--color-gold-light);
  transition: width 0.4s cubic-bezier(0.16,1,0.3,1);
}
.footer-col a:hover::after { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  .cta-band.is-lit::before { animation: none; }
  .process-steps.is-drawn::before { transition: none; }
}

/* ==========================================================================
   Mobile refinement pass, tighter rhythm, resized elements, less noise
   ========================================================================== */
@media (max-width: 600px) {
  /* Vertical rhythm: a phone doesn't need 80px between every section */
  .section { padding-block: var(--space-12); }
  .section--tight { padding-block: var(--space-10); }
  .section-head { margin-bottom: var(--space-8); }
  .hero { padding-top: calc(var(--header-h) + var(--space-10)); padding-bottom: var(--space-12); }
  .page-hero { padding-top: calc(var(--header-h) + var(--space-10)); padding-bottom: var(--space-10); }
  .hero__grid { gap: var(--space-8); }

  /* Cards & panels: tighter interior padding */
  .card, .service-mini, .testimonial-card, .value-card, .form-card { padding: var(--space-6); }

  /* Drop purely decorative motifs to reduce noise and prevent edge bleed */
  .line-motif { display: none; }

  /* Hero: tighter, resized */
  .hero__badges { gap: var(--space-2); margin-block: var(--space-5) var(--space-6); }
  .hero__badge { padding: 5px 12px; font-size: 0.78rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__visual { padding: var(--space-4); }
  .hero__stat-grid { gap: var(--space-3); }
  .hero__stat-card { padding: var(--space-4); }
  .hero__stat-num { font-size: 1.6rem; }

  /* Client wall: two tidy columns, smaller chips (34 of them is a long scroll) */
  .client-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
  .client-chip { min-height: 60px; font-size: 0.8rem; padding: var(--space-3) var(--space-2); }

  /* Process index numbers a touch smaller */
  .process-step__index { font-size: 2.1rem; }

  /* CTA band: full-width stacked actions for comfortable tapping */
  .cta-band__actions { width: 100%; flex-direction: column; }
  .cta-band__actions .btn { width: 100%; }

  /* Fixed-element hygiene: keep the floating button ABOVE the sticky call bar,
     and give the footer clearance so its last line isn't hidden behind it */
  .float-stack { bottom: 84px; right: var(--space-4); }
  /* WhatsApp is already in the sticky call bar on mobile, so drop the floating WhatsApp bubble */
  .fab-whatsapp { display: none; }
  .site-footer { padding-bottom: calc(var(--space-8) + 72px); }
}

/* Keep the primary CTA compact on very small screens so it always fits */
@media (max-width: 380px) {
  .site-header .header-actions .btn--primary { padding: 0.55rem 0.9rem; font-size: 0.85rem; }
}
