:root {
  --blue-950: #061428;
  --blue-900: #0a2d5c;
  --blue-800: #0f4a8a;
  --blue-700: #1565c0;
  --blue-600: #1e88e5;
  --blue-500: #42a5f5;
  --blue-100: #e3f2fd;
  --blue-50: #f0f7ff;
  --red-600: #c62828;
  --red-500: #e53935;
  --red-100: #ffebee;
  --amber-400: #ffca28;
  --amber-500: #ffc107;
  --white: #ffffff;
  --surface: #f7f9fc;
  --surface-2: #eef2f7;
  --border: #dde4ed;
  --text: #2c3e50;
  --text-muted: #5c6f82;
  --text-light: #8fa3b8;
  --shadow-xs: 0 1px 2px rgba(6, 20, 40, 0.05);
  --shadow-sm: 0 4px 16px rgba(6, 20, 40, 0.07);
  --shadow-md: 0 8px 30px rgba(6, 20, 40, 0.1);
  --shadow-lg: 0 20px 50px rgba(6, 20, 40, 0.14);
  --shadow-xl: 0 30px 70px rgba(6, 20, 40, 0.2);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --header-h: 76px;
  --shell-top: var(--header-h);
  --font-display: 'Oswald', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
ul { list-style: none; }

.skip-link {
  position: absolute; top: -100%; left: 1rem; z-index: 400;
  padding: 0.7rem 1.1rem; background: var(--blue-900); color: white;
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.88rem;
}
.skip-link:focus { top: 0.75rem; }

.container { width: min(1200px, 91%); margin: 0 auto; }
.container--narrow { width: min(720px, 91%); }

/* ─── HEADER ─── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 110;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(6, 20, 40, 0.07);
  transition: box-shadow 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
}

.site-header.scrolled {
  --header-h: 68px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(6, 20, 40, 0.06), var(--shadow-sm);
  border-color: transparent;
}

.site-header.scrolled .logo-img { height: 44px; }

.nav {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  position: relative;
}

.logo {
  justify-self: start;
  flex-shrink: 0;
  line-height: 0;
  z-index: 2;
  margin-left: clamp(1rem, 2.5vw, 2rem);
}

.logo-img {
  height: 54px; width: auto; object-fit: contain;
  transition: height 0.3s var(--ease-out);
}

.nav-main {
  grid-column: 2;
  justify-self: center;
}

.nav-panel {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.3rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
}

.nav-links a {
  padding: 0.52rem 1.05rem;
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.nav-links a:hover {
  color: var(--blue-800);
  background: white;
}

.nav-links a.active {
  color: white;
  font-weight: 600;
  background: var(--blue-900);
  box-shadow: 0 2px 8px rgba(10, 45, 92, 0.25);
}

.nav-panel-cta { display: none; }

.nav-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.nav-actions .nav-phone {
  padding-right: 0.85rem;
  border-right: 1px solid var(--border);
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  font-weight: 700;
  font-size: 0.86rem;
  color: var(--blue-900);
  white-space: nowrap;
  transition: color 0.2s;
}

.nav-phone:hover { color: var(--red-500); }
.nav-phone svg { width: 15px; height: 15px; color: var(--red-500); flex-shrink: 0; }

.menu-toggle {
  display: none;
  grid-column: 3;
  justify-self: end;
  width: 42px; height: 42px;
  border: 1.5px solid var(--border);
  background: white;
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.2s, background 0.2s;
}

.menu-toggle:hover {
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.menu-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 18px;
  margin: 0 auto;
}

.menu-toggle-bars span {
  display: block;
  width: 18px; height: 2px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: transform 0.25s var(--ease-out), opacity 0.2s, width 0.2s;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(2) {
  opacity: 0; width: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.menu-open { overflow: hidden; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.45rem;
  padding: 0.8rem 1.55rem;
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: none; border-radius: var(--radius-sm);
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s, background 0.2s, color 0.2s;
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 17px; height: 17px; }

.btn-sm {
  padding: 0.58rem 1.1rem;
  font-size: 0.8rem;
}

.btn-primary {
  background: linear-gradient(180deg, var(--red-500), var(--red-600));
  color: white;
  box-shadow: 0 4px 14px rgba(229, 57, 53, 0.32);
}
.btn-primary:hover {
  box-shadow: 0 8px 22px rgba(229, 57, 53, 0.4);
}

.btn-secondary {
  background: linear-gradient(180deg, var(--blue-600), var(--blue-800));
  color: white;
  box-shadow: 0 4px 14px rgba(21, 101, 192, 0.28);
}
.btn-secondary:hover { box-shadow: 0 8px 22px rgba(21, 101, 192, 0.35); }

.btn-outline {
  background: white;
  color: var(--blue-900);
  border: 2px solid var(--border);
  box-shadow: var(--shadow-xs);
}
.btn-outline:hover { border-color: var(--blue-600); background: var(--blue-50); }

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1.5px solid rgba(255,255,255,0.28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

.btn-white {
  background: white;
  color: var(--blue-900);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { background: var(--blue-50); }

.btn-block { width: 100%; }
.mt-lg { margin-top: 1.75rem; }

.text-link {
  display: inline-flex; align-items: center; gap: 0.35rem;
  font-weight: 700; font-size: 0.88rem;
  color: var(--blue-700);
  transition: gap 0.2s, color 0.2s;
}
.text-link:hover { gap: 0.55rem; color: var(--red-500); }
.text-link svg { width: 15px; height: 15px; }

/* ─── TYPE ─── */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 1rem;
}

