/* ═══════════════════════════════════════════════════════════════
   BILLO SIGNS & GRAPHICS — styles.css
   Design System: Dark premium, 8px grid, Montserrat + DM Sans
   Version: 5.0 | billosigns.ca
═══════════════════════════════════════════════════════════════ */

/* ───────────────────────────────────────────────────────────────
   1. DESIGN TOKENS
─────────────────────────────────────────────────────────────── */
:root {
  /* Colors */
  --clr-bg:          #0B0D12;
  --clr-bg2:         #111520;
  --clr-bg3:         #161B28;
  --clr-bg4:         #1C2333;
  --clr-bg-light:    #F5F3EE;
  --clr-bg-light2:   #EDEAE2;
  --clr-white:       #FFFFFF;
  --clr-black:       #08090C;

  --clr-gold:        #C4A44A;
  --clr-gold-lt:     #D4B86A;
  --clr-gold-dk:     #9A7D26;
  --clr-gold-dim:    rgba(196, 164, 74, 0.10);
  --clr-gold-border: rgba(196, 164, 74, 0.22);

  --clr-text:        rgba(255, 255, 255, 0.88);
  --clr-muted:       rgba(255, 255, 255, 0.44);
  --clr-dim:         rgba(255, 255, 255, 0.16);
  --clr-border:      rgba(255, 255, 255, 0.07);
  --clr-border2:     rgba(255, 255, 255, 0.12);

  --clr-text-dark:   #111111;
  --clr-muted-dark:  #6B7280;
  --clr-border-dark: #D5D1C8;

  --clr-red:         #DC2626;
  --clr-red-bg:      rgba(220, 38, 38, 0.08);
  --clr-red-border:  rgba(220, 38, 38, 0.18);
  --clr-red-text:    #FCA5A5;
  --clr-green-bg:    rgba(34, 197, 94, 0.1);
  --clr-green-border:rgba(34, 197, 94, 0.22);
  --clr-green-text:  #86EFAC;

  --clr-wa:          #128C7E;
  --clr-wa-dk:       #075E54;
  --clr-wa-glow:     rgba(18, 140, 126, 0.28);
  --clr-wa-alpha:    rgba(18, 140, 126, 0.12);
  --clr-wa-border:   rgba(18, 140, 126, 0.25);
  --clr-wa-light:    #4ADE80;

  /* Typography */
  --font-head:  'Montserrat', system-ui, sans-serif;
  --font-body:  'DM Sans', system-ui, sans-serif;

  /* Spacing (8px base) */
  --sp-1:   8px;
  --sp-2:   16px;
  --sp-3:   24px;
  --sp-4:   32px;
  --sp-5:   40px;
  --sp-6:   48px;
  --sp-7:   56px;
  --sp-8:   64px;
  --sp-9:   72px;
  --sp-10:  80px;
  --sp-12:  96px;
  --sp-14: 112px;

  /* Border radius */
  --r-sm:  4px;
  --r-md:  8px;
  --r-lg:  12px;
  --r-xl:  16px;
  --r-pill:999px;

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(0,0,0,.3), 0 1px 2px rgba(0,0,0,.2);
  --shadow-md:  0 4px 16px rgba(0,0,0,.4);
  --shadow-lg:  0 8px 32px rgba(0,0,0,.5);
  --shadow-gold:0 4px 24px rgba(196,164,74,.25);
  --shadow-gold-lg: 0 8px 40px rgba(196,164,74,.4);
  --shadow-wa:  0 4px 20px rgba(18,140,126,.3);

  /* Transitions */
  --ease:       cubic-bezier(.16, 1, .3, 1);
  --ease-in:    cubic-bezier(.4, 0, 1, 1);
  --ease-out:   cubic-bezier(0, 0, .2, 1);
  --t-fast:     .15s;
  --t-base:     .25s;
  --t-slow:     .4s;
  --t-reveal:   .7s;

  /* Layout */
  --container:  1240px;
  --nav-h:      72px;
  --sticky-h:   64px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Grain texture overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.04'/%3E%3C/svg%3E");
  opacity: .35;
}

/* Scroll padding for fixed nav */
html {
  scroll-padding-top: calc(var(--nav-h) + var(--sp-3));
}

img, video, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

textarea {
  font-family: var(--font-body);
  resize: vertical;
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

/* ───────────────────────────────────────────────────────────────
   3. LAYOUT UTILITIES
─────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 6%;
}

.section {
  padding-block: var(--sp-12);
}

.section-sm {
  padding-block: var(--sp-8);
}

.section-dark {
  background: var(--clr-bg2);
}

.section-light {
  background: var(--clr-bg-light);
}

/* ───────────────────────────────────────────────────────────────
   4. TYPOGRAPHY SYSTEM
─────────────────────────────────────────────────────────────── */

/* Section tag / eyebrow */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-2);
}

.section-tag::before {
  content: '';
  display: block;
  width: 28px;
  height: 1.5px;
  background: var(--clr-gold);
  flex-shrink: 0;
}

.section-tag--dark {
  color: var(--clr-gold-dk);
}

.section-tag--dark::before {
  background: var(--clr-gold-dk);
}

/* Section headings */
.section-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(28px, 3.8vw, 48px);
  line-height: 1.07;
  letter-spacing: -1.5px;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.section-heading--dark {
  color: var(--clr-text-dark);
}

/* Section description */
.section-desc {
  font-size: 17px;
  line-height: 1.7;
  color: var(--clr-muted);
  max-width: 540px;
  margin-bottom: var(--sp-7);
}

.section-desc--dark {
  color: var(--clr-muted-dark);
}

/* Body text */
.body-text {
  font-size: 16.5px;
  line-height: 1.72;
  color: var(--clr-muted);
  margin-bottom: var(--sp-3);
}

