/* ============================================================
   ESTIMATORSBOARD — Premium Design System
   Modern | Architectural | Technical | UK Construction
   ============================================================ */

:root {
  /* Logo-derived palette — dark slate (#2B333E) + steel accents + clean neutrals */
  --bg-deep: #0a0c10;
  --bg-primary: #11151c;
  --bg-elevated: #181d26;
  --bg-card: #1f2631;
  --bg-hover: #2b333e; /* exact logo monogram color */
  
  --text-primary: #f0f2f5;
  --text-secondary: #a3abb8;
  --text-muted: #6d7685;
  
  --accent: #8a9bb0; /* steel blue derived from logo tone */
  --accent-soft: #a0b0c4;
  --accent-dim: rgba(138, 155, 176, 0.14);
  --accent-glow: rgba(138, 155, 176, 0.28);
  
  --spark: #7a8fa6;
  --spark-dim: rgba(122, 143, 166, 0.15);
  
  --concrete: #8a919c;
  --line: rgba(138, 155, 176, 0.28);
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);
  
  /* Typography */
  --font-display: 'Manrope', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;
  
  /* Spacing — tighter on mobile via clamp */
  --section-pad: clamp(3rem, 8vw, 8rem);
  --container: min(1280px, 92vw);
  
  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration: 0.6s;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

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

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

.container { width: var(--container); margin-inline: auto; }

/* Typography Scale */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}

/* ============================================================
   INTRO SEQUENCE
   ============================================================ */
.intro {
  position: fixed;
  inset: 0;
  z-index: 20000;
  background: var(--bg-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.intro.done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.intro-logo {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.intro-logo.show {
  opacity: 1;
  transform: scale(1);
}

.intro-logo img {
  width: clamp(200px, 32vw, 360px);
  height: auto;
  filter: drop-shadow(0 0 24px rgba(138, 155, 176, 0.25));
}

.intro-skip {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  transition: color 0.3s, border-color 0.3s;
  z-index: 3;
}

.intro-skip:hover {
  color: var(--accent);
  border-color: var(--accent);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.4s, padding 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 11, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.85rem 0;
  border-bottom-color: var(--border);
}
/* When mobile menu is open, keep header readable on top of the overlay */
body:has(.nav-mobile.open) .site-header {
  background: var(--bg-deep);
  border-bottom-color: var(--border);
  z-index: 10050;
}

.site-header.menu-open {
  background: var(--bg-deep);
  border-bottom-color: var(--border);
  z-index: 10050; /* raise above mobile nav so toggle stays clickable */
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  max-width: min(220px, 55vw);
}

.logo img {
  height: 36px;
  width: auto;
  max-width: 100%;
  filter: none;
  object-fit: contain;
}

@media (min-width: 480px) {
  .logo img { height: 40px; }
  .logo { max-width: 280px; }
}

@media (min-width: 960px) {
  .logo img { height: 42px; }
}

.logo-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  display: none;
}

@media (min-width: 480px) {
  .logo-text { display: block; }
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2.25rem;
}

@media (min-width: 960px) {
  .nav-desktop { display: flex; }
}

.nav-desktop a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s var(--ease-out);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--text-primary);
}

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

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: transparent;
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1.5px solid var(--accent);
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: none;
}

.btn-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease-out);
  z-index: 0;
}

.btn-cta > * ,
.btn-cta {
  z-index: 1;
}

.btn-cta:hover {
  color: #0a0c10;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(138, 155, 176, 0.3);
  filter: none;
}

.btn-cta:hover::before {
  transform: scaleX(1);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border: 1.5px solid var(--border-strong);
  color: var(--text-primary);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 6px;
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s var(--ease-spring);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-2px);
}

/* Solid CTA — steel accent fill matching logo palette */
.btn-cta-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--accent);
  color: #0a0c10;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  border: 1.5px solid var(--accent);
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  box-shadow: 0 2px 12px rgba(138, 155, 176, 0.25);
}
.btn-cta-solid:hover {
  background: var(--accent-soft);
  border-color: var(--accent-soft);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(138, 155, 176, 0.35);
}


/* Mobile Menu Toggle — position:fixed so z-index escapes header stacking context */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  position: fixed;
  top: 0.85rem;
  right: max(1rem, env(safe-area-inset-right));
  z-index: 10050;
  padding: 10px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  background: transparent;
}

@media (min-width: 960px) {
  .menu-toggle { display: none; }
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  transition: transform 0.35s var(--ease-out), opacity 0.25s;
  transform-origin: center;
  border-radius: 1px;
}