.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--red-500);
  border-radius: 2px;
}

.eyebrow--light {
  color: var(--amber-400);
  background: transparent;
  border-left: none;
  padding-left: 0;
}
.eyebrow--light::before { background: var(--amber-400); }

.lead { font-size: 1.08rem; color: var(--text-muted); line-height: 1.75; }
.section-cta { text-align: center; margin-top: 2.75rem; }

.section-header--center .eyebrow { justify-content: center; }

/* ─── HERO ─── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--shell-top));
  min-height: calc(100dvh - var(--shell-top));
  padding: calc(var(--shell-top) + 2.5rem) 0 4rem;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--blue-950);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1800&q=80') center/cover no-repeat;
}

.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(6,20,40,0.94) 0%, rgba(6,20,40,0.82) 42%, rgba(10,45,92,0.55) 100%),
    linear-gradient(180deg, transparent 60%, rgba(6,20,40,0.4) 100%);
}

.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem; align-items: center;
}

.hero-content { color: white; }

.hero-brand {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--blue-500);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5.2vw, 3.85rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin-bottom: 1.15rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber-400);
  display: block;
}

.hero-text {
  font-size: 1.06rem;
  color: rgba(255,255,255,0.78);
  max-width: 500px;
  margin-bottom: 1.85rem;
  line-height: 1.8;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.25rem; }

.hero-checklist {
  display: grid; gap: 0.65rem;
}

.hero-check {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.88);
}

.hero-check svg {
  width: 18px; height: 18px;
  color: var(--amber-400);
  flex-shrink: 0;
}

.hero-visual {
  display: flex; flex-direction: column; align-items: center; gap: 1.25rem;
}

.hero-logo-frame {
  position: relative;
  width: min(100%, 400px);
  animation: float-logo 5s ease-in-out infinite;
}

@keyframes float-logo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-logo {
  width: 100%;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,0.45));
}

.hero-logo-ring {
  position: absolute; inset: -12%;
  border: 1px solid rgba(66,165,245,0.2);
  border-radius: 50%;
  pointer-events: none;
}

/* ─── TRUST STRIP ─── */
.trust-strip {
  background: white;
  border-bottom: 1px solid var(--border);
  padding: 1.25rem 0;
}

.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-strip-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.trust-strip-item:hover { background: var(--blue-50); }

.trust-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-100);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
}
.trust-icon svg { width: 20px; height: 20px; color: var(--blue-700); }

.trust-strip-item strong {
  display: block;
  font-size: 0.82rem; font-weight: 700;
  color: var(--blue-900);
  line-height: 1.2;
}

.trust-strip-item span {
  font-size: 0.72rem;
  color: var(--text-light);
}