/* ───────────────────────────────────────────────────────────────
   5. BUTTON SYSTEM
─────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--r-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background var(--t-base) var(--ease),
    border-color var(--t-base) var(--ease),
    box-shadow var(--t-base) var(--ease),
    transform var(--t-fast) var(--ease),
    color var(--t-base) var(--ease);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.06);
  opacity: 0;
  transition: opacity var(--t-fast);
}

.btn:hover::before { opacity: 1; }
.btn:hover         { transform: translateY(-2px); }
.btn:active        { transform: translateY(0); }

/* Gold CTA */
.btn-gold {
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-lt) 50%, var(--clr-gold) 100%);
  background-size: 200% 100%;
  color: #1A1200;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background-position: 100% 0;
  box-shadow: var(--shadow-gold-lg);
  color: #1A1200;
}

/* Ghost */
.btn-ghost {
  background: transparent;
  color: var(--clr-white);
  border: 1.5px solid var(--clr-dim);
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,.55);
  color: var(--clr-white);
}

/* WhatsApp */
.btn-wa {
  background: var(--clr-wa);
  color: var(--clr-white);
  box-shadow: var(--shadow-wa);
}

.btn-wa:hover {
  background: var(--clr-wa-dk);
  box-shadow: 0 8px 28px rgba(18,140,126,.45);
  color: var(--clr-white);
}

/* Sizes */
.btn-sm  { padding: 10px 20px; font-size: 13.5px; }
.btn-lg  { padding: 16px 36px; font-size: 15.5px; }

/* ───────────────────────────────────────────────────────────────
   6. SCROLL ANIMATIONS
─────────────────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity var(--t-reveal) var(--ease),
    transform var(--t-reveal) var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }
.reveal-d4 { transition-delay: .4s; }
.reveal-d5 { transition-delay: .5s; }

/* ───────────────────────────────────────────────────────────────
   7. HEADER & NAVIGATION
─────────────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  height: var(--nav-h);
  transition:
    background var(--t-slow),
    border-color var(--t-slow),
    backdrop-filter var(--t-slow),
    box-shadow var(--t-slow);
}

.site-header.scrolled {
  background: rgba(11, 13, 18, 0.92);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--clr-border);
  box-shadow: 0 4px 32px rgba(0,0,0,.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: var(--sp-3);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* ── TEXT LOGO (header) ─────────────────────────────── */
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity var(--t-base);
  flex-shrink: 0;
}

.nav-logo:hover { opacity: .8; }

.logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -.3px;
  color: var(--clr-white);
  line-height: 1;
  text-transform: uppercase;
}

.logo-dot {
  color: var(--clr-gold);
  font-style: normal;
}

/* Desktop nav links */
.desktop-nav { flex: 1; }

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
}

.nav-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--clr-muted);
  letter-spacing: .01em;
  padding-block: var(--sp-1);
  position: relative;
  transition: color var(--t-base);
  text-align: center;
  line-height: 1.2;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--clr-gold);
  transition: width var(--t-base) var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-white);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex-shrink: 0;
}

/* Hamburger button */
.ham-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: var(--sp-1);
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: var(--r-sm);
  transition: background var(--t-base);
}

.ham-btn:hover { background: var(--clr-border); }

.ham-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--clr-white);
  border-radius: 2px;
  transition:
    transform var(--t-base) var(--ease),
    opacity var(--t-base),
    width var(--t-base);
  transform-origin: center;
}

/* Open state */
.ham-btn[aria-expanded="true"] .ham-bar:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.ham-btn[aria-expanded="true"] .ham-bar:nth-child(2) {
  opacity: 0;
  width: 0;
}

.ham-btn[aria-expanded="true"] .ham-bar:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* Mobile drawer */
.mobile-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 390;
  background: var(--clr-bg);
  border-top: 1px solid var(--clr-border);
  padding: var(--sp-5) 6% calc(var(--sp-10) + var(--sticky-h));
  overflow-y: auto;
  animation: drawerIn var(--t-slow) var(--ease) both;
}

@keyframes drawerIn {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

.mob-nav-list {
  margin-bottom: var(--sp-5);
}

.mob-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  color: var(--clr-white);
  padding-block: var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
  transition: color var(--t-base);
}

.mob-nav-link:hover { color: var(--clr-gold); }

.mob-nav-link li:last-child { border-bottom: none; }

.mob-arrow {
  color: var(--clr-gold);
  font-size: 18px;
}

.mob-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.mob-cta-btn {
  justify-content: center;
  width: 100%;
  font-size: 15px;
  padding: 16px;
}

/* ───────────────────────────────────────────────────────────────
   8. HERO SECTION
─────────────────────────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-block: 130px var(--sp-12);
  overflow: hidden;
  background: var(--clr-bg);
}

/* Grid line background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(196,164,74,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(196,164,74,.03) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 0%, transparent 80%);
}

.hero-glow {
  position: absolute;
  width: 640px;
  height: 640px;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow--right {
  top: -20%;
  right: -10%;
  background: radial-gradient(circle, rgba(196,164,74,.07) 0%, transparent 65%);
}

.hero-glow--left {
  bottom: -20%;
  left: -10%;
  background: radial-gradient(circle, rgba(196,164,74,.04) 0%, transparent 65%);
  width: 480px;
  height: 480px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-block: 0;
}

.hero-content {
  max-width: 860px;
}

/* Eyebrow badge */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold-border);
  padding: 7px 18px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-4);
  animation: fadeDown .8s var(--ease) both;
}

.hero-eyebrow span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--clr-gold-lt);
}

/* Pulse dot */
.hero-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--clr-gold);
  flex-shrink: 0;
  animation: pulse 2.2s ease infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(196,164,74,.6); }
  50%       { box-shadow: 0 0 0 7px rgba(196,164,74,0); }
}

/* Tagline above H1 */
.hero-tagline {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(196,164,74,.7);
  margin-bottom: var(--sp-2);
  animation: fadeUp .9s .12s var(--ease) both;
}