.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Fullscreen Mobile Nav — must sit ABOVE the header */
.nav-mobile {
  position: fixed;
  inset: 0;
  background: var(--bg-deep);
  z-index: 10040; /* above header (1000), below toggle (10050) */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.25rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding-top: max(5rem, env(safe-area-inset-top));
  padding-bottom: max(2rem, env(safe-area-inset-bottom));
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-mobile a {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 6vw, 2.5rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--text-secondary);
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s, opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.nav-mobile.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-mobile a:nth-child(1) { transition-delay: 0.05s; }
.nav-mobile a:nth-child(2) { transition-delay: 0.1s; }
.nav-mobile a:nth-child(3) { transition-delay: 0.15s; }
.nav-mobile a:nth-child(4) { transition-delay: 0.2s; }
.nav-mobile a:nth-child(5) { transition-delay: 0.25s; }
.nav-mobile a:nth-child(6) { transition-delay: 0.3s; }

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--accent);
}

.nav-mobile .btn-cta {
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s 0.35s, transform 0.5s 0.35s;
}

.nav-mobile.open .btn-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  transition: transform 8s linear;
}

.hero.loaded .hero-bg img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(12, 14, 18, 0.88) 0%, rgba(12, 14, 18, 0.65) 50%, rgba(12, 14, 18, 0.45) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(138, 155, 176, 0.12) 0%, transparent 55%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  padding: 4rem 0 6rem;
}

.hero-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s 0.3s, transform 0.7s 0.3s;
}

.hero.loaded .hero-labels {
  opacity: 1;
  transform: translateY(0);
}

.hero-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-primary);
  padding: 0.55rem 1rem;
  border: 1px solid rgba(138, 155, 176, 0.35);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(138, 155, 176, 0.18), rgba(138, 155, 176, 0.06));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25), inset 0 1px 0 rgba(255,255,255,0.06);
  transition: background 0.3s, transform 0.35s var(--ease-spring), border-color 0.3s, box-shadow 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  cursor: default;
}

.hero-label .hl-icon {
  font-size: 0.95rem;
  line-height: 1;
  filter: grayscale(0.2);
}

.hero-label:hover {
  background: linear-gradient(145deg, rgba(138, 155, 176, 0.32), rgba(138, 155, 176, 0.14));
  transform: translateY(-3px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(138, 155, 176, 0.2), 0 0 0 1px rgba(138, 155, 176, 0.25);
}

.hero h1 {
  font-size: clamp(2.5rem, 6.5vw, 4.75rem);
  max-width: 14ch;
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s 0.45s, transform 0.8s 0.45s;
  text-shadow: 0 2px 40px rgba(0,0,0,0.4);
}

.hero.loaded h1 {
  opacity: 1;
  transform: translateY(0);
}

.hero h1 span {
  display: block;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-secondary);
  max-width: 36ch;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s 0.6s, transform 0.8s 0.6s;
}

.hero.loaded .hero-sub {
  opacity: 1;
  transform: translateY(0);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.8s 0.75s, transform 0.8s 0.75s;
}

.hero.loaded .hero-actions {
  opacity: 1;
  transform: translateY(0);
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 1s 1.2s;
}

.hero.loaded .scroll-indicator {
  opacity: 1;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-elevated) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
  position: relative;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--spark), var(--accent), transparent);
  opacity: 0.6;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.stat-item {
  text-align: center;
  padding: 0.5rem 1rem;
  position: relative;
}

@media (min-width: 768px) {
  .stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--border-strong);
  }
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ============================================================
   SECTIONS COMMON
   ============================================================ */
.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-header {
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  max-width: 40rem;
}

.section-header h2 {
  font-size: clamp(1.85rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ============================================================
   WHAT WE DO — INTERACTIVE BUILDING
   ============================================================ */
.what-we-do {
  background: var(--bg-primary);
}

.building-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .building-visual {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
  }
}

.building-diagram {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 420px;
  margin: 0 auto;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.building-svg {
  width: 100%;
  height: 100%;
}

.trade-zone {
  cursor: pointer;
  transition: fill 0.35s, stroke 0.35s, filter 0.35s;
}

.trade-zone:hover,
.trade-zone.active {
  fill: rgba(138, 155, 176, 0.22);
  stroke: var(--accent-soft);
  filter: drop-shadow(0 0 8px rgba(138, 155, 176, 0.35));
}

.building-svg .zone-label {
  pointer-events: none;
  transition: fill 0.3s, opacity 0.3s;
}

.trade-zone:hover ~ .zone-label,
.trade-zone.active ~ .zone-label {
  fill: var(--text-primary);
}

.trade-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trade-item {
  padding: 1.1rem 1.35rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg-elevated);
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.35s var(--ease-spring), box-shadow 0.3s;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
}

.trade-item:hover,
.trade-item.active {
  border-color: var(--accent);
  background: var(--bg-card);
  transform: translateX(6px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2), -3px 0 0 var(--accent);
}

.trade-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  letter-spacing: 0.05em;
  padding-top: 0.15rem;
}