/* ─── SECTIONS ─── */
section { padding: 5.5rem 0; }

.section-header { max-width: 620px; margin-bottom: 3rem; }
.section-header--center { text-align: center; margin-inline: auto; }
.section-header--center .eyebrow { justify-content: center; }

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.8vw, 2.65rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--blue-900);
  margin-bottom: 0.75rem;
  line-height: 1.08;
}

.section-header p { color: var(--text-muted); font-size: 1.02rem; line-height: 1.75; }

/* ─── SERVICES ─── */
.services { background: var(--surface); }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem;
}

.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--blue-500));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700;
  line-height: 1;
  color: var(--surface-2);
  position: absolute; top: 1rem; right: 1.25rem;
  pointer-events: none;
}

.service-icon {
  width: 50px; height: 50px;
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  margin-bottom: 1.15rem;
}
.service-icon svg { width: 24px; height: 24px; color: var(--blue-700); }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.12rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--blue-900);
  margin-bottom: 0.55rem;
}

.service-card p {
  font-size: 0.91rem; color: var(--text-muted);
  line-height: 1.7; flex-grow: 1;
}

.service-card .text-link { margin-top: 1.15rem; }

.service-tags { display: flex; flex-wrap: wrap; gap: 0.35rem; margin-top: 1rem; }
.service-tag {
  font-size: 0.68rem; font-weight: 700;
  padding: 0.28rem 0.6rem;
  background: var(--surface);
  color: var(--text-light);
  border-radius: 999px;
  text-transform: uppercase; letter-spacing: 0.04em;
}

.service-card--featured {
  background: linear-gradient(145deg, var(--blue-900), var(--blue-800));
  border-color: transparent;
  color: white;
}
.service-card--featured::before { background: linear-gradient(90deg, var(--red-500), var(--amber-400)); transform: scaleX(1); }
.service-card--featured .service-num { color: rgba(255,255,255,0.08); }
.service-card--featured .service-icon { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.12); }
.service-card--featured .service-icon svg { color: var(--amber-400); }
.service-card--featured h3 { color: white; }
.service-card--featured p { color: rgba(255,255,255,0.72); }
.service-card--featured .service-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.65); }
.service-card--featured .text-link { color: var(--amber-400); }

/* ─── SERVICE DETAIL ─── */
.service-overview {
  padding: 3rem 0 1rem;
}

.service-nav {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0.45rem; margin-bottom: 0.5rem;
}

.service-nav a {
  padding: 0.48rem 0.95rem;
  font-family: var(--font-display);
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--text-muted);
  background: white;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.service-nav a:hover {
  color: var(--blue-800);
  border-color: var(--blue-600);
  background: var(--blue-50);
}

.service-detail {
  padding: 3.5rem 0;
  scroll-margin-top: calc(var(--shell-top) + 1rem);
}

.service-detail--alt { background: var(--surface); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.25rem;
  align-items: start;
}

.service-detail-header {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.15rem;
}

.service-detail-header .service-icon { margin-bottom: 0; flex-shrink: 0; }

.service-detail-num {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 0.35rem;
}

.service-detail h2 {
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.8vw, 1.9rem);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--blue-900);
  line-height: 1.15;
}

.service-detail-lead {
  font-size: 1.02rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 0.85rem;
}

.service-detail p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.85rem;
}

.service-detail h4 {
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue-900);
  margin: 1.35rem 0 0.65rem;
}

.service-detail-list {
  display: grid; gap: 0.4rem;
}

.service-detail-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.service-detail-list li::before {
  content: '';
  position: absolute; left: 0; top: 0.55em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--red-500);
}

.service-detail-box {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: calc(var(--shell-top) + 1.25rem);
}

.service-detail--featured .service-detail-box {
  background: linear-gradient(160deg, var(--blue-900), var(--blue-800));
  border-color: transparent;
  color: white;
}

.service-detail--featured .service-detail-box h4 { color: white; }
.service-detail--featured .service-detail-includes li {
  color: rgba(255,255,255,0.78);
  border-color: rgba(255,255,255,0.12);
}

