/* ==========================================================================
   Prophase Data & Electrical — Design System
   Contents: Tokens, Reset, Typography, Buttons, Topbar, Header, Mobile Nav,
   Hero, Stats, Sections, Cards, Forms, Footer, Utilities, Media Queries
   ========================================================================== */

/* Self-hosted fonts (latin subset only — English-only site), replacing the
   Google Fonts CDN. Each is a single variable-weight file covering the
   whole range actually used, so this is two font requests total instead of
   two external origins plus a render-blocking third-party CSS fetch. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../fonts/inter-variable-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Sora";
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
  src: url("../fonts/sora-variable-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  /* Brand colors: black / orange / white — matches the real logo (orange bolt, black wordmark, white badge) */
  --c-navy-950: #0a0a0a;
  --c-navy-900: #161616;
  --c-navy-800: #242424;
  --c-navy-700: #333333;
  --c-amber-100: #fdf1dc;
  --c-amber-400: #f7b84b;
  --c-amber-500: #f5a623;
  --c-amber-600: #db8f12;
  --c-amber-700: #b8740a;
  /* amber-800/900: same hue as the brand orange, darkened specifically for text
     and icons on light backgrounds — amber-500/600 fail WCAG AA there (as low
     as 2.0:1). Only used where amber sits ON a light surface as foreground;
     amber-600/700 stay untouched since they're also used as hover/active
     BACKGROUND colors under dark (navy-950) text, where darkening would have
     cut that contrast instead of fixing anything. */
  --c-amber-800: #9b6308;
  --c-amber-900: #7e5007;

  /* Neutrals */
  --c-white: #ffffff;
  --c-grey-50: #f7f9fb;
  --c-grey-100: #eef2f6;
  --c-grey-200: #e2e8f0;
  --c-grey-400: #97a3b4;
  --c-grey-500: #64748b;
  --c-grey-600: #4b5768;
  --c-grey-700: #3c4757;
  --c-grey-900: #161e2b;

  /* Semantic */
  --c-bg: var(--c-white);
  --c-bg-alt: var(--c-grey-50);
  --c-text: var(--c-grey-900);
  --c-text-muted: var(--c-grey-500);
  --c-border: var(--c-grey-200);

  /* Type */
  --font-heading: "Sora", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --container-w: 1240px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 20px 48px rgba(0, 0, 0, 0.16);
  --header-h: 76px;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-amber: 0 12px 28px -10px rgba(245, 166, 35, 0.5);
}

/* ===== Reset ===== */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }
::selection { background: var(--c-amber-500); color: var(--c-navy-950); }
body, h1, h2, h3, h4, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select, button { font-family: inherit; font-size: inherit; }

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--c-navy-950); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 800; }
h3 { font-size: 1.2rem; font-weight: 700; }

main { display: block; overflow-x: hidden; }

/* ===== Layout helpers ===== */
.container { max-width: var(--container-w); margin-inline: auto; padding-inline: 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-alt { background: var(--c-bg-alt); }
.section-dark { background: var(--c-navy-950); color: var(--c-grey-300, #cbd5e1); }

.section-head { max-width: 700px; margin: 0 auto 56px; text-align: center; }
.section-head.left { margin: 0 0 48px; text-align: left; }
.section-head p { color: var(--c-text-muted); margin-top: 14px; font-size: 1.05rem; }
.section-head h2 { margin-top: 12px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.78rem;
  font-weight: 700; color: var(--c-amber-800);
}
.eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--c-amber-500); display: inline-block; }
.eyebrow.on-dark { color: var(--c-amber-400); }

.lead { font-size: 1.1rem; color: var(--c-text-muted); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 28px; border-radius: var(--radius-sm); font-weight: 700;
  font-size: 0.95rem; border: 2px solid transparent; transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out), color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary { background: var(--c-amber-500); color: var(--c-navy-950); }
.btn-primary:hover { background: var(--c-amber-600); transform: translateY(-2px); box-shadow: var(--shadow-amber); }
.btn:active { transform: translateY(0) scale(0.98); transition-duration: 0.08s; }
.btn-secondary { background: var(--c-navy-900); color: var(--c-white); }
.btn-secondary:hover { background: var(--c-navy-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline-light { border-color: rgba(255,255,255,0.45); color: var(--c-white); background: transparent; }
.btn-outline-light:hover { border-color: var(--c-white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-outline-dark { border-color: var(--c-navy-900); color: var(--c-navy-900); background: transparent; }
.btn-outline-dark:hover { background: var(--c-navy-900); color: var(--c-white); transform: translateY(-2px); }
.btn-lg { padding: 16px 34px; font-size: 1rem; }
.btn-block { width: 100%; }

/* ===== Topbar ===== */
.topbar { background: var(--c-navy-950); color: var(--c-grey-400); font-size: 0.85rem; padding: 9px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 6px; transition: color 0.18s ease; }
.topbar a:hover { color: var(--c-amber-400); }
.topbar svg { width: 14px; height: 14px; }
.topbar-badge { display: inline-flex; align-items: center; gap: 6px; color: var(--c-grey-400); }
.topbar-badge svg { color: var(--c-amber-400); }

/* ===== Header ===== */
.header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.88); -webkit-backdrop-filter: saturate(180%) blur(12px); backdrop-filter: saturate(180%) blur(12px); border-bottom: 1px solid var(--c-border); transition: box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out); }
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.09); background: rgba(255,255,255,0.94); }
@supports not (backdrop-filter: blur(12px)) { .header { background: var(--c-white); } }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; min-height: var(--header-h); }

.logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 800; font-size: 1.18rem; color: var(--c-navy-950); flex-shrink: 0; }
.logo .logo-mark { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; box-shadow: 0 0 0 1px var(--c-border); }
.logo .logo-text-sub { display: block; font-family: var(--font-body); font-weight: 600; font-size: 0.66rem; letter-spacing: 0.06em; color: var(--c-amber-800); text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > li { position: relative; }
.nav a.nav-link { font-weight: 600; font-size: 0.95rem; color: var(--c-navy-900); padding: 28px 0; display: inline-flex; align-items: center; gap: 6px; position: relative; }
.nav a.nav-link::after { content: ""; position: absolute; left: 0; right: 0; bottom: 22px; height: 2px; background: var(--c-amber-500); border-radius: 2px; transform: scaleX(0); transform-origin: center; transition: transform 0.3s var(--ease-out); }
.nav a.nav-link:hover::after, .nav a.nav-link.active::after { transform: scaleX(1); }
.nav a.nav-link { transition: color 0.25s var(--ease-out); }
.nav a.nav-link:hover { color: var(--c-amber-800); }
.nav a.nav-link.active { color: var(--c-amber-800); }
.nav-caret { width: 14px; height: 14px; transition: transform 0.2s ease; }
.nav-item-dropdown:hover .nav-caret { transform: rotate(180deg); }

.dropdown-menu {
  position: absolute; top: calc(100% - 14px); left: 50%; transform: translate(-50%, -8px);
  background: var(--c-white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg);
  min-width: 280px; padding: 10px; opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease; border: 1px solid var(--c-border);
}
.nav-item-dropdown:hover .dropdown-menu, .nav-item-dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0);
}
.dropdown-menu a { display: flex; align-items: center; gap: 12px; padding: 11px 14px; border-radius: var(--radius-sm); color: var(--c-navy-900); font-weight: 600; font-size: 0.9rem; transition: background 0.15s ease; }
.dropdown-menu a:hover { background: var(--c-grey-50); color: var(--c-amber-800); }
.dropdown-menu a svg { width: 18px; height: 18px; color: var(--c-amber-500); flex-shrink: 0; }
.dropdown-menu .dropdown-divider { height: 1px; background: var(--c-border); margin: 6px 8px; }
.dropdown-menu .dropdown-all { font-size: 0.84rem; color: var(--c-grey-500); justify-content: space-between; }