.trade-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.trade-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: none;
}

.trade-item.active p,
.trade-item:hover p {
  display: block;
}

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
.services-preview {
  background: var(--bg-deep);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-panel {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s var(--ease-spring);
}

.service-panel:hover {
  border-color: rgba(138, 155, 176, 0.45);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(138, 155, 176, 0.15);
  transform: translateY(-6px);
}

.service-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.service-panel:hover img {
  transform: scale(1.06);
}

.service-panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,11,13,0.95) 0%, rgba(10,11,13,0.4) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: background 0.4s;
}

.service-panel:hover .service-panel-overlay {
  background: linear-gradient(to top, rgba(10,11,13,0.98) 0%, rgba(10,11,13,0.6) 60%, rgba(10,11,13,0.2) 100%);
}

.service-panel h3 {
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  transition: transform 0.4s var(--ease-out);
}

.service-panel:hover h3 {
  transform: translateY(-4px);
}

.service-panel .panel-meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s, transform 0.4s;
}

.service-panel:hover .panel-meta {
  opacity: 1;
  transform: translateY(0);
}

.service-panel .panel-arrow {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.35s, transform 0.35s, border-color 0.3s, background 0.3s;
}

.service-panel:hover .panel-arrow {
  opacity: 1;
  transform: scale(1);
  border-color: var(--accent);
  background: var(--accent-dim);
}

.panel-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process-section {
  background: var(--bg-primary);
  overflow: hidden;
}

.process-track {
  display: flex;
  gap: 0;
  position: relative;
  padding: 2rem 0 1rem;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 2.75rem;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-strong);
  z-index: 0;
}

.process-line {
  position: absolute;
  top: 2.75rem;
  left: 0;
  height: 1px;
  background: var(--accent);
  width: 0;
  z-index: 1;
  transition: width 1.2s var(--ease-out);
}

.process-track.in-view .process-line {
  width: 100%;
}

.process-step {
  flex: 1;
  min-width: 160px;
  position: relative;
  padding-top: 0;
  text-align: center;
  opacity: 0.4;
  transition: opacity 0.5s;
}

.process-track.in-view .process-step {
  opacity: 1;
}

.process-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--border-strong);
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  transition: border-color 0.4s, background 0.4s, box-shadow 0.4s;
}

.process-track.in-view .process-dot {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.process-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.process-step h4 {
  font-size: 0.95rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 18ch;
  margin: 0 auto;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .process-track {
    flex-direction: column;
    gap: 2rem;
    padding-left: 1.5rem;
  }
  .process-track::before {
    top: 0;
    bottom: 0;
    left: 5px;
    right: auto;
    width: 1px;
    height: 100%;
  }
  .process-line {
    top: 0;
    left: 5px;
    width: 1px !important;
    height: 0;
    transition: height 1.2s var(--ease-out);
  }
  .process-track.in-view .process-line {
    height: 100%;
    width: 1px !important;
  }
  .process-step {
    text-align: left;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0 1.25rem;
    min-width: 0;
  }
  .process-dot {
    grid-row: 1 / 3;
    margin: 0.25rem 0 0;
  }
  .process-step p { max-width: none; }
}

/* ============================================================
   CASE STUDIES PREVIEW
   ============================================================ */
.cases-preview {
  background: var(--bg-deep);
}

.cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .cases-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  transition: border-color 0.35s, transform 0.4s var(--ease-spring), box-shadow 0.4s;
}

.case-card:hover {
  border-color: rgba(138, 155, 176, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}

.case-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}

.case-card:hover .case-image img {
  transform: scale(1.05);
}

.case-body {
  padding: 1.5rem;
}

.case-type {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.case-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.case-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.case-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s;
}

.case-card:hover .case-link {
  gap: 0.7rem;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background: var(--bg-primary);
  overflow: hidden;
  padding-bottom: 1rem;
}

.reviews-carousel-wrap {
  overflow: hidden;
  position: relative;
  padding: 0.75rem 0 1.5rem;
  /* soft fade edges without hard black */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
}