.service-detail-box h4 {
  font-family: var(--font-display);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--blue-900);
  margin-bottom: 0.85rem;
}

.service-detail-includes { margin-bottom: 1.25rem; }

.service-detail-includes li {
  font-size: 0.87rem;
  color: var(--text-muted);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  line-height: 1.5;
}

.service-detail-includes li:last-child { border-bottom: none; }

.service-detail-meta {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-light);
}

.service-detail--featured .service-detail-meta {
  border-color: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.55);
}

.service-detail-meta strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-900);
  margin-bottom: 0.15rem;
}

.service-detail--featured .service-detail-meta strong { color: var(--amber-400); }

/* ─── STATS BAND ─── */
.stats-band {
  background: var(--blue-900);
  padding: 3.5rem 0;
  position: relative; overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(66,165,245,0.15) 0%, transparent 60%);
}

.stats-grid {
  position: relative;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-item { text-align: center; color: white; }

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--amber-400);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat-item span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}

/* ─── PROCESS ─── */
.process-wrap { position: relative; }

.process-line {
  display: none;
}

.process-timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
  position: relative;
}

@media (min-width: 769px) {
  .process-line {
    display: block;
    position: absolute;
    top: 28px; left: 12%; right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-600), var(--blue-500), var(--blue-600));
    opacity: 0.25;
  }
}

.process-step {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.65rem 1.15rem 1.5rem;
  text-align: center;
  position: relative; z-index: 1;
  transition: box-shadow 0.25s, border-color 0.25s;
}
.process-step:hover { box-shadow: var(--shadow-sm); border-color: var(--blue-100); }

.step-number {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  background: white;
  border: 3px solid var(--blue-600);
  color: var(--blue-800);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  box-shadow: var(--shadow-xs);
}

.process-step h3 {
  font-family: var(--font-display);
  font-size: 0.92rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--blue-900);
  margin-bottom: 0.4rem;
}

.process-step p { font-size: 0.84rem; color: var(--text-muted); line-height: 1.65; }

/* ─── WHY US ─── */
.why-us {
  background: linear-gradient(160deg, var(--blue-950), var(--blue-900));
  color: white;
}

.why-us .section-header h2 { color: white; }
.why-us .section-header p { color: rgba(255,255,255,0.65); }
.why-us .eyebrow { color: var(--amber-400); }
.why-us .eyebrow::before { background: var(--amber-400); }

.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.15rem; }

.why-card {
  padding: 1.65rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-lg);
  transition: background 0.25s, border-color 0.25s;
}
.why-card:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.15); }

.why-card-icon {
  width: 42px; height: 42px;
  background: var(--red-500);
  border-radius: var(--radius-sm);
  display: grid; place-items: center;
  margin-bottom: 0.9rem;
}
.why-card-icon svg { width: 20px; height: 20px; color: white; }

.why-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.45rem;
}

.why-card p { font-size: 0.88rem; color: rgba(255,255,255,0.62); line-height: 1.7; }

/* ─── CTA ─── */
.cta-banner {
  position: relative;
  background: linear-gradient(135deg, var(--red-600), var(--red-500));
  color: white;
  text-align: center;
  padding: 4.75rem 0;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=1200&q=60') center/cover;
  opacity: 0.12;
}

.cta-banner::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(198,40,40,0.92), rgba(229,57,53,0.88));
}

.cta-banner .container { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.55rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.cta-banner p {
  font-size: 1.02rem;
  color: rgba(255,255,255,0.88);
  max-width: 480px;
  margin: 0 auto 1.85rem;
  line-height: 1.7;
}

.cta-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; }

/* ─── PAGE HERO ─── */
.page-hero {
  padding: calc(var(--shell-top) + 2.75rem) 0 3.25rem;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-800));
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 100% 0%, rgba(66,165,245,0.18) 0%, transparent 55%);
}

.page-hero .container { position: relative; z-index: 1; text-align: center; }

.page-hero .eyebrow { justify-content: center; }
.page-hero .eyebrow--light { background: rgba(255,255,255,0.08); border-left: none; padding-left: 0; }
.page-hero .eyebrow--light::before { background: var(--amber-400); }

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.page-hero .lead { color: rgba(255,255,255,0.75); max-width: 560px; margin-inline: auto; }