/* Main headline */
.hero-h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(38px, 6.2vw, 78px);
  line-height: 1.03;
  letter-spacing: -2.5px;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
  animation: fadeUp .9s .18s var(--ease) both;
}

.hero-h1 em {
  color: var(--clr-gold);
  font-style: normal;
}

/* Subtext */
.hero-sub {
  font-size: 18px;
  line-height: 1.68;
  color: var(--clr-muted);
  max-width: 580px;
  margin-bottom: var(--sp-2);
  animation: fadeUp .9s .26s var(--ease) both;
}

.hero-sub--dim {
  font-size: 15px;
  color: rgba(255,255,255,.32);
  margin-bottom: var(--sp-6);
  animation-delay: .34s;
}

/* CTA group */
.hero-ctas {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-7);
  animation: fadeUp .9s .42s var(--ease) both;
}

/* Trust indicators */
.hero-trust {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  animation: fadeUp .9s .50s var(--ease) both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  font-size: 12.5px;
  color: rgba(255,255,255,.36);
}

.trust-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold-border);
  color: var(--clr-gold);
  font-size: 9px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: var(--sp-5);
  left: 6%;
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 11px;
  color: rgba(255,255,255,.22);
  letter-spacing: .1em;
  text-transform: uppercase;
  animation: fadeUp 1s .8s var(--ease) both;
}

.scroll-line {
  display: block;
  width: 32px;
  height: 1px;
  background: rgba(255,255,255,.22);
}

/* Hero animations */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-14px); }
  to   { opacity: 1; transform: none; }
}

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

/* ───────────────────────────────────────────────────────────────
   9. PROOF / STATS BAR
─────────────────────────────────────────────────────────────── */
.proof-bar {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-item {
  padding: var(--sp-5) var(--sp-3);
  text-align: center;
  border-right: 1px solid var(--clr-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
}

.proof-item:last-child { border-right: none; }

.proof-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 52px);
  letter-spacing: -2px;
  line-height: 1;
  color: var(--clr-white);
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.proof-num sup {
  color: var(--clr-gold);
  font-size: 55%;
  font-weight: 900;
}

.proof-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--clr-muted);
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* ───────────────────────────────────────────────────────────────
   10. WHY SWITCH SECTION
─────────────────────────────────────────────────────────────── */
.switch-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.switch-card {
  background: var(--clr-bg3);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: background var(--t-base);
}

.switch-card:hover { background: var(--clr-bg4); }

.switch-icon {
  font-size: 26px;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold-border);
  border-radius: var(--r-lg);
  transition: transform var(--t-base) var(--ease);
}

.switch-card:hover .switch-icon { transform: scale(1.08); }

.switch-badges {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: var(--r-pill);
  align-self: flex-start;
}

.badge--bad {
  color: var(--clr-red-text);
  background: var(--clr-red-bg);
  border: 1px solid var(--clr-red-border);
}

.badge--good {
  color: var(--clr-green-text);
  background: var(--clr-green-bg);
  border: 1px solid var(--clr-green-border);
}

.switch-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.3px;
  color: var(--clr-white);
}

.switch-body {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.65;
}

/* ───────────────────────────────────────────────────────────────
   11. PROBLEM SECTION
─────────────────────────────────────────────────────────────── */
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: start;
}

.problem-left { display: flex; flex-direction: column; }

.problem-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.problem-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: var(--clr-red-bg);
  border: 1px solid var(--clr-red-border);
  border-radius: var(--r-md);
  font-size: 15px;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  transition: background var(--t-base);
}

.problem-item:hover { background: rgba(220,38,38,.12); }

.prob-x {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(220,38,38,.18);
  color: var(--clr-red-text);
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Pain box */
.pain-box {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-left: 3px solid var(--clr-gold);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-5);
}

.pain-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.4px;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
}

.pain-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.pain-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  font-size: 14.5px;
  color: var(--clr-muted);
  line-height: 1.6;
}

.pain-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--clr-gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.pain-footer {
  margin-top: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--clr-border);
  font-size: 13.5px;
  color: rgba(255,255,255,.3);
  font-style: italic;
  line-height: 1.6;
}

/* ───────────────────────────────────────────────────────────────
   12. AGITATION STRIP
─────────────────────────────────────────────────────────────── */
.agit-strip {
  background: #060709;
  padding-block: var(--sp-10);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
}

.agit-heading {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: -1px;
  color: var(--clr-white);
  text-align: center;
  margin-bottom: var(--sp-6);
}

.agit-grid {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-5);
}

.agit-card {
  background: rgba(255,255,255,.03);
  border: 1px solid var(--clr-border);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--r-md);
  width: 210px;
  flex-shrink: 0;
  transition: border-color var(--t-base), background var(--t-base);
}

.agit-card:hover {
  border-color: var(--clr-border2);
  background: rgba(255,255,255,.05);
}

.agit-card strong {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--clr-white);
  margin-bottom: 6px;
}

.agit-card span {
  font-size: 13.5px;
  color: var(--clr-muted);
  line-height: 1.55;
}

.agit-footer {
  text-align: center;
  font-size: 15.5px;
  color: rgba(255,255,255,.34);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

.agit-footer strong { color: rgba(255,255,255,.72); }

/* ───────────────────────────────────────────────────────────────
   13. SOLUTION SECTION
─────────────────────────────────────────────────────────────── */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin-bottom: var(--sp-5);
}

.solution-card {
  background: var(--clr-bg3);
  padding: var(--sp-5);
  display: flex;
  align-items: flex-start;
  gap: var(--sp-2);
  transition: background var(--t-base);
}

.solution-card:hover { background: var(--clr-bg4); }

.sol-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold-border);
  color: var(--clr-gold);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

.solution-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.3px;
  color: var(--clr-white);
  margin-bottom: 6px;
}