.reviews-carousel-track {
  display: flex;
  gap: 1.35rem;
  width: max-content;
  will-change: transform;
  padding: 0.5rem 1.25rem;
  /* driven by JS — no CSS keyframe loop (avoids jump/black flash) */
  transform: translate3d(0, 0, 0);
}

.reviews-carousel-wrap.is-paused .reviews-carousel-track {
  /* pause handled in JS */
}

.review-card {
  flex: 0 0 340px;
  background: linear-gradient(155deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.5rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: border-color 0.35s, transform 0.4s var(--ease-spring), box-shadow 0.35s;
  overflow: hidden;
}

.review-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 0%, rgba(138,155,176,0.1) 0%, transparent 55%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}

.review-card:hover {
  border-color: rgba(138, 155, 176, 0.45);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 18px 44px rgba(0,0,0,0.35);
}

.review-card:hover::before {
  opacity: 1;
}

.review-stars {
  display: flex;
  gap: 0.2rem;
  font-size: 1.05rem;
  line-height: 1;
  color: #e8b84a;
  letter-spacing: 0.05em;
}

.review-stars span {
  display: inline-block;
  animation: starPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.review-card:hover .review-stars span:nth-child(1) { animation-delay: 0.02s; }
.review-card:hover .review-stars span:nth-child(2) { animation-delay: 0.06s; }
.review-card:hover .review-stars span:nth-child(3) { animation-delay: 0.1s; }
.review-card:hover .review-stars span:nth-child(4) { animation-delay: 0.14s; }
.review-card:hover .review-stars span:nth-child(5) { animation-delay: 0.18s; }

@keyframes starPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.25); }
  100% { transform: scale(1); }
}

.review-quote {
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-primary);
  margin: 0;
  flex: 1;
  position: relative;
}

.review-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(138,155,176,0.12);
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(138,155,176,0.35), rgba(138,155,176,0.12));
  border: 1px solid rgba(138,155,176,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  flex-shrink: 0;
}

.review-meta {
  flex: 1;
  min-width: 0;
}

.review-meta strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.1rem;
}

.review-meta span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.review-badge {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.28rem 0.55rem;
  border: 1px solid rgba(138,155,176,0.35);
  border-radius: 4px;
  background: rgba(138,155,176,0.08);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .review-card {
    flex: 0 0 290px;
    padding: 1.35rem 1.2rem 1.25rem;
  }
  .review-quote {
    font-size: 0.95rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reviews-carousel-track {
    transform: none !important;
  }
}

/* legacy testimonial classes kept for safety */
.testimonial-track { display: none; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(138, 155, 176, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(122, 143, 166, 0.08) 0%, transparent 45%);
  pointer-events: none;
}

.final-cta-inner {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto;
  position: relative;
}

.final-cta h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: 1rem;
}

.final-cta p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.final-cta-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.final-cta-contact a {
  color: var(--text-secondary);
  transition: color 0.3s;
}

.final-cta-contact a:hover {
  color: var(--accent);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-brand img {
  height: 32px;
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 28ch;
  line-height: 1.6;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s, background 0.3s;
}

.footer-social a:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
}

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: var(--text-secondary);
  transition: fill 0.3s;
}

.footer-social a:hover svg {
  fill: var(--accent);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,11,13,0.95) 0%, rgba(10,11,13,0.6) 50%, rgba(10,11,13,0.4) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  max-width: 16ch;
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  max-width: 40ch;
  line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .coverage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .coverage-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.coverage-item {
  padding: 1.25rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  transition: border-color 0.3s;
}

.coverage-item:hover {
  border-color: var(--accent);
}

.coverage-item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.coverage-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 700px) {
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-full-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.4s;
}

.service-full-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}

@media (min-width: 500px) {
  .service-full-card {
    grid-template-columns: 140px 1fr;
  }
}

.service-full-img {
  aspect-ratio: 1;
  overflow: hidden;
}

@media (min-width: 500px) {
  .service-full-img {
    aspect-ratio: auto;
    height: 100%;
  }
}

.service-full-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.service-full-card:hover .service-full-img img {
  transform: scale(1.05);
}

.service-full-body {
  padding: 1.5rem;
}

.service-full-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.service-full-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.service-deliverables {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-deliverables span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  color: var(--text-secondary);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 860px) {
  .contact-layout {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 4rem;
  }
}

.contact-info h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-info > p {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-detail a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
  color: var(--text-primary);
  transition: color 0.3s;
}