.breadcrumb {
  display: flex; align-items: center; justify-content: center; gap: 0.45rem;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  margin-bottom: 1.15rem;
}
.breadcrumb a:hover { color: white; }

/* ─── ABOUT ─── */
.about-intro {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 3.5rem; align-items: center;
}

.about-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  font-weight: 700; text-transform: uppercase;
  color: var(--blue-900);
  margin-bottom: 1rem; line-height: 1.12;
}

.about-intro p { color: var(--text-muted); margin-bottom: 0.9rem; line-height: 1.75; }

.about-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem; margin-top: 1.5rem;
}

.about-stat {
  text-align: center; padding: 1rem;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--blue-100);
}

.about-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem; font-weight: 700;
  color: var(--blue-800);
}

.about-stat span {
  font-size: 0.7rem; color: var(--text-light);
  text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600;
}

.about-highlight {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-highlight .about-logo {
  width: min(100%, 260px);
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.12));
}

.about-highlight blockquote {
  font-size: 1rem; color: var(--text);
  line-height: 1.75; margin-bottom: 0.85rem;
  font-style: italic;
}

.about-highlight cite { font-size: 0.84rem; color: var(--text-light); font-style: normal; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.15rem; }

.value-card {
  text-align: center; padding: 1.85rem 1.25rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.25s;
}
.value-card:hover { box-shadow: var(--shadow-sm); }

.value-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem; font-weight: 600;
  text-transform: uppercase;
  color: var(--blue-900);
  margin-bottom: 0.45rem;
}

.value-card p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; }

/* ─── PRICING ─── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.35rem; }

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }

.pricing-card--popular {
  border-color: var(--blue-600);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}
.pricing-card--popular:hover { transform: scale(1.02) translateY(-4px); }

.pricing-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--red-500); color: white;
  font-family: var(--font-display);
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.32rem 0.85rem; border-radius: 999px;
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  text-transform: uppercase;
  color: var(--blue-900);
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 2.65rem; font-weight: 700;
  color: var(--blue-800);
  margin: 0.65rem 0; line-height: 1;
}

.pricing-amount span {
  font-family: var(--font-body);
  font-size: 0.8rem; color: var(--text-light); font-weight: 500;
}

.pricing-card ul { text-align: left; margin: 1.15rem 0; }
.pricing-card li {
  font-size: 0.87rem; color: var(--text-muted);
  padding: 0.38rem 0 0.38rem 1.3rem;
  position: relative;
}
.pricing-card li::before {
  content: '';
  position: absolute; left: 0; top: 0.68rem;
  width: 6px; height: 6px;
  background: var(--blue-600); border-radius: 50%;
}

.pricing-note { text-align: center; margin-top: 1.5rem; font-size: 0.86rem; color: var(--text-light); }

/* ─── FAQ ─── */
.faq-list { display: flex; flex-direction: column; gap: 0.55rem; }

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item.open { border-color: var(--blue-500); box-shadow: var(--shadow-xs); }

.faq-question {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none; border: none; cursor: pointer; text-align: left;
  font-weight: 700; font-size: 0.92rem;
  color: var(--blue-900);
}
.faq-question svg { width: 18px; height: 18px; color: var(--text-light); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-question svg { transform: rotate(180deg); color: var(--blue-600); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s var(--ease-out); }
.faq-answer-inner { padding: 0 1.25rem 1.1rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; }

/* ─── CONTACT ─── */
.contact-section { background: var(--surface); }

.contact-grid {
  display: grid; grid-template-columns: 0.85fr 1.15fr;
  gap: 2.25rem; align-items: start;
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 700; text-transform: uppercase;
  color: var(--blue-900);
  margin-bottom: 0.65rem;
}

.contact-info > p { color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.75; }

.contact-logo {
  width: min(100%, 200px);
  margin-bottom: 1.5rem;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.1));
}

.contact-details { display: flex; flex-direction: column; gap: 0.7rem; }