.solution-card p {
  font-size: 13.5px;
  color: var(--clr-muted);
  line-height: 1.65;
}

.solution-kicker {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.4px;
  color: var(--clr-white);
}

.solution-kicker em {
  color: var(--clr-gold);
  font-style: normal;
}

/* ───────────────────────────────────────────────────────────────
   14. SERVICES GRID
─────────────────────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.service-card {
  background: var(--clr-bg2);
  padding: var(--sp-5) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  position: relative;
  overflow: hidden;
  transition: background var(--t-base);
}

/* Gold accent line on hover */
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}

.service-card:hover { background: var(--clr-bg3); }
.service-card:hover::after { transform: scaleX(1); }

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--r-lg);
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: transform var(--t-base) var(--ease);
}

.service-card:hover .service-icon-wrap { transform: scale(1.08); }

.service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -.2px;
  color: var(--clr-white);
}

.service-card p {
  font-size: 13.5px;
  color: var(--clr-muted);
  line-height: 1.65;
  flex: 1;
}

.service-link {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: var(--sp-1);
  transition: gap var(--t-base), color var(--t-base);
}

.service-card:hover .service-link { gap: 9px; }

/* ───────────────────────────────────────────────────────────────
   15. PRINT & DESIGN SERVICES
─────────────────────────────────────────────────────────────── */
.print-subheading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.3px;
  color: var(--clr-text-dark);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.print-subheading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-border-dark);
}

.print-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--clr-border-dark);
  border-radius: var(--r-md);
  overflow: hidden;
}

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

.print-card {
  background: var(--clr-white);
  padding: var(--sp-4) var(--sp-3);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  transition: background var(--t-base), transform var(--t-base);
}

.print-card:hover {
  background: #FEFCF7;
  transform: translateY(-2px);
}

.print-icon {
  font-size: 22px;
}

.print-card h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.2px;
  color: var(--clr-text-dark);
}

.print-card p {
  font-size: 13px;
  color: var(--clr-muted-dark);
  line-height: 1.6;
}

/* ───────────────────────────────────────────────────────────────
   16. HOW IT WORKS
─────────────────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.process-step {
  padding: var(--sp-8) var(--sp-6);
  border-right: 1px solid var(--clr-border);
  position: relative;
  transition: background var(--t-base);
}

.process-step:last-child { border-right: none; }
.process-step:hover { background: rgba(255,255,255,.02); }

.proc-num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -4px;
  color: rgba(196,164,74,.08);
  display: block;
  margin-bottom: var(--sp-4);
  user-select: none;
}

.proc-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold-border);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-2);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--clr-gold);
  letter-spacing: .1em;
  text-transform: uppercase;
}

.process-step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -.4px;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.process-step p {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.72;
}

/* ───────────────────────────────────────────────────────────────
   17. PORTFOLIO
─────────────────────────────────────────────────────────────── */
.portfolio-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--sp-5);
  gap: var(--sp-4);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto auto;
  gap: 3px;
  border-radius: var(--r-md);
  overflow: hidden;
}

.port-item {
  position: relative;
  overflow: hidden;
  background: var(--clr-bg3);
  cursor: pointer;
}

.port-item:nth-child(1) { grid-column: span 7; aspect-ratio: 16 / 10; }
.port-item:nth-child(2) { grid-column: span 5; aspect-ratio: 16 / 10; }
.port-item:nth-child(3),
.port-item:nth-child(4),
.port-item:nth-child(5) { grid-column: span 4; aspect-ratio: 4 / 3; }

.port-ph {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.port-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}

.port-item:hover .port-ph img { transform: scale(1.05); }

/* Placeholder when no real image */
.port-ph-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  background: linear-gradient(135deg, var(--clr-bg3) 0%, var(--clr-bg4) 100%);
}

/* Hide placeholder if real img loads */
.port-ph img[src]:not([src=""])
  ~ .port-ph-placeholder { display: none; }

.port-ph-icon {
  font-size: 28px;
  opacity: .2;
}

.port-ph-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.2);
  text-align: center;
  padding-inline: var(--sp-2);
}

/* Overlay */
.port-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6,7,9,.9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--t-base);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-3);
}

.port-item:hover .port-overlay { opacity: 1; }

.port-meta {
  transform: translateY(8px);
  transition: transform var(--t-base) var(--ease);
}

.port-item:hover .port-meta { transform: translateY(0); }

.port-tag {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 4px;
}

.port-title {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.2px;
  color: var(--clr-white);
}

/* ───────────────────────────────────────────────────────────────
   18. TESTIMONIALS
─────────────────────────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
}

.testi-card {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  transition: border-color var(--t-base), transform var(--t-base);
}

.testi-card:hover {
  border-color: var(--clr-gold-border);
  transform: translateY(-3px);
}

/* Featured */
.testi-card--featured {
  grid-column: span 3;
  flex-direction: row;
  gap: var(--sp-6);
  background: var(--clr-bg4);
  border-color: rgba(196,164,74,.25);
  align-items: flex-start;
}

.testi-card--featured:hover { border-color: rgba(196,164,74,.5); }

.testi-quote-mark {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 80px;
  line-height: .8;
  color: rgba(196,164,74,.12);
  flex-shrink: 0;
  align-self: flex-start;
  user-select: none;
}

.testi-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.testi-stars {
  color: var(--clr-gold);
  font-size: 14px;
  letter-spacing: 2px;
}

.testi-card--featured .testi-stars { font-size: 16px; }

.testi-body {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  flex: 1;
}

.testi-card--featured .testi-body { font-size: 16px; color: rgba(255,255,255,.72); }

.testi-footer {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--clr-border);
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--clr-bg4);
  border: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}

.testi-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  color: var(--clr-white);
  font-style: normal;
}

.testi-role {
  display: block;
  font-size: 12px;
  color: var(--clr-muted);
}