.contact-detail a:hover {
  color: var(--accent);
}

.contact-detail svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent);
  flex-shrink: 0;
}

.contact-form {
  background: linear-gradient(160deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 500px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-full { grid-column: 1 / -1; }
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: 3px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a8a59e' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

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

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--accent);
  transition: transform 0.35s var(--ease-out);
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease-out), padding 0.45s;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================================
   UTILITY
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

.text-accent { color: var(--accent); }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Progress bar */
.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0;
  z-index: 10060;
  transition: width 0.1s linear;
}

/* Measurement marks */
.measure-mark {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.measure-mark::before,
.measure-mark::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border-strong);
}

/* ============================================================
   MOBILE-FIRST ENHANCEMENTS
   ============================================================ */

/* Prevent horizontal overflow */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Mobile nav link touch targets (complements main .nav-mobile rules) */
.nav-mobile a {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  text-align: center;
}

/* Header padding on small screens */
.header-inner {
  padding-inline: clamp(1rem, 4vw, 2rem);
}

/* Hero adjustments */
@media (max-width: 767px) {
  .hero {
    min-height: 85vh;
    padding-top: 5rem;
  }
  
  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.5rem);
    line-height: 1.2;
  }
  
  .hero-labels {
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
  }
  
  .hero-label {
    font-size: 0.62rem;
    padding: 0.4rem 0.7rem;
    letter-spacing: 0.08em;
  }
  .hero-label .hl-icon {
    font-size: 0.8rem;
  }
  
  .hero-content {
    padding-inline: 1.25rem;
  }
  
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
  }
  
  .hero-ctas .btn-cta,
  .hero-ctas .btn-outline,
  .hero-ctas .btn-cta-solid {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 1rem 1.5rem;
  }
  
  /* Section padding tighter */
  section {
    padding-block: clamp(2.5rem, 6vw, 5rem);
  }
  
  .container {
    width: min(1280px, 94vw);
  }
  
  /* Cards & grids */
  .services-grid,
  .cases-grid,
  .stats-grid,
  .features-grid {
    gap: 1rem;
  }
  
  /* Footer */
  .footer-inner {
    padding-inline: 1.25rem;
  }
  
  .footer-grid {
    gap: 2rem;
  }
  
  /* Forms */
  input, textarea, select {
    font-size: 16px !important; /* prevents iOS zoom */
    min-height: 48px;
  }
  
  /* Process steps already handled */
  
  /* Reduce large margins */
  .section-header {
    margin-bottom: 2rem;
  }
  
  /* Better image aspect on mobile */
  .case-card img,
  .service-card img {
    aspect-ratio: 16/10;
    object-fit: cover;
  }
}

/* Extra small devices */
@media (max-width: 380px) {
  .logo img {
    height: 30px;
  }
  
  .hero h1 {
    font-size: 1.55rem;
  }
  
  .btn-cta, .btn-outline, .btn-cta-solid {
    font-size: 0.72rem;
    letter-spacing: 0.05em;
  }
}

/* mobile nav padding already set in main .nav-mobile rule */

/* Safe area for notched phones */
@supports (padding: max(0px)) {
  .site-header {
    padding-left: max(0px, env(safe-area-inset-left));
    padding-right: max(0px, env(safe-area-inset-right));
  }
}


/* Interactive coverage cards (About page) */
.coverage-interactive {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 600px) {
  .coverage-interactive {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .coverage-interactive {
    grid-template-columns: repeat(2, 1fr);
  }
}
.coverage-interactive .coverage-item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  gap: 0.15rem 1rem;
  text-align: left;
  padding: 1.15rem 1.35rem;
  cursor: pointer;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-elevated);
  color: inherit;
  font: inherit;
  width: 100%;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-spring);
  position: relative;
}
.coverage-interactive .coverage-item:hover {
  border-color: var(--accent);
  background: var(--bg-card);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25);
}
.coverage-interactive .coverage-item[aria-expanded="true"] {
  border-color: var(--accent);
  background: var(--bg-card);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3), inset 3px 0 0 var(--accent);
}
.coverage-interactive .cov-icon {
  grid-row: 1 / 3;
  font-size: 1.6rem;
  line-height: 1;
  align-self: center;
}
.coverage-interactive .coverage-item strong {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}
.coverage-interactive .cov-tags {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.coverage-interactive .cov-detail {
  grid-column: 1 / -1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s var(--ease-out), opacity 0.3s, margin 0.3s;
  margin-top: 0;
}
.coverage-interactive .coverage-item[aria-expanded="true"] .cov-detail {
  max-height: 220px;
  opacity: 1;
  margin-top: 0.85rem;
}
.coverage-interactive .cov-detail p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.coverage-interactive .cov-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.02em;
  display: inline-block;
}
.coverage-interactive .cov-link:hover {
  color: var(--accent-soft);
  text-decoration: underline;
}