.contact-details li {
  display: flex; align-items: flex-start; gap: 0.8rem;
  padding: 0.95rem 1rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-details li:hover { border-color: var(--blue-100); box-shadow: var(--shadow-xs); }

.contact-details .detail-icon {
  width: 38px; height: 38px;
  background: var(--blue-50);
  border-radius: var(--radius-sm);
  display: grid; place-items: center; flex-shrink: 0;
}
.contact-details .detail-icon svg { width: 17px; height: 17px; color: var(--blue-700); }

.contact-details strong {
  display: block;
  font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em;
  color: var(--text-light); margin-bottom: 0.1rem;
}

.contact-details a, .contact-details span { font-size: 0.92rem; color: var(--blue-900); font-weight: 600; }
.contact-details a:hover { color: var(--red-500); }

.contact-form-wrap {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  position: relative; overflow: hidden;
}

.contact-form-wrap::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--blue-600), var(--red-500));
}

.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  text-transform: uppercase;
  color: var(--blue-900);
  margin-bottom: 0.25rem;
}

.contact-form-wrap > p { font-size: 0.86rem; color: var(--text-light); margin-bottom: 1.35rem; }

.form-group { margin-bottom: 0.95rem; }
.form-group label {
  display: block;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-muted); margin-bottom: 0.32rem;
}

.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.78rem 0.95rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem; color: var(--text);
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none; border-color: var(--blue-600);
  background: white; box-shadow: 0 0 0 3px rgba(30,136,229,0.12);
}
.form-group input.error, .form-group textarea.error { border-color: var(--red-500); }
.form-error { font-size: 0.74rem; color: var(--red-500); margin-top: 0.28rem; display: none; }
.form-group.has-error .form-error { display: block; }
.form-group textarea { resize: vertical; min-height: 96px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.85rem; }
.contact-form .btn { width: 100%; margin-top: 0.25rem; }

.form-success { display: none; text-align: center; padding: 2.25rem 1rem; }
.form-success.visible { display: block; }
.form-success svg { width: 48px; height: 48px; color: var(--blue-600); margin: 0 auto 0.85rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.35rem; text-transform: uppercase; color: var(--blue-900); margin-bottom: 0.4rem; }
.form-success p { color: var(--text-muted); font-size: 0.9rem; }
.contact-form.hidden { display: none; }

/* ─── FOOTER ─── */
.site-footer {
  background: var(--blue-950);
  color: rgba(255,255,255,0.58);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem; padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 82px; width: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
}

.footer-brand p { font-size: 0.86rem; line-height: 1.75; max-width: 270px; }

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: white; margin-bottom: 0.9rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col a { font-size: 0.86rem; transition: color 0.2s; }
.footer-col a:hover { color: white; }

.footer-bottom {
  padding: 1.15rem 0;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.78rem; flex-wrap: wrap; gap: 0.85rem;
}

.footer-badges { display: flex; gap: 1.15rem; }
.footer-badge {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.footer-badge svg { width: 13px; height: 13px; color: var(--amber-400); }

/* ─── MOBILE BAR ─── */
.mobile-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 105;
  background: white;
  border-top: 1px solid var(--border);
  padding: 0.65rem 0.85rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
  gap: 0.55rem;
}
.mobile-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 0.35rem;
  padding: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.82rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
  border-radius: var(--radius-sm);
}
.mobile-bar .mobile-call {
  background: var(--blue-50);
  color: var(--blue-900);
  border: 1px solid var(--blue-100);
}
.mobile-bar .mobile-quote {
  background: var(--red-500);
  color: white;
}

/* ─── GUARANTEE BAND ─── */
.guarantee-band {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}

.guarantee-inner {
  display: flex; align-items: center; gap: 2rem;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
}

.guarantee-icon {
  width: 64px; height: 64px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  border-radius: 50%;
  display: grid; place-items: center;
}
.guarantee-icon svg { width: 30px; height: 30px; color: white; }

.guarantee-inner h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 600;
  text-transform: uppercase;
  color: var(--blue-900);
  margin-bottom: 0.35rem;
}

.guarantee-inner p {
  font-size: 0.92rem; color: var(--text-muted);
  line-height: 1.65;
  max-width: 640px;
}