/* ───────────────────────────────────────────────────────────────
   19. SERVICE AREAS
─────────────────────────────────────────────────────────────── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-2);
  margin-top: var(--sp-6);
}

.city-pill {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-2);
  text-align: center;
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base);
}

.city-pill:hover {
  border-color: var(--clr-gold-border);
  background: var(--clr-bg4);
  transform: translateY(-2px);
}

.city-name {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  color: var(--clr-white);
  margin-bottom: 3px;
}

.city-sub {
  display: block;
  font-size: 10.5px;
  color: var(--clr-muted);
  letter-spacing: .04em;
}

/* ───────────────────────────────────────────────────────────────
   20. QUOTE FUNNEL SECTION
─────────────────────────────────────────────────────────────── */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.quote-left {
  display: flex;
  flex-direction: column;
}

.quote-sub {
  font-size: 20px;
  color: var(--clr-muted);
  margin-bottom: var(--sp-4);
}

.quote-promises {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.promise-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-1);
  font-size: 14.5px;
  color: var(--clr-muted);
  line-height: 1.5;
}

.p-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold-border);
  color: var(--clr-gold);
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Funnel box */
.funnel-box {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.funnel-progress {
  height: 2px;
  background: var(--clr-bg4);
}

.funnel-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-lt));
  transition: width .5s var(--ease);
}

.funnel-head {
  padding: var(--sp-4) var(--sp-5) var(--sp-3);
  border-bottom: 1px solid var(--clr-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
}

.funnel-head h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16.5px;
  letter-spacing: -.3px;
  color: var(--clr-white);
}

.funnel-step-label {
  font-size: 12px;
  color: var(--clr-muted);
  white-space: nowrap;
}

.funnel-body {
  padding: var(--sp-4) var(--sp-5) var(--sp-5);
}

/* Funnel step visibility is controlled entirely by JS inline styles.
   No CSS display rules here — avoids any caching or specificity conflicts. */

.funnel-hint {
  font-size: 13.5px;
  color: var(--clr-muted);
  margin-bottom: var(--sp-3);
}

.funnel-options {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.funnel-opt {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 13px 18px;
  background: var(--clr-bg3);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--clr-text);
  text-align: left;
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-fast);
}

.funnel-opt:hover {
  border-color: var(--clr-gold-border);
  background: var(--clr-bg4);
  transform: translateX(3px);
}

.funnel-opt.selected {
  border-color: var(--clr-gold);
  background: var(--clr-gold-dim);
}

.fopt-icon {
  font-size: 18px;
  flex-shrink: 0;
}

/* Funnel summary */
.funnel-summary {
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold-border);
  border-radius: var(--r-md);
  padding: var(--sp-2) var(--sp-2);
  margin-bottom: var(--sp-3);
  font-size: 13px;
  color: var(--clr-text);
  line-height: 1.5;
}

.funnel-summary strong { color: var(--clr-gold-lt); }

/* Form fields */
.form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2);
  margin-bottom: var(--sp-2);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full { grid-column: span 2; }

.form-group label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--clr-muted);
}

.form-group label span {
  color: var(--clr-gold);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--clr-bg3);
  border: 1.5px solid var(--clr-border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--clr-white);
  outline: none;
  transition: border-color var(--t-base), background var(--t-base);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--clr-gold);
  background: var(--clr-bg4);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.2);
}

/* Submit button */
.btn-submit {
  width: 100%;
  margin-top: var(--sp-1);
  padding: 16px;
  background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-lt) 50%, var(--clr-gold) 100%);
  background-size: 200% 100%;
  color: #1A1200;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background-position .3s, box-shadow .3s, transform var(--t-fast);
  box-shadow: var(--shadow-gold);
}

.btn-submit:hover {
  background-position: 100% 0;
  box-shadow: var(--shadow-gold-lg);
  transform: translateY(-2px);
}

.btn-submit:active { transform: translateY(0); }

.btn-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* Status messages */
.form-status {
  margin-top: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-md);
  font-size: 14px;
  line-height: 1.5;
}

.form-status--success {
  background: var(--clr-green-bg);
  border: 1px solid var(--clr-green-border);
  color: var(--clr-green-text);
}

.form-status--error {
  background: var(--clr-red-bg);
  border: 1px solid var(--clr-red-border);
  color: var(--clr-red-text);
}

/* Or divider */
.or-divider {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-block: var(--sp-2);
  font-size: 12px;
  color: var(--clr-muted);
}

.or-divider::before,
.or-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-border);
}

/* WhatsApp full button */
.btn-wa-full {
  width: 100%;
  padding: 14px;
  background: var(--clr-wa);
  color: var(--clr-white);
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 500;
  border: none;
  border-radius: var(--r-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-1);
  text-decoration: none;
  transition: background var(--t-base), transform var(--t-fast);
  box-shadow: var(--shadow-wa);
}

.btn-wa-full:hover {
  background: var(--clr-wa-dk);
  transform: translateY(-1px);
}

/* ───────────────────────────────────────────────────────────────
   21. FAQ SECTION
─────────────────────────────────────────────────────────────── */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-4));
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-list { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--clr-border); }

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-2);
  padding-block: var(--sp-3);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -.2px;
  color: var(--clr-white);
  text-align: left;
  transition: color var(--t-base);
}

.faq-btn:hover { color: var(--clr-gold-lt); }
.faq-btn[aria-expanded="true"] { color: var(--clr-gold); }

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  color: var(--clr-muted);
  font-size: 16px;
  font-weight: 400;
  flex-shrink: 0;
  transition: all var(--t-base);
}

.faq-btn[aria-expanded="true"] .faq-icon {
  background: var(--clr-gold-dim);
  border-color: var(--clr-gold-border);
  color: var(--clr-gold);
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 14.5px;
  color: var(--clr-muted);
  line-height: 1.75;
  overflow: hidden;
  max-height: 0;
  transition:
    max-height var(--t-slow) var(--ease),
    padding var(--t-slow) var(--ease),
    opacity var(--t-slow);
  opacity: 0;
}