.header-actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.header-phone { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--c-navy-950); }
.header-phone .phone-icon-wrap { width: 38px; height: 38px; border-radius: 50%; background: var(--c-amber-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.header-phone .phone-icon-wrap svg { width: 18px; height: 18px; color: var(--c-amber-800); }
.header-phone .phone-text { display: flex; flex-direction: column; gap: 2px; }
.header-phone .phone-num { display: block; font-size: 0.82rem; font-weight: 700; color: var(--c-navy-950); line-height: 1.3; transition: color 0.18s ease; }
.header-phone .phone-num:hover { color: var(--c-amber-800); }

.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; border: 1px solid var(--c-border); border-radius: var(--radius-sm); background: var(--c-white); flex-shrink: 0; }
.nav-toggle span { width: 20px; height: 2px; background: var(--c-navy-950); margin-inline: auto; transition: transform 0.25s ease, opacity 0.25s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Mobile nav panel ===== */
.mobile-nav { position: fixed; inset: 0; top: var(--header-h); background: var(--c-white); z-index: 49; transform: translateX(100%); transition: transform 0.3s ease; overflow-y: auto; padding: 24px; }
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a { display: block; padding: 16px 4px; font-weight: 700; font-size: 1.05rem; color: var(--c-navy-950); border-bottom: 1px solid var(--c-border); }
.mobile-nav .mobile-cta { margin-top: 24px; }
.mobile-cta .btn { display: flex; }
.mobile-cta .btn-secondary { color: var(--c-white); }
.mobile-submenu-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; border-bottom: 1px solid var(--c-border); padding: 16px 4px; font-weight: 700; font-size: 1.05rem; color: var(--c-navy-950); }
.mobile-submenu-toggle svg { width: 18px; height: 18px; transition: transform 0.2s ease; }
.mobile-submenu-toggle.open svg { transform: rotate(180deg); }
.mobile-submenu { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; background: var(--c-grey-50); border-radius: var(--radius-sm); }
.mobile-submenu a { padding: 13px 18px; font-weight: 600; font-size: 0.95rem; border-bottom: 1px solid var(--c-border); }
.mobile-submenu a:last-child { border-bottom: none; }
body.nav-open { overflow: hidden; }

/* ===== Hero ===== */
.hero { background: linear-gradient(155deg, var(--c-navy-950) 0%, var(--c-navy-900) 55%, var(--c-navy-800) 100%); position: relative; overflow: hidden; padding: 88px 0 0; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,166,35,0.16) 1.5px, transparent 1.5px);
  background-size: 28px 28px; opacity: 0.5; pointer-events: none;
}
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-bottom: 80px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,166,35,0.14); border: 1px solid rgba(245,166,35,0.35); color: var(--c-amber-400); padding: 8px 16px; border-radius: 999px; font-size: 0.82rem; font-weight: 700; margin-bottom: 24px; }
.hero-badge svg { width: 16px; height: 16px; }
.hero h1 { color: var(--c-white); margin-bottom: 22px; }
.hero h1 span { color: var(--c-amber-400); }
.hero p.hero-sub { color: var(--c-grey-400, #97a3b4); font-size: 1.12rem; max-width: 540px; margin-bottom: 36px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 10px; color: var(--c-grey-400, #cbd5e1); font-size: 0.88rem; font-weight: 600; }
.hero-trust-item svg { width: 20px; height: 20px; color: var(--c-amber-400); flex-shrink: 0; }

.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-visual svg { width: 100%; max-width: 420px; }
.hero-float-card { position: absolute; background: var(--c-white); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.hero-float-card.card-1 { top: 6%; left: -4%; }
.hero-float-card.card-2 { bottom: 8%; right: -6%; }
.hero-float-card .fc-icon { width: 38px; height: 38px; border-radius: 10px; background: var(--c-amber-100); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-float-card .fc-icon svg { width: 20px; height: 20px; color: var(--c-amber-800); }
.hero-float-card .fc-num { display: block; font-family: var(--font-heading); font-weight: 800; color: var(--c-navy-950); font-size: 1.05rem; line-height: 1.3; }
.hero-float-card .fc-label { display: block; font-size: 0.72rem; color: var(--c-text-muted); font-weight: 600; }

/* ===== Stats band ===== */
.stats-band { background: var(--c-navy-900); padding: 40px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-item .stat-num { font-family: var(--font-heading); font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.5rem); color: var(--c-amber-400); }
.stat-item .stat-label { color: var(--c-grey-400, #97a3b4); font-size: 0.88rem; font-weight: 600; margin-top: 4px; }

/* ===== Page banner (sub-pages) ===== */
.page-banner { background: linear-gradient(155deg, var(--c-navy-950) 0%, var(--c-navy-800) 100%); padding: 56px 0 52px; position: relative; overflow: hidden; }
.page-banner::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,166,35,0.14) 1.5px, transparent 1.5px);
  background-size: 28px 28px; opacity: 0.5;
}
.breadcrumb { position: relative; z-index: 1; font-size: 0.88rem; color: var(--c-grey-400, #97a3b4); margin-bottom: 16px; display: flex; gap: 8px; flex-wrap: wrap; }
.breadcrumb a:hover { color: var(--c-amber-400); }
.page-banner h1 { position: relative; z-index: 1; color: var(--c-white); margin-bottom: 0; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.page-banner p { position: relative; z-index: 1; color: var(--c-grey-400, #97a3b4); margin-top: 14px; max-width: 620px; font-size: 1.02rem; }

/* ===== Service cards ===== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.service-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 34px 28px; transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.icon-wrap { width: 56px; height: 56px; background: var(--c-amber-100); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out); }
.icon-wrap svg { width: 28px; height: 28px; color: var(--c-amber-800); transition: color 0.35s var(--ease-out); }
.service-card:hover .icon-wrap, .value-card:hover .icon-wrap { background: var(--c-amber-500); transform: scale(1.06); }
.service-card:hover .icon-wrap svg, .value-card:hover .icon-wrap svg { color: var(--c-navy-950); }
.service-card h3 { margin-bottom: 10px; }
.service-card p { color: var(--c-text-muted); font-size: 0.94rem; margin-bottom: 20px; }
.card-link { color: var(--c-navy-900); font-weight: 700; font-size: 0.92rem; display: inline-flex; align-items: center; gap: 7px; }
.card-link { transition: color 0.3s var(--ease-out); }
.card-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease-out); }
.service-card:hover .card-link, .card-link:hover { color: var(--c-amber-800); }
.service-card:hover .card-link svg { transform: translateX(4px); }

/* ===== Why choose us ===== */
.why-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.check-list { display: grid; gap: 20px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; }
.check-icon { flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%; background: var(--c-amber-500); color: var(--c-navy-950); display: flex; align-items: center; justify-content: center; }
.check-icon svg { width: 16px; height: 16px; }
.check-list strong { display: block; color: var(--c-navy-950); margin-bottom: 3px; font-size: 1rem; }
.check-list span.desc { color: var(--c-text-muted); font-size: 0.92rem; }

/* ===== Process steps ===== */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.step-card { text-align: center; position: relative; }
/* Connector line linking the numbered steps (desktop only) */
.step-card:not(:last-child)::after {
  content: ""; position: absolute; top: 29px; left: calc(50% + 38px); right: calc(-50% + 38px);
  height: 2px; background: linear-gradient(to right, var(--c-amber-500), rgba(245,166,35,0.25)); z-index: 0;
}
.step-num { width: 58px; height: 58px; border-radius: 50%; border: 2px solid var(--c-amber-500); color: var(--c-amber-800); font-family: var(--font-heading); font-weight: 800; font-size: 1.3rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; background: var(--c-white); position: relative; z-index: 1; transition: background 0.35s var(--ease-out), color 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out); }
.step-card:hover .step-num { background: var(--c-amber-500); color: var(--c-navy-950); transform: translateY(-4px); box-shadow: var(--shadow-amber); }
.step-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step-card p { color: var(--c-text-muted); font-size: 0.9rem; }

/* ===== Projects ===== */
.filter-tabs { display: flex; gap: 12px; justify-content: center; margin-bottom: 44px; flex-wrap: wrap; }
.filter-btn { padding: 10px 22px; border-radius: 999px; border: 1px solid var(--c-border); background: var(--c-white); font-weight: 700; font-size: 0.88rem; color: var(--c-grey-700); transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out); }
.filter-btn:hover { border-color: var(--c-amber-500); color: var(--c-amber-800); transform: translateY(-2px); }
.filter-btn:active { transform: translateY(0) scale(0.97); transition-duration: 0.08s; }
.filter-btn.active { background: var(--c-navy-900); color: var(--c-white); border-color: var(--c-navy-900); }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.project-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--c-white); border: 1px solid var(--c-border); transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out); }
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.project-body { padding: 24px; }
.project-tag { display: inline-block; background: var(--c-amber-100); color: var(--c-amber-900); font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; padding: 5px 12px; border-radius: 999px; margin-bottom: 12px; }
.project-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.project-card p { color: var(--c-text-muted); font-size: 0.9rem; margin-bottom: 14px; }
.project-meta { display: flex; align-items: center; gap: 6px; color: var(--c-grey-500); font-size: 0.84rem; font-weight: 600; }
.project-meta svg { width: 15px; height: 15px; color: var(--c-amber-500); }
.project-card.is-hidden { display: none; }

/* ===== Testimonials ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card { position: relative; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 34px 30px 28px; transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out); overflow: hidden; }
.testimonial-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.testimonial-card .quote-mark { position: absolute; top: 22px; right: 24px; width: 44px; height: 44px; color: var(--c-amber-100); z-index: 0; }
.stars { position: relative; z-index: 1; display: flex; gap: 3px; color: var(--c-amber-500); margin-bottom: 18px; }
.stars svg { width: 17px; height: 17px; }
.testimonial-quote { position: relative; z-index: 1; color: var(--c-grey-700); font-size: 0.96rem; line-height: 1.65; margin-bottom: 24px; }
.testimonial-author-row { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--c-border); }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--c-navy-950); color: var(--c-white); display: flex; align-items: center; justify-content: center; font-family: var(--font-heading); font-weight: 800; font-size: 0.95rem; letter-spacing: 0.02em; flex-shrink: 0; }
.testimonial-author { font-weight: 700; color: var(--c-navy-950); font-size: 0.92rem; }
.testimonial-role { color: var(--c-text-muted); font-size: 0.84rem; margin-top: 2px; }

/* ===== Service area ===== */
.area-list { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-chip { display: inline-flex; align-items: center; gap: 8px; background: var(--c-white); border: 1px solid var(--c-border); color: var(--c-navy-800); padding: 9px 18px; border-radius: 999px; font-weight: 600; font-size: 0.88rem; transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); }
.area-chip:hover { border-color: var(--c-amber-500); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.area-chip svg { width: 15px; height: 15px; color: var(--c-amber-500); }

/* ===== CTA band ===== */
.cta-band { background: linear-gradient(120deg, var(--c-navy-950) 0%, var(--c-navy-800) 100%); color: var(--c-white); padding: 72px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(245,166,35,0.14) 1.5px, transparent 1.5px);
  background-size: 28px 28px; opacity: 0.5;
}
.cta-band-inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--c-white); margin-bottom: 14px; }
.cta-band p { color: var(--c-grey-400, #97a3b4); max-width: 580px; margin: 0 auto 28px; font-size: 1.05rem; }
.cta-band .btn-row { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ===== About: values / team / certs ===== */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { text-align: center; padding: 30px 22px; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value-card .icon-wrap { margin: 0 auto 18px; }
.value-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.value-card p { color: var(--c-text-muted); font-size: 0.88rem; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; max-width: 640px; margin: 0 auto; }
.team-card { text-align: center; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 34px 24px; }
.avatar-placeholder { width: 108px; height: 108px; border-radius: 50%; margin: 0 auto 18px; background: linear-gradient(135deg, var(--c-navy-800), var(--c-navy-950)); display: flex; align-items: center; justify-content: center; }
.avatar-placeholder svg { width: 44px; height: 44px; color: var(--c-amber-400); }
.team-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-role { color: var(--c-amber-800); font-weight: 700; font-size: 0.86rem; }

.cert-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cert-badge { text-align: center; padding: 26px 16px; border: 1px solid var(--c-border); border-radius: var(--radius-md); background: var(--c-white); }
.cert-badge .icon-wrap { margin: 0 auto 16px; width: 50px; height: 50px; }
.cert-badge .icon-wrap svg { width: 24px; height: 24px; }
.cert-badge strong { display: block; font-size: 0.9rem; color: var(--c-navy-950); }

.story-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.story-grid p + p { margin-top: 16px; }
.story-grid p { color: var(--c-grey-700); }

/* ===== Included list (service detail pages) ===== */
.included-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.included-grid li { display: flex; gap: 12px; align-items: flex-start; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 16px 18px; font-weight: 600; font-size: 0.94rem; color: var(--c-navy-950); }
.included-grid li svg { width: 20px; height: 20px; color: var(--c-amber-500); flex-shrink: 0; margin-top: 1px; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.related-card { display: flex; align-items: center; gap: 14px; background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-md); padding: 18px 20px; font-weight: 700; color: var(--c-navy-950); transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out); }
.related-card:hover { border-color: var(--c-amber-500); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card .icon-wrap { width: 42px; height: 42px; margin-bottom: 0; flex-shrink: 0; }
.related-card .icon-wrap svg { width: 20px; height: 20px; }

/* ===== Contact page ===== */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 56px; align-items: start; }
.form-card { background: var(--c-white); border: 1px solid var(--c-border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-weight: 700; font-size: 0.86rem; color: var(--c-navy-900); margin-bottom: 7px; }
.form-group label .opt { color: var(--c-text-muted); font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 13px 14px; border: 1px solid var(--c-border); border-radius: var(--radius-sm);
  font-size: 0.95rem; color: var(--c-text); transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out); background: var(--c-white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--c-amber-500); box-shadow: 0 0 0 3px rgba(245,166,35,0.18); }
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: #c0392b; }
.field-error { display: none; color: #c0392b; font-size: 0.78rem; margin-top: 6px; font-weight: 600; }
.field-error.visible { display: block; }
.form-success { display: none; align-items: flex-start; gap: 14px; background: #eafaf1; border: 1px solid #b7e4c7; color: #1e6b3f; padding: 18px 20px; border-radius: var(--radius-md); margin-top: 20px; font-size: 0.92rem; font-weight: 600; }
.form-success.visible { display: flex; }
.form-success svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.form-success strong { color: #163; }
.form-success #reference-display { font-weight: 800; letter-spacing: 0.02em; }
.form-note { font-size: 0.8rem; color: var(--c-text-muted); margin-top: 16px; }

.emergency-note { display: none; align-items: flex-start; gap: 12px; background: var(--c-amber-100); border: 1px solid rgba(245,166,35,0.4); color: var(--c-amber-900); padding: 14px 16px; border-radius: var(--radius-md); margin-bottom: 20px; font-size: 0.88rem; line-height: 1.5; }
.emergency-note.visible { display: flex; }
.emergency-note svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: var(--c-amber-800); }
.emergency-note a { font-weight: 700; text-decoration: underline; }

.form-error-banner { display: none; align-items: flex-start; gap: 14px; background: #fdecea; border: 1px solid #f3b4ad; color: #a42921; padding: 18px 20px; border-radius: var(--radius-md); margin-top: 20px; font-size: 0.92rem; font-weight: 600; line-height: 1.5; }
.form-error-banner.visible { display: flex; }
.form-error-banner svg { width: 22px; height: 22px; flex-shrink: 0; margin-top: 1px; }
.form-error-banner a { text-decoration: underline; }

.btn[disabled] { opacity: 0.7; cursor: not-allowed; }

.info-card { background: var(--c-navy-950); color: var(--c-white); border-radius: var(--radius-lg); padding: 38px; margin-bottom: 24px; }
.info-card h3 { color: var(--c-white); margin-bottom: 22px; }
.info-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.info-row:last-child { margin-bottom: 0; }
.info-row .icon-wrap { background: rgba(245,166,35,0.16); width: 42px; height: 42px; margin-bottom: 0; flex-shrink: 0; }
.info-row .icon-wrap svg { width: 19px; height: 19px; color: var(--c-amber-400); }
.info-row strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.info-row span, .info-row a { color: var(--c-grey-400, #97a3b4); font-size: 0.9rem; overflow-wrap: anywhere; }
.info-row a:hover { color: var(--c-amber-400); }
.hours-table { display: grid; gap: 10px; }
.hours-row { display: flex; justify-content: space-between; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.9rem; }
.hours-row:last-child { border-bottom: none; padding-bottom: 0; }
.hours-row span:first-child { color: var(--c-grey-400, #97a3b4); }
.hours-row span:last-child { font-weight: 700; }
.hours-row.emergency span:last-child { color: var(--c-amber-400); }

.map-placeholder { aspect-ratio: 16/7; border-radius: var(--radius-lg); }

/* ===== Legal pages ===== */
.legal-content { max-width: 760px; margin: 0 auto; }
.legal-content h2 { margin-top: 40px; margin-bottom: 14px; font-size: 1.3rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { color: var(--c-grey-700); line-height: 1.75; margin-bottom: 16px; }
.legal-content ul { margin-bottom: 16px; display: grid; gap: 8px; }
.legal-content li { color: var(--c-grey-700); line-height: 1.7; padding-left: 22px; position: relative; }
.legal-content li::before { content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; border-radius: 50%; background: var(--c-amber-500); }
.legal-updated { color: var(--c-text-muted); font-size: 0.88rem; margin-bottom: 36px; }

/* ===== FAQ accordion ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--c-border); padding: 20px 0; }
.faq-item summary { cursor: pointer; font-weight: 700; color: var(--c-navy-950); font-size: 1rem; list-style: none; position: relative; padding-right: 36px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: -2px; font-size: 1.6rem; color: var(--c-amber-500); transition: transform 0.2s ease; font-weight: 400; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { color: var(--c-text-muted); margin-top: 14px; line-height: 1.7; font-size: 0.95rem; }

/* ===== Image placeholder utility ===== */
.img-placeholder {
  position: relative; display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  background: linear-gradient(135deg, var(--c-navy-900), var(--c-navy-700));
  background-image: linear-gradient(135deg, var(--c-navy-900), var(--c-navy-700)), radial-gradient(circle, rgba(245,166,35,0.35) 1.5px, transparent 1.5px);
  background-size: cover, 22px 22px;
  color: rgba(255,255,255,0.65); overflow: hidden; border-radius: inherit; width: 100%; height: 100%;
}
.img-placeholder svg { width: 38px; height: 38px; opacity: 0.85; color: var(--c-amber-400); }
.img-placeholder span { font-size: 0.74rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; opacity: 0.8; }
.img-placeholder.light { background-image: linear-gradient(135deg, var(--c-grey-100), var(--c-grey-200)), radial-gradient(circle, rgba(10,10,10,0.18) 1.5px, transparent 1.5px); color: var(--c-grey-500); }
.img-placeholder.light svg { color: var(--c-navy-700); }
.ratio-16x9 { aspect-ratio: 16/9; }
.ratio-4x3 { aspect-ratio: 4/3; }
.ratio-1x1 { aspect-ratio: 1/1; }
.photo-frame { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s var(--ease-out); }
/* Slow cinematic zoom on hover — the frame clips it via overflow:hidden */
.ratio-1x1:hover > .photo-frame, .ratio-16x9:hover > .photo-frame, .ratio-4x3:hover > .photo-frame { transform: scale(1.04); }

/* ===== Sticky mobile action bar ===== */
.mobile-bar { display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; background: var(--c-white); border-top: 1px solid var(--c-border); box-shadow: 0 -4px 16px rgba(0,0,0,0.08); gap: 8px;
  padding: 8px; padding-bottom: calc(8px + env(safe-area-inset-bottom)); padding-left: calc(8px + env(safe-area-inset-left)); padding-right: calc(8px + env(safe-area-inset-right)); }
.mobile-bar a { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 8px 4px; border-radius: var(--radius-sm); font-weight: 700; font-size: 0.74rem; line-height: 1; text-align: center; min-height: 48px; transition: background 0.18s ease, color 0.18s ease; }
.mobile-bar a svg { width: 19px; height: 19px; }
.mobile-bar .mb-call { background: var(--c-navy-950); color: var(--c-white); }
.mobile-bar .mb-call:active { background: var(--c-navy-800); }
.mobile-bar .mb-quote { background: var(--c-amber-500); color: var(--c-navy-950); }
.mobile-bar .mb-quote:active { background: var(--c-amber-600); }
.mobile-bar .mb-label { font-size: 0.74rem; }
.mobile-bar .mb-sub { font-size: 0.62rem; font-weight: 600; opacity: 0.7; }

/* ===== Scroll reveal ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translateY(0); will-change: auto; }

/* Staggered entrance for grid children — each card follows the last */
.services-grid > .reveal:nth-child(2), .values-grid > .reveal:nth-child(2), .projects-grid > .reveal:nth-child(2),
.testimonials-grid > .reveal:nth-child(2), .process-grid > .reveal:nth-child(2), .related-grid > .reveal:nth-child(2),
.cert-grid > .reveal:nth-child(2), .team-grid > .reveal:nth-child(2) { transition-delay: 0.09s; }
.services-grid > .reveal:nth-child(3), .values-grid > .reveal:nth-child(3), .projects-grid > .reveal:nth-child(3),
.testimonials-grid > .reveal:nth-child(3), .process-grid > .reveal:nth-child(3), .related-grid > .reveal:nth-child(3),
.cert-grid > .reveal:nth-child(3) { transition-delay: 0.18s; }
.services-grid > .reveal:nth-child(4), .values-grid > .reveal:nth-child(4), .projects-grid > .reveal:nth-child(4),
.testimonials-grid > .reveal:nth-child(4), .process-grid > .reveal:nth-child(4), .cert-grid > .reveal:nth-child(4) { transition-delay: 0.27s; }
.projects-grid > .reveal:nth-child(5) { transition-delay: 0.36s; }
.projects-grid > .reveal:nth-child(6) { transition-delay: 0.45s; }
@media (max-width: 640px) {
  /* No stagger on single-column mobile — cards already arrive one at a time as
     they scroll into view, so a delay just makes each one feel sluggish.
     :nth-child(n) matches the specificity of the stagger rules above. */
  .services-grid > .reveal:nth-child(n), .values-grid > .reveal:nth-child(n),
  .projects-grid > .reveal:nth-child(n), .testimonials-grid > .reveal:nth-child(n),
  .process-grid > .reveal:nth-child(n), .related-grid > .reveal:nth-child(n),
  .cert-grid > .reveal:nth-child(n), .team-grid > .reveal:nth-child(n) { transition-delay: 0s; }
}

/* ===== Accessibility: focus + reduced motion ===== */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, summary:focus-visible, .btn:focus-visible {
  outline: 3px solid var(--c-amber-500); outline-offset: 2px; border-radius: 4px;
}
.header .btn-primary:focus-visible, .mobile-bar a:focus-visible { outline-color: var(--c-navy-950); }
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; transition-delay: 0s !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .photo-frame, .ratio-1x1:hover > .photo-frame, .ratio-16x9:hover > .photo-frame, .ratio-4x3:hover > .photo-frame { transform: none; }
}

/* ===== Back to top ===== */
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; width: 48px; height: 48px; border-radius: 50%;
  background: var(--c-amber-500); color: var(--c-navy-950); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); opacity: 0; pointer-events: none; transform: translateY(10px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out); z-index: 40; border: none;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { background: var(--c-amber-600); transform: translateY(-3px); box-shadow: var(--shadow-amber); }
.back-to-top svg { width: 20px; height: 20px; }

/* ===== Footer ===== */
.footer { background: var(--c-navy-950); color: var(--c-grey-400, #97a3b4); padding-top: 80px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-weight: 800; font-size: 1.15rem; color: var(--c-white); margin-bottom: 18px; }
.footer-logo svg { width: 40px; height: 40px; border-radius: 50%; }
.footer-about p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 22px; max-width: 280px; }
.social-row { display: flex; gap: 12px; }
.social-icon { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.3s var(--ease-out); color: var(--c-grey-400, #97a3b4); }
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover { background: var(--c-amber-500); border-color: var(--c-amber-500); color: var(--c-navy-950); transform: translateY(-3px); }
.footer h3 { color: var(--c-white); font-size: 1rem; margin-bottom: 22px; }
.footer-links { display: grid; gap: 13px; }
.footer-links a { font-size: 0.92rem; transition: color 0.25s var(--ease-out), padding-left 0.25s var(--ease-out); }
.footer-links a:hover { color: var(--c-amber-400); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; margin-bottom: 16px; }
.footer-contact li svg { width: 17px; height: 17px; color: var(--c-amber-400); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--c-amber-400); }
.footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.84rem; color: var(--c-grey-400); }
.footer-bottom-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom-links a:hover { color: var(--c-amber-400); }

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.hp-field { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.hide-mobile { }
.show-mobile { display: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .nav, .header-phone, .topbar { display: none; }
  .nav-toggle { display: flex; }
  .hero-grid, .why-grid, .story-grid, .contact-grid { grid-template-columns: minmax(0, 1fr); }
  .hero-grid { padding-bottom: 56px; }
  .hero-visual { max-width: 300px; margin: 12px auto 0; }
  .services-grid, .values-grid, .cert-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid, .testimonials-grid, .related-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 44px; }
  .step-card:not(:last-child)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .included-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; }
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .back-to-top { bottom: calc(84px + env(safe-area-inset-bottom)); right: max(24px, env(safe-area-inset-right)); }
}

@media (min-width: 1025px) {
  .show-mobile { display: none !important; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
  .hero { padding-top: 40px; }
  .hero-grid { padding-bottom: 48px; }
  .hero-visual { display: none; }
  .hero-actions .btn, .cta-band .btn-row .btn { width: 100%; }
  .hero-actions, .cta-band .btn-row { flex-direction: column; }
  .hero-float-card { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .services-grid, .values-grid, .cert-grid, .team-grid, .projects-grid, .testimonials-grid, .related-grid { grid-template-columns: 1fr; }
  .team-grid { max-width: 360px; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .header-actions > a.btn-primary { display: none; }
  .page-banner { padding: 44px 0 38px; }
}