.guarantee-inner .btn { margin-left: auto; flex-shrink: 0; }

/* ─── SERVICE AREA ─── */
.service-area {
  background: var(--blue-950);
  color: white;
}

.service-area .section-header h2 { color: white; }
.service-area .section-header p { color: rgba(255,255,255,0.65); }
.service-area .eyebrow { color: var(--amber-400); }
.service-area .eyebrow::before { background: var(--amber-400); }

.area-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 2rem;
  align-items: stretch;
}

.area-map {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid; place-items: center;
  min-height: 280px;
  position: relative; overflow: hidden;
}

.area-map::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(66,165,245,0.2) 0%, transparent 55%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.03) 39px, rgba(255,255,255,0.03) 40px);
}

.area-pin {
  position: relative; z-index: 1;
  text-align: center;
}

.area-pin svg { width: 48px; height: 48px; color: var(--red-500); margin: 0 auto 0.5rem; }
.area-pin strong { display: block; font-family: var(--font-display); font-size: 1rem; text-transform: uppercase; }
.area-pin span { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.area-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem;
}

.area-list li {
  font-size: 0.88rem;
  padding: 0.55rem 0.75rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.8);
}

.area-list li::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--amber-400);
  border-radius: 50%;
  margin-right: 0.45rem;
  vertical-align: middle;
}

/* ─── FOOTER CTA ─── */
.footer-cta {
  background: linear-gradient(135deg, var(--blue-800), var(--blue-600));
  padding: 2.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
}

.footer-cta h3 {
  font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 600;
  text-transform: uppercase;
  color: white;
  margin-bottom: 0.25rem;
}

.footer-cta p { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

.footer-cta-actions { display: flex; gap: 0.65rem; flex-wrap: wrap; }

/* ─── HERO SCROLL ─── */
.hero-scroll {
  position: absolute; bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.35rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  animation: bob 2s ease infinite;
}

.hero-scroll svg { width: 18px; height: 18px; }

@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-box { position: static; }

  .services-grid, .pricing-grid, .values-grid, .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); }
  .process-timeline { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pricing-card--popular { transform: none; }
  .area-grid { grid-template-columns: 1fr; }
  .guarantee-inner { flex-wrap: wrap; }
  .guarantee-inner .btn { margin-left: 0; width: 100%; }
}

@media (max-width: 960px) {
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-main {
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    pointer-events: none;
  }

  .nav-panel {
    display: none;
    flex-direction: column;
    align-items: stretch;
    pointer-events: auto;
    margin-top: 0.6rem;
    padding: 0.6rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .nav-panel.open { display: flex; }

  .nav-links {
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    gap: 0.15rem;
  }

  .nav-links a {
    width: 100%;
    text-align: left;
    border-radius: var(--radius-sm);
    padding: 0.75rem 0.9rem;
  }

  .nav-panel-cta {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-top: 0.55rem;
    padding-top: 0.65rem;
    border-top: 1px solid var(--border);
  }

  .nav-panel-cta .nav-phone {
    justify-content: center;
    padding: 0.7rem 1rem;
    border-right: none;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
  }

  .nav-panel-cta .btn { width: 100%; }

  .nav-actions { display: none; }
  .menu-toggle { display: flex; align-items: center; justify-content: center; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; }
  body { padding-bottom: 72px; }

  .hero { min-height: auto; padding-bottom: 3rem; }
  .hero-grid, .contact-grid, .about-intro, .footer-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  .services-grid, .pricing-grid, .values-grid,
  .stats-grid, .process-timeline, .trust-strip-inner, .area-list {
    grid-template-columns: 1fr;
  }

  .hero-scroll { display: none; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
  .footer-cta-actions { justify-content: center; width: 100%; }

  .hero-visual { order: -1; }
  .hero-logo-frame { width: min(100%, 300px); }
  .logo-img { height: 48px; }

  .mobile-bar { display: flex; }
  section { padding: 3.75rem 0; }
  .about-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions, .cta-actions { flex-direction: column; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .form-row { grid-template-columns: 1fr; }
}