.faq-answer.open {
  max-height: 300px;
  padding-bottom: var(--sp-3);
  opacity: 1;
}

/* ───────────────────────────────────────────────────────────────
   22. AREAS BAR
─────────────────────────────────────────────────────────────── */
.areas-bar {
  background: var(--clr-bg2);
  border-top: 1px solid var(--clr-border);
  border-bottom: 1px solid var(--clr-border);
  padding-block: var(--sp-2);
}

.areas-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

.areas-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--clr-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.areas-divider {
  display: block;
  width: 1px;
  height: 16px;
  background: var(--clr-border2);
  flex-shrink: 0;
}

.areas-cities {
  font-size: 13px;
  color: var(--clr-muted);
  line-height: 1.9;
}

/* ───────────────────────────────────────────────────────────────
   22b. EXPANDED SERVICES & USE CASES
─────────────────────────────────────────────────────────────── */

/* Sub-heading inside services section */
.services-sub-heading {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.3px;
  color: var(--clr-white);
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.services-sub-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--clr-border);
}

/* 6-column smaller cards */
.services-grid--6 {
  grid-template-columns: repeat(3, 1fr);
}

.service-card--sm {
  padding: var(--sp-4) var(--sp-3);
}

.service-card--sm h3 {
  font-size: 14px;
}

.service-card--sm p {
  font-size: 12.5px;
}

/* ── USE CASES SECTION ────────────────────────────────────── */
.use-cases-section { background: var(--clr-bg2); }

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.use-case-card {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base);
}

/* Gold accent line on top */
.use-case-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--clr-gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-slow) var(--ease);
}

.use-case-card:hover {
  border-color: var(--clr-gold-border);
  transform: translateY(-3px);
}

.use-case-card:hover::before { transform: scaleX(1); }

.uc-icon {
  font-size: 32px;
  line-height: 1;
}

.uc-badge {
  display: inline-flex;
  align-items: center;
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold-border);
  color: var(--clr-gold);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--r-pill);
  align-self: flex-start;
}

.use-case-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.4px;
  color: var(--clr-white);
}

.use-case-card p {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.7;
  flex: 1;
}

.uc-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-gold);
  text-decoration: none;
  margin-top: var(--sp-1);
  transition: gap var(--t-base);
}

.use-case-card:hover .uc-cta { gap: 9px; }

/* ───────────────────────────────────────────────────────────────
   23. FOOTER
─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--clr-black);
  padding-top: var(--sp-10);
  padding-bottom: var(--sp-5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: var(--sp-9);
  margin-bottom: var(--sp-8);
}

/* Footer brand */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── TEXT LOGO (footer) ─────────────────────────────── */
.footer-logo-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: var(--sp-2);
  transition: opacity var(--t-base);
}

.footer-logo-link:hover { opacity: .75; }

.footer-logo-text {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 19px;
  letter-spacing: -.3px;
  color: rgba(255,255,255,.88);
  line-height: 1;
  text-transform: uppercase;
}

.footer-logo-dot { color: var(--clr-gold); }

.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,.38);
  line-height: 1.68;
  max-width: 260px;
  margin-bottom: var(--sp-4);
}

.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-1);
  background: var(--clr-wa-alpha);
  border: 1px solid var(--clr-wa-border);
  color: var(--clr-wa-light);
  padding: 9px 16px;
  border-radius: var(--r-md);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background var(--t-base);
  align-self: flex-start;
}

.footer-wa:hover { background: rgba(18,140,126,.22); }

/* Footer columns */
.footer-col h4 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.8);
  margin-bottom: var(--sp-3);
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.footer-col ul li a {
  font-size: 13.5px;
  color: rgba(255,255,255,.36);
  text-decoration: none;
  transition: color var(--t-base);
  display: inline-flex;
}

.footer-col ul li a:hover { color: rgba(255,255,255,.8); }

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid var(--clr-border);
  padding-top: var(--sp-4);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-2);
}

.footer-legal {
  font-size: 12px;
  color: rgba(255,255,255,.2);
}

.footer-links {
  display: flex;
  gap: var(--sp-3);
}

.footer-links a {
  font-size: 12px;
  color: rgba(255,255,255,.28);
  text-decoration: none;
  transition: color var(--t-base);
}

.footer-links a:hover { color: var(--clr-gold); }

/* ───────────────────────────────────────────────────────────────
   24. MOBILE STICKY BAR
─────────────────────────────────────────────────────────────── */
.sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: rgba(11,13,18,.97);
  border-top: 1.5px solid var(--clr-gold);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  height: var(--sticky-h);
}

.sticky-bar > * { display: flex; }

.sticky-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 500;
  color: var(--clr-muted);
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  border-right: 1px solid var(--clr-border);
  padding-block: var(--sp-1);
  transition: color var(--t-base), background var(--t-base);
  height: 100%;
}

.sticky-btn:last-child { border-right: none; }

.sticky-ico {
  display: block;
  line-height: 1;
}

/* Call */
.sticky-btn--call:hover { color: var(--clr-white); }

/* WhatsApp */
.sticky-btn--wa {
  background: var(--clr-wa);
  color: var(--clr-white);
}

.sticky-btn--wa:hover { background: var(--clr-wa-dk); }

/* Quote */
.sticky-btn--quote {
  background: var(--clr-gold);
  color: #1A1200;
  font-weight: 600;
}

.sticky-btn--quote:hover { background: var(--clr-gold-lt); }

/* ───────────────────────────────────────────────────────────────
   ===== NEW: CASE STUDIES =====
─────────────────────────────────────────────────────────────── */

.cs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}

.cs-card {
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}