/* Country flags in Where We Work */
.coverage-interactive .cov-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
}
.coverage-interactive .cov-icon .flag-img,
.coverage-interactive .flag-img {
  width: 36px;
  height: 27px;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.35);
  display: block;
  border: 1px solid rgba(255,255,255,0.12);
}

/* ============================================================
   PACKAGES CAROUSEL (About — What We Cover)
   Fun horizontal auto-glide like reviews
   ============================================================ */
.packages-carousel-section {
  overflow: hidden;
  padding-bottom: 2rem;
}
.packages-carousel-wrap {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 4%, #000 96%, transparent 100%);
  padding: 0.5rem 0 1.5rem;
}
.packages-carousel-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: packagesMarquee 45s linear infinite;
  padding: 0.5rem 1.5rem;
}
.packages-carousel-track:hover,
.packages-carousel-track:focus-within {
  animation-play-state: paused;
}
@keyframes packagesMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.package-card {
  flex: 0 0 260px;
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 1.5rem 1.4rem !important;
  background: linear-gradient(155deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: border-color 0.35s, transform 0.4s var(--ease-spring), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  gap: 0.35rem !important;
  width: auto !important;
  color: inherit;
  font: inherit;
}
.package-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(138,155,176,0.12) 0%, transparent 60%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}
.package-card:hover {
  border-color: rgba(138, 155, 176, 0.45);
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.package-card:hover::before {
  opacity: 1;
}
.package-card[aria-expanded="true"] {
  border-color: var(--accent);
  box-shadow: 0 14px 36px rgba(0,0,0,0.32), inset 0 0 0 1px rgba(138,155,176,0.25);
  transform: translateY(-4px);
}
.pkg-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(138,155,176,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.6rem;
  transition: background 0.3s, transform 0.4s var(--ease-spring);
}
.package-card:hover .pkg-icon-wrap {
  background: rgba(138,155,176,0.22);
  transform: scale(1.08) rotate(-3deg);
}
.package-card .cov-icon {
  font-size: 1.65rem !important;
  line-height: 1;
  width: auto !important;
  min-width: 0 !important;
  grid-row: auto !important;
}
.package-card strong {
  font-size: 1.1rem !important;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 !important;
  display: block;
}
.package-card .cov-tags {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.package-card .cov-detail {
  grid-column: auto !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease-out), opacity 0.3s, margin 0.3s;
  margin-top: 0;
  width: 100%;
}
.package-card[aria-expanded="true"] .cov-detail {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.75rem;
}
.package-card .cov-detail p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 0.65rem;
}
.carousel-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
  opacity: 0.8;
}

/* ============================================================
   REGIONS GRAPHIC CAROUSEL (Where We Work)
   ============================================================ */