.cs-card:hover {
  border-color: var(--clr-gold-border);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.4);
}

.cs-card:focus-visible {
  outline: 2px solid var(--clr-gold);
  outline-offset: 3px;
}

.cs-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

.cs-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
  display: block;
}

.cs-card:hover .cs-img-wrap img { transform: scale(1.05); }

.cs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,35,51,.85) 0%, rgba(196,164,74,.15) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--t-base);
}

.cs-card:hover .cs-overlay { opacity: 1; }

.cs-view-btn {
  background: var(--clr-gold);
  color: #1A1200;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 22px;
  border-radius: var(--r-md);
  letter-spacing: .03em;
  transform: translateY(8px);
  transition: transform var(--t-base) var(--ease);
}

.cs-card:hover .cs-view-btn { transform: translateY(0); }

.cs-body {
  padding: var(--sp-4) var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
  flex: 1;
}

.cs-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.cs-tag {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold-border);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.cs-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -.3px;
  color: var(--clr-white);
  line-height: 1.3;
}

.cs-card p {
  font-size: 13.5px;
  color: var(--clr-muted);
  line-height: 1.65;
  flex: 1;
}

.cs-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-top: var(--sp-1);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: gap var(--t-base);
}

.cs-card:hover .cs-cta { gap: 9px; }

/* ── CASE STUDY MODAL ─────────────────────────────────────── */

.cs-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(6,7,9,.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4);
  animation: modalFadeIn var(--t-base) var(--ease) both;
}

/* Closing state — fade out before hidden is applied */
.cs-modal-overlay.is-closing {
  animation: modalFadeOut var(--t-base) var(--ease) both;
}

/* Nuclear safety — [hidden] wins over everything including extensions */
.cs-modal-overlay[hidden] {
  display: none !important;
  pointer-events: none !important;
}

/* Ensure open overlay blocks all clicks beneath it */
.cs-modal-overlay {
  pointer-events: auto;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes modalFadeOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}

.cs-modal {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border2);
  border-radius: var(--r-xl);
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalSlideUp var(--t-slow) var(--ease) both;
  scrollbar-width: thin;
  scrollbar-color: var(--clr-border) transparent;
}

@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(32px) scale(.97); }
  to   { opacity: 1; transform: none; }
}

.cs-modal-close {
  position: absolute;
  top: var(--sp-2);
  right: var(--sp-2);
  width: 40px;
  height: 40px;
  background: rgba(11,13,18,.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--clr-border2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--clr-white);
  z-index: 10;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base);
}

.cs-modal-close:hover {
  background: var(--clr-red-bg);
  border-color: var(--clr-red-border);
  color: var(--clr-red-text);
}

.cs-modal-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 8;
  overflow: hidden;
}

.cs-modal-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cs-modal-body {
  padding: var(--sp-6) var(--sp-7) var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.cs-modal-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -1px;
  color: var(--clr-white);
  line-height: 1.1;
}

.cs-modal-desc {
  font-size: 15.5px;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
}

.cs-modal-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  padding: var(--sp-5);
  background: var(--clr-bg3);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
}

.cs-modal-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: var(--sp-2);
}

.cs-modal-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.cs-modal-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--clr-text);
  background: var(--clr-bg4);
  border: 1px solid var(--clr-border);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

.cs-modal-result {
  font-size: 14.5px;
  color: var(--clr-green-text);
  line-height: 1.6;
}

/* ───────────────────────────────────────────────────────────────
   ===== NEW: BLOG =====
─────────────────────────────────────────────────────────────── */

/* Blog page body padding — header is sticky/scrolled by default */
.blog-page { padding-top: var(--nav-h); }

/* Blog hero */
.blog-hero {
  background: var(--clr-bg2);
  border-bottom: 1px solid var(--clr-border);
  padding: var(--sp-12) 6% var(--sp-10);
}

.blog-hero-inner { max-width: 680px; }

.blog-hero-h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: -2px;
  line-height: 1.06;
  color: var(--clr-white);
  margin-bottom: var(--sp-3);
}

.blog-hero-sub {
  font-size: 17px;
  color: var(--clr-muted);
  line-height: 1.7;
  max-width: 540px;
}

/* Blog section */
.blog-section { background: var(--clr-bg); }

/* 2-column grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
  margin-bottom: var(--sp-10);
}

/* Blog card */
.blog-card {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.blog-card:hover {
  border-color: var(--clr-gold-border);
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.35);
}

.blog-card-img-link { display: block; overflow: hidden; }

.blog-card-img-wrap {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--t-slow) var(--ease);
}

.blog-card:hover .blog-card-img-wrap img { transform: scale(1.04); }

.blog-card-body {
  padding: var(--sp-5) var(--sp-5) var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.blog-cat {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--clr-gold);
  background: var(--clr-gold-dim);
  border: 1px solid var(--clr-gold-border);
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.blog-date {
  font-size: 12px;
  color: var(--clr-muted);
}

.blog-card-title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.4px;
  line-height: 1.3;
  margin: 0;
}

.blog-card-title a {
  color: var(--clr-white);
  text-decoration: none;
  transition: color var(--t-base);
}

.blog-card-title a:hover { color: var(--clr-gold-lt); }

.blog-card-excerpt {
  font-size: 14px;
  color: var(--clr-muted);
  line-height: 1.7;
  flex: 1;
}

.blog-read-more {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--clr-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: var(--sp-1);
  transition: gap var(--t-base), color var(--t-base);
}

.blog-card:hover .blog-read-more { gap: 9px; }

/* Blog CTA block */
.blog-cta-block {
  background: var(--clr-bg2);
  border: 1px solid var(--clr-gold-border);
  border-radius: var(--r-md);
  overflow: hidden;
}

.blog-cta-inner {
  padding: var(--sp-10) var(--sp-10);
  text-align: center;
}

.blog-cta-inner h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -1px;
  color: var(--clr-white);
  margin-bottom: var(--sp-2);
}

.blog-cta-inner p {
  font-size: 16px;
  color: var(--clr-muted);
  margin-bottom: var(--sp-5);
}

.blog-cta-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
}

/* Screen reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}

/* ───────────────────────────────────────────────────────────────
   25. RESPONSIVE — 1100px
─────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {

  /* Portfolio: simpler split */
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
  }
  .port-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/8; }
  .port-item:nth-child(2) { grid-column: span 1; aspect-ratio: 4/3; }
  .port-item:nth-child(3),
  .port-item:nth-child(4),
  .port-item:nth-child(5) { grid-column: span 1; aspect-ratio: 4/3; }

  /* Testimonial featured */
  .testi-card--featured { flex-direction: column; gap: var(--sp-3); }
  .testi-quote-mark { display: none; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-card--featured { grid-column: span 2; }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-7);
  }
  .footer-brand { grid-column: span 2; }

  /* Print grid */
  .print-grid { grid-template-columns: repeat(3, 1fr); }
  .cities-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ───────────────────────────────────────────────────────────────
   26. RESPONSIVE — 960px
─────────────────────────────────────────────────────────────── */
@media (max-width: 960px) {

  .switch-grid { grid-template-columns: 1fr; }
  .problem-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .solution-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid--6 { grid-template-columns: repeat(2, 1fr); }
  .use-cases-grid { grid-template-columns: 1fr; gap: var(--sp-3); }
  .cs-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-modal-meta { grid-template-columns: 1fr; gap: var(--sp-3); }
  .process-grid { grid-template-columns: 1fr; }
  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--clr-border);
    padding: var(--sp-5) var(--sp-4);
  }
  .process-step:last-child { border-bottom: none; }
  .quote-grid { grid-template-columns: 1fr; gap: var(--sp-8); }
  .faq-grid { grid-template-columns: 1fr; gap: var(--sp-6); }
  .faq-intro { position: static; }
  .agit-grid { gap: var(--sp-1); }
  .agit-card { width: 170px; }
}

/* ───────────────────────────────────────────────────────────────
   27. RESPONSIVE — 768px (Mobile)
─────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  :root {
    --nav-h: 64px;
  }

  /* Show hamburger, hide desktop nav */
  .desktop-nav,
  .nav-actions { display: none; }
  .ham-btn { display: flex; }

  /* Show sticky bar */
  .sticky-bar { display: block; }
  body { padding-bottom: var(--sticky-h); }

  /* Sections */
  .section { padding-block: var(--sp-8); }
  .container { padding-inline: 5%; }

  /* Hero */
  .hero-section { padding-block: 110px var(--sp-8); min-height: auto; }
  .hero-h1 { font-size: 34px; letter-spacing: -1.5px; }
  .hero-sub { font-size: 16px; }
  .hero-ctas { flex-direction: column; gap: var(--sp-1); }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-trust { gap: var(--sp-2); }
  .scroll-hint { display: none; }

  /* Proof */
  .proof-list { grid-template-columns: repeat(2, 1fr); }
  .proof-item:nth-child(2) { border-right: none; }
  .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--clr-border); }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }
  .services-grid--6 { grid-template-columns: 1fr; }
  .use-cases-grid { grid-template-columns: 1fr; }
  .cs-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cs-modal-body { padding: var(--sp-4) var(--sp-4) var(--sp-6); }
  .cs-modal-meta { grid-template-columns: 1fr; }
  .blog-cta-inner { padding: var(--sp-7) var(--sp-4); }

  /* Print */
  .print-grid { grid-template-columns: repeat(2, 1fr); }
  .print-grid--3 { grid-template-columns: 1fr; }

  /* Portfolio */
  .portfolio-header { flex-direction: column; align-items: flex-start; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .port-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
  .port-item:nth-child(2),
  .port-item:nth-child(3),
  .port-item:nth-child(4),
  .port-item:nth-child(5) { grid-column: span 1; }

  /* Testimonials */
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card--featured { grid-column: span 1; }

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

  /* Funnel */
  .funnel-head { padding: var(--sp-3) var(--sp-3) var(--sp-2); }
  .funnel-body { padding: var(--sp-3) var(--sp-3) var(--sp-4); }
  .form-fields { grid-template-columns: 1fr; }
  .form-group--full { grid-column: span 1; }

  /* Agitation */
  .agit-grid { flex-direction: column; align-items: stretch; }
  .agit-card { width: 100%; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: var(--sp-5); }
  .footer-brand { grid-column: span 1; }

  /* Areas bar */
  .areas-inner { flex-direction: column; align-items: flex-start; gap: var(--sp-1); }
  .areas-divider { display: none; }
}

/* ───────────────────────────────────────────────────────────────
   28. RESPONSIVE — 480px
─────────────────────────────────────────────────────────────── */
@media (max-width: 480px) {

  .hero-h1 { font-size: 28px; letter-spacing: -1px; }
  .proof-num { font-size: 28px; }
  .section-heading { font-size: 26px; }

  .print-grid { grid-template-columns: 1fr; }
  .print-grid--2 { grid-template-columns: 1fr; }
  .cities-grid { grid-template-columns: 1fr 1fr; }

  .hero-ctas .btn { padding: 14px 20px; font-size: 14px; }

  .portfolio-grid { grid-template-columns: 1fr; }
  .port-item:nth-child(n) { grid-column: span 1; aspect-ratio: 16/9; }
}

/* ───────────────────────────────────────────────────────────────
   29. PRINT STYLES
─────────────────────────────────────────────────────────────── */
@media print {
  .site-header,
  .sticky-bar,
  .mobile-drawer,
  .hero-section,
  .agit-strip { display: none; }

  body {
    background: white;
    color: black;
  }
}

/* ───────────────────────────────────────────────────────────────
   30. REDUCED MOTION
─────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}