.regions-graphic-section {
  overflow: hidden;
  padding-bottom: 2rem;
}
.regions-carousel-wrap {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.75rem 0 1.5rem;
  mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 3%, #000 97%, transparent 100%);
}
.regions-carousel-wrap::-webkit-scrollbar { display: none; }
.regions-carousel-track {
  display: flex;
  gap: 1.35rem;
  width: max-content;
  padding: 0.5rem 1.5rem;
}
.region-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.75rem 1.35rem 1.5rem !important;
  background: linear-gradient(165deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  transition: border-color 0.35s, transform 0.4s var(--ease-spring), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
  grid-template-columns: none !important;
  grid-template-rows: none !important;
  gap: 0.4rem !important;
  width: auto !important;
  color: inherit;
  font: inherit;
}
.region-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.region-card:hover {
  border-color: rgba(138, 155, 176, 0.5);
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 20px 48px rgba(0,0,0,0.38);
}
.region-card:hover::after {
  opacity: 1;
}
.region-card[aria-expanded="true"] {
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35), 0 0 0 1px rgba(138,155,176,0.2);
  transform: translateY(-6px);
}
.region-flag-hero {
  width: 80px;
  height: 60px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.85rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-primary);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.3s;
}
.region-card:hover .region-flag-hero {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 10px 28px rgba(0,0,0,0.45);
}
.flag-img-lg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.region-icon-hero {
  background: rgba(138,155,176,0.15);
}
.region-emoji {
  font-size: 2.2rem;
  line-height: 1;
}
.region-card strong {
  font-size: 1.15rem !important;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0 !important;
  display: block;
}
.region-card .cov-tags {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.region-card .cov-detail {
  grid-column: auto !important;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.45s var(--ease-out), opacity 0.3s, margin 0.3s;
  margin-top: 0;
  width: 100%;
  text-align: left;
}
.region-card[aria-expanded="true"] .cov-detail {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.85rem;
}
.region-card .cov-detail p {
  font-size: 0.86rem;
  color: var(--text-secondary);
  line-height: 1.55;
  margin: 0 0 0.65rem;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .packages-carousel-track {
    animation: none;
  }
}

/* ============================================================
   PACKAGES VISUAL GRID (About — with photos & animation)
   ============================================================ */
.packages-visual-section {
  overflow: hidden;
}
.packages-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 600px) {
  .packages-visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 960px) {
  .packages-visual-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .packages-visual-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.35rem;
  }
}
.pkg-visual-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.35s, transform 0.45s var(--ease-spring), box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}
.pkg-visual-card:hover {
  border-color: rgba(138, 155, 176, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35);
}
.pkg-visual-img {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.pkg-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.pkg-visual-card:hover .pkg-visual-img img {
  transform: scale(1.08);
}
.pkg-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,14,20,0.55) 0%, transparent 55%);
  pointer-events: none;
}
.pkg-visual-body {
  padding: 1.15rem 1.25rem 1.35rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.pkg-visual-icon {
  font-size: 1.4rem;
  line-height: 1;
  margin-bottom: 0.2rem;
}
.pkg-visual-body h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  color: var(--text-primary);
}
.pkg-tags {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.35rem !important;
}
.pkg-visual-body p:last-child {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* ============================================================
   REGIONS VISUAL GRID (Where We Work — graphic flags)
   ============================================================ */
.regions-visual-section {
  overflow: hidden;
}
.regions-visual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.15rem;
}
@media (min-width: 560px) {
  .regions-visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .regions-visual-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.region-visual-card {
  background: linear-gradient(165deg, var(--bg-elevated) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: border-color 0.35s, transform 0.4s var(--ease-spring), box-shadow 0.35s;
  position: relative;
  overflow: hidden;
}
.region-visual-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.region-visual-card:hover {
  border-color: rgba(138, 155, 176, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.32);
}
.region-visual-card:hover::before {
  opacity: 1;
}
.region-flag-big {
  width: 72px;
  height: 54px;
  margin: 0 auto 1rem;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.1);
  transition: transform 0.4s var(--ease-spring);
}
.region-visual-card:hover .region-flag-big {
  transform: scale(1.1) rotate(-2deg);
}
.region-flag-big img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.region-icon-only {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(138,155,176,0.15);
  font-size: 1.8rem;
}
.region-visual-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
  color: var(--text-primary);
}
.region-meta {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.55rem !important;
}
.region-visual-card p:last-child {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}


/* ============================================================
   LAUNCH FIXES
   ============================================================ */
/* If JavaScript fails or is blocked, never leave content invisible */
html:not(.js) .reveal,
html:not(.js) .reveal-scale,
html:not(.js) .pv-step,
html:not(.js) .hero-labels,
html:not(.js) .hero h1,
html:not(.js) .hero-sub,
html:not(.js) .hero-actions,
html:not(.js) .scroll-indicator { opacity: 1 !important; transform: none !important; }
html:not(.js) .intro { display: none !important; }

/* Skip link */
.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 30000;
  background: var(--accent); color: #0a0c10; padding: 0.7rem 1.1rem;
  font-weight: 600; border-radius: 4px; transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* Visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--accent-soft); outline-offset: 3px;
}

/* SVG icons replacing emoji */
.hero-label .hl-icon svg { width: 15px; height: 15px; display: block; color: var(--accent-soft); }
.pkg-visual-icon svg { width: 24px; height: 24px; display: block; color: var(--accent); }
.region-icon-only svg { width: 42%; height: 42%; color: var(--accent-soft); }
.region-globe { display: flex; width: 100%; height: 100%; align-items: center; justify-content: center; }

/* Anchored case studies clear the fixed header */
.case-detail { scroll-margin-top: 110px; }

/* Service cards are now links */
a.service-full-card { color: inherit; }

/* Contact form */
.hp-field { position: absolute !important; left: -10000px !important; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin-top: 0.9rem; font-size: 0.92rem; line-height: 1.5; min-height: 1.2em; }
.form-status:empty { display: none; }
.form-status.is-ok { color: #8fd4a8; }
.form-status.is-error { color: #f2a49c; }
.form-status a { color: var(--accent-soft); text-decoration: underline; }
.form-note { margin-top: 0.6rem; font-size: 0.78rem; color: var(--text-muted); text-align: center; }
.form-note a, .footer-bottom a { color: var(--text-secondary); text-decoration: underline; }
.form-group [aria-invalid="true"] { border-color: #e07a7a; }

/* Legal / simple content pages */
.legal-content { max-width: 46rem; margin: 0 auto; }
.legal-content h2 { font-size: 1.35rem; margin: 2.2rem 0 0.7rem; }
.legal-content p, .legal-content li { color: var(--text-secondary); line-height: 1.75; margin-bottom: 0.8rem; }
.legal-content ul { list-style: disc; padding-left: 1.3rem; }
.legal-content a { color: var(--accent-soft); text-decoration: underline; }
.legal-updated { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; color: var(--text-muted); }

/* ============================================================
   SERVICE LANDING PAGES
   ============================================================ */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.1rem; }
.breadcrumbs a { color: var(--accent); }
.breadcrumbs a:hover { color: var(--text-primary); }
.page-hero-actions { opacity: 1 !important; transform: none !important; margin-top: 1.8rem; }
.section-tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.split { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: start; }
@media (min-width: 900px) { .split { grid-template-columns: 1.25fr 0.9fr; gap: 4rem; } }
.split-copy h2, .h2-plain { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 1.2rem; }
.split-copy p, .narrow p { color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; font-size: 1.02rem; max-width: 65ch; }
.narrow { max-width: 50rem; }
.deliver-card { background: linear-gradient(160deg, var(--bg-elevated), var(--bg-card)); border: 1px solid var(--border-strong); border-radius: 12px; padding: 1.8rem; position: sticky; top: 100px; }
.deliver-card h3 { font-size: 1.15rem; margin-bottom: 1.1rem; }
.tick-list li { display: grid; grid-template-columns: 20px 1fr; gap: 0.7rem; padding: 0.55rem 0; border-bottom: 1px solid var(--border); color: var(--text-secondary); font-size: 0.95rem; line-height: 1.5; }
.tick-list li:last-child { border-bottom: 0; }
.tick-list svg { width: 18px; height: 18px; color: var(--accent-soft); margin-top: 2px; }
.deliver-meta { margin-top: 1.1rem; font-size: 0.78rem; color: var(--text-muted); line-height: 1.6; }
.case-callout { display: grid; gap: 0.4rem; padding: clamp(1.6rem, 4vw, 2.6rem); border: 1px solid var(--border-strong); border-radius: 12px; background: radial-gradient(ellipse at 0% 0%, rgba(138,155,176,0.14), transparent 60%), var(--bg-elevated); transition: border-color 0.3s, transform 0.3s; }
.case-callout:hover { border-color: var(--accent); transform: translateY(-3px); }
.case-callout .eyebrow { margin-bottom: 0.3rem; }
.case-callout-figure { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem, 6vw, 3.6rem); line-height: 1; color: var(--accent-soft); }
.case-callout-text { color: var(--text-secondary); max-width: 55ch; font-size: 1.02rem; line-height: 1.6; }
.case-callout .case-link { margin-top: 0.6rem; }
.h2-small { font-size: 1.3rem; margin-bottom: 1.2rem; }
.related-grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
@media (min-width: 700px) { .related-grid { grid-template-columns: repeat(3, 1fr); } }
.related-card { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.2rem 1.4rem; border: 1px solid var(--border); border-radius: 10px; background: var(--bg-elevated); font-weight: 600; transition: border-color 0.3s, background 0.3s; min-height: 44px; }
.related-card svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; transition: transform 0.3s; }
.related-card:hover { border-color: var(--accent); background: var(--bg-card); }
.related-card:hover svg { transform: translateX(4px); }
.faq-answer a { color: var(--accent-soft); text-decoration: underline; }
/* Footer with services column */
@media (min-width: 900px) { .footer-grid.has-services { grid-template-columns: 1.3fr 1fr 1fr 1fr; } }
@media (min-width: 640px) and (max-width: 899px) { .footer-grid.has-services { grid-template-columns: 1fr 1fr; } }
.inline-link { color: var(--accent-soft); font-weight: 500; white-space: nowrap; }
.inline-link:hover { color: var(--text-primary); }
.pkg-visual-body h3 a:hover { color: var(--accent-soft); }
