:root {
  --ink: #101620;
  --muted: #556274;
  --navy: #06152a;
  --navy-2: #0a1f3d;
  --blue: #0b2f68;
  --blue-2: #1557aa;
  --sky: #eaf3ff;
  --orange: #f26522;
  --orange-dark: #c9480d;
  --orange-hover: #ff7a2f;
  --cream: #fff9f2;
  --paper: #f6f8fb;
  --white: #fff;
  --line: rgba(16, 22, 32, 0.13);
  --orange-grad: linear-gradient(135deg, #f26522, #ff7a2f);
  --navy-grad: linear-gradient(135deg, var(--navy), var(--blue) 56%, var(--blue-2));
  --glass: rgba(255, 255, 255, 0.12);
  --glass-strong: rgba(255, 255, 255, 0.2);
  --ring: rgba(57, 133, 230, 0.55);
  --shadow: 0 22px 60px rgba(6, 21, 42, 0.16);
  --shadow-sm: 0 10px 26px rgba(6, 21, 42, 0.09);
  --shadow-md: 0 18px 44px rgba(6, 21, 42, 0.13);
  --shadow-lg: 0 34px 80px rgba(6, 21, 42, 0.26);
  --shadow-orange: 0 16px 34px rgba(242, 101, 34, 0.32);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;
  --max: 1180px;
  --display: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", Impact, sans-serif;
  --body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #ffbd73;
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

/* ---------- Top strip ---------- */
.top-strip {
  position: relative;
  color: #dce9ff;
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  font-size: 0.83rem;
}

.top-strip .wrap {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-block: 7px;
}

.top-strip span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(6, 21, 42, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: 148px;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 0;
}

.desktop-nav a {
  position: relative;
  padding: 10px 9px;
  border-radius: 999px;
  color: #273447;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 0.2s ease;
}

/* Animated nav underline */
.desktop-nav a::after {
  position: absolute;
  left: 9px;
  right: 9px;
  bottom: 4px;
  height: 2px;
  content: "";
  background: var(--orange-grad);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--blue);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.desktop-nav a[aria-current="page"] {
  color: var(--blue);
  background: var(--sky);
}

.mobile-menu {
  display: none;
  position: relative;
  flex: 0 0 auto;
}

.mobile-menu summary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-nav {
  position: absolute;
  top: 51px;
  right: -68px;
  display: grid;
  width: min(280px, calc(100vw - 28px));
  gap: 4px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-nav a {
  min-height: 42px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 800;
}

.mobile-nav a:hover,
.mobile-nav a[aria-current="page"] {
  color: var(--blue);
  background: var(--sky);
}

/* ---------- Buttons ---------- */
.call-btn,
.btn {
  position: relative;
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.075em;
  line-height: 1.15;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.call-btn,
.btn.primary {
  color: var(--navy);
  background: var(--orange-grad);
  box-shadow: var(--shadow-orange);
}

.call-btn:hover,
.btn.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(242, 101, 34, 0.4);
}

/* Button shine */
.btn.primary::before {
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  content: "";
  background: linear-gradient(
    100deg,
    transparent,
    rgba(255, 255, 255, 0.55),
    transparent
  );
  transform: skewX(-18deg);
  pointer-events: none;
}

.btn.primary:hover::before {
  animation: btn-shine 0.85s ease;
}

@keyframes btn-shine {
  to {
    left: 130%;
  }
}

.call-btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.call-short {
  display: none;
}

.btn.light {
  color: var(--blue);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.btn.light:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn.outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.38);
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.65);
}

.btn.dark {
  color: var(--white);
  background: var(--navy);
}

.btn.dark:hover {
  transform: translateY(-2px);
  background: var(--navy-2);
}

/* ---------- Eyebrows / labels ---------- */
.eyebrow,
.label {
  display: inline-block;
  color: #ffd1a2;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.label {
  color: var(--orange-dark);
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
.display {
  margin-top: 0;
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.93;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3.5rem, 6.7vw, 6.3rem);
}

h2 {
  font-size: clamp(2.45rem, 4.8vw, 4.4rem);
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-top: 0;
}

/* ---------- Hero ---------- */
.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 12%, rgba(57, 133, 230, 0.8), transparent 32%),
    radial-gradient(circle at 8% 92%, rgba(242, 101, 34, 0.28), transparent 38%),
    var(--navy-grad);
}

/* Glassy blurred accent orbs */
.hero::before,
.page-hero::before {
  position: absolute;
  z-index: 0;
  width: 360px;
  height: 360px;
  left: -120px;
  top: -120px;
  content: "";
  background: radial-gradient(circle, rgba(57, 133, 230, 0.55), transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  pointer-events: none;
}

.hero::after,
.page-hero::after {
  position: absolute;
  width: 420px;
  height: 420px;
  right: -220px;
  bottom: -280px;
  content: "";
  border: 70px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 46px;
  align-items: center;
  padding-block: 74px 84px;
}

.hero h1 {
  max-width: 690px;
  margin: 13px 0 22px;
}

.hero-copy,
.page-hero-copy {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 28px;
}

/* Glassy floating hero trust badge */
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 26px;
  padding: 11px 18px 11px 13px;
  color: var(--white);
  background: var(--glass);
  border: 1px solid var(--glass-strong);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(6, 21, 42, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-size: 0.92rem;
  line-height: 1.3;
}

.trust-badge .icon,
.trust-badge .stars {
  flex: 0 0 auto;
}

.trust-badge strong {
  font-weight: 900;
}

.trust-badge span {
  color: rgba(255, 255, 255, 0.82);
}

/* Hero photo card */
.photo-card {
  position: relative;
  min-width: 0;
  padding: 9px;
  background: rgba(255, 255, 255, 0.17);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: none;
}

.photo-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 51% 38%;
  border-radius: var(--radius);
}

.photo-badge {
  position: absolute;
  right: -18px;
  bottom: 24px;
  width: min(320px, 78%);
  padding: 19px 21px;
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: none;
}

.photo-badge strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.photo-badge span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

/* ---------- Stats / count-up strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.stat {
  position: relative;
  min-width: 0;
  padding: 26px 22px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stat .count,
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(2.6rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  background: var(--orange-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.stats.on-dark .stat,
.blueprint .stat {
  color: var(--white);
  background: var(--glass);
  border-color: var(--glass-strong);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stats.on-dark .stat span,
.blueprint .stat span {
  color: rgba(255, 255, 255, 0.78);
}

/* ---------- Trust strip (legacy highlights) ---------- */
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -1px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  min-width: 0;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.trust-item span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---------- Sections ---------- */
.section {
  position: relative;
  padding-block: 80px;
}

.section.alt {
  background: var(--paper);
}

.section.blueprint {
  position: relative;
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    var(--navy-grad);
  background-size: 36px 36px, 36px 36px, 100% 100%;
  /* Angled section divider */
  clip-path: polygon(0 0, 100% 38px, 100% 100%, 0 calc(100% - 38px));
  margin-block: -38px;
  padding-block: 118px;
}

.section.blueprint > .wrap {
  position: relative;
  z-index: 1;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 32px;
}

.section-head h2 {
  margin-bottom: 0;
}

.intro-text {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.blueprint .intro-text {
  color: rgba(255, 255, 255, 0.82);
}

/* ---------- Icon chips ---------- */
.icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: var(--blue-2);
  background: linear-gradient(135deg, rgba(21, 87, 170, 0.12), rgba(57, 133, 230, 0.18));
  border: 1px solid rgba(21, 87, 170, 0.2);
  border-radius: var(--radius);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
  transition: transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.icon svg {
  width: 28px;
  height: 28px;
}

.icon.orange {
  color: var(--orange-dark);
  background: linear-gradient(135deg, rgba(242, 101, 34, 0.14), rgba(255, 122, 47, 0.2));
  border-color: rgba(242, 101, 34, 0.22);
}

.icon.on-dark {
  color: #cfe2ff;
  background: var(--glass);
  border-color: var(--glass-strong);
}

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.cards.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Full-width feature card (e.g. orphaned 7th item) */
.cards .card.span-all {
  grid-column: 1 / -1;
}

.card {
  position: relative;
  min-width: 0;
  padding: 25px;
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 5px solid var(--blue);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

/* Accent reveal sweep on hover */
.card::after {
  position: absolute;
  z-index: 0;
  top: -40%;
  right: -30%;
  width: 180px;
  height: 180px;
  content: "";
  background: radial-gradient(circle, rgba(57, 133, 230, 0.16), transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card.orange::after {
  background: radial-gradient(circle, rgba(242, 101, 34, 0.18), transparent 70%);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.card:hover::after {
  opacity: 1;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card.orange {
  border-top-color: var(--orange);
}

.card .icon {
  margin-bottom: 16px;
}

.card h3 {
  margin-bottom: 12px;
}

.card p,
.panel p,
.faq p,
.service-list li {
  color: var(--muted);
}

.card .text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: #9ebde6;
  text-underline-offset: 4px;
}

.card .text-link svg {
  width: 16px;
  height: 16px;
}

/* ---------- Split / panels ---------- */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 26px;
  align-items: start;
}

.panel {
  min-width: 0;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.panel.accent {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-grad);
  border-color: transparent;
}

.panel.accent::before {
  position: absolute;
  width: 280px;
  height: 280px;
  right: -90px;
  top: -90px;
  content: "";
  background: radial-gradient(circle, rgba(57, 133, 230, 0.5), transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

.panel.accent > * {
  position: relative;
  z-index: 1;
}

.panel.accent p,
.panel.accent li {
  color: rgba(255, 255, 255, 0.86);
}

/* Figures / images inside split or panel (Contact map, etc.) */
.split figure,
.panel figure {
  margin: 0;
}

.split figure img,
.panel figure img,
.split > img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.split figure figcaption,
.panel figure figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- Lists ---------- */
.service-list,
.check-list {
  display: grid;
  gap: 10px;
  padding-left: 21px;
}

.check-list {
  list-style: none;
  padding-left: 0;
}

.check-list li {
  position: relative;
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
}

.check-list li svg {
  width: 22px;
  height: 22px;
  color: var(--orange);
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step {
  min-width: 0;
  padding: 24px;
  background: var(--white);
  border-left: 5px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.step strong {
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
  text-transform: uppercase;
}

.step p {
  margin: 10px 0 0;
  color: var(--muted);
}

/* ---------- Why grid / value props ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.value {
  position: relative;
  min-width: 0;
  padding: 28px 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.value::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: var(--orange-grad);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

.value:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value:hover::after {
  transform: scaleX(1);
}

.value .icon {
  margin-bottom: 16px;
}

.value h3 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.value p {
  margin: 0;
  color: var(--muted);
}

.blueprint .value {
  color: var(--white);
  background: var(--glass);
  border-color: var(--glass-strong);
  box-shadow: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.blueprint .value p {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Reviews / testimonials ---------- */
.reviews {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.review {
  position: relative;
  min-width: 0;
  padding: 28px 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.review::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  right: 22px;
  color: rgba(21, 87, 170, 0.12);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.review:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.review p {
  position: relative;
  z-index: 1;
  margin: 14px 0 18px;
  color: var(--ink);
  font-size: 1.04rem;
  line-height: 1.65;
}

.review cite {
  display: block;
  color: var(--blue);
  font-style: normal;
  font-weight: 900;
}

.review cite span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.88rem;
}

.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--orange);
}

.stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

/* ---------- Page hero ---------- */
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 42px;
  align-items: center;
  padding-block: 66px;
}

.page-hero h1 {
  margin: 12px 0 20px;
}

.side-photo {
  min-width: 0;
  padding: 8px;
  background: rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.side-photo img {
  width: 100%;
  height: 370px;
  object-fit: cover;
  object-position: 53% 39%;
  border-radius: var(--radius);
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq {
  min-width: 0;
  padding: 23px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.faq h3 {
  margin-bottom: 10px;
}

/* ---------- Call band ---------- */
.callband {
  position: relative;
  overflow: hidden;
  padding-block: 88px;
  color: var(--white);
  background:
    radial-gradient(circle at 90% 10%, rgba(242, 101, 34, 0.3), transparent 40%),
    var(--navy-grad);
  /* Angled top divider */
  clip-path: polygon(0 42px, 100% 0, 100% 100%, 0 100%);
  margin-top: -42px;
}

.callband .wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.callband h2 {
  margin-bottom: 8px;
}

.callband p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Service area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.area {
  position: relative;
  padding: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 3px solid var(--orange);
  border-radius: var(--radius);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.area:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.area .icon {
  margin-bottom: 14px;
}

.area strong {
  display: block;
  font-family: var(--display);
  font-size: 1.8rem;
  line-height: 1;
  text-transform: uppercase;
}

.area span {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.85);
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 24px;
}

.chip {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #eaf3ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.notice {
  padding: 20px;
  color: #543016;
  background: var(--cream);
  border: 1px solid #efc99f;
  border-radius: var(--radius);
}

/* ---------- Footer ---------- */
.site-footer {
  padding-block: 42px 25px;
  color: #d8e6ff;
  background: linear-gradient(180deg, var(--navy-2), var(--navy));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr 0.9fr;
  gap: 34px;
}

.footer-logo-card {
  width: min(100%, 255px);
  margin-bottom: 16px;
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
}

.footer-grid p,
.footer-grid a {
  color: #bed0eb;
}

.footer-grid strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.footer-links a {
  width: fit-content;
  text-decoration: underline;
  text-decoration-color: rgba(190, 208, 235, 0.45);
  text-underline-offset: 4px;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.fine {
  margin-top: 28px;
  padding-top: 19px;
  color: #91a8c9;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.86rem;
}

/* ---------- Scroll reveal primitives ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Staggered children when reveal wraps a grid */
.reveal[data-stagger] > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal[data-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}

.reveal[data-stagger].is-visible > *:nth-child(2) {
  transition-delay: 0.08s;
}

.reveal[data-stagger].is-visible > *:nth-child(3) {
  transition-delay: 0.16s;
}

.reveal[data-stagger].is-visible > *:nth-child(4) {
  transition-delay: 0.24s;
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
    margin-left: auto;
  }

  .header-row {
    min-height: 76px;
  }

  .cards.four,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .hero-grid,
  .page-hero-grid,
  .section-head,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid > div:first-child {
    text-align: center;
  }

  .footer-logo-card {
    margin-inline: auto;
  }

  .hero-grid {
    padding-block: 55px 65px;
  }

  .page-hero-grid {
    padding-block: 50px;
  }

  .section-head {
    gap: 16px;
  }

  .trust-grid,
  .cards,
  .steps,
  .area-grid,
  .why-grid,
  .reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .photo-card {
    max-width: 650px;
    transform: none;
  }

  .photo-badge {
    right: 16px;
    transform: none;
  }

  .callband .wrap {
    display: grid;
  }
}

@media (max-width: 600px) {
  .wrap {
    width: min(calc(100% - 32px), var(--max));
  }

  .top-strip {
    font-size: 0.7rem;
  }

  .top-strip .wrap {
    justify-content: center;
    padding-block: 6px;
    text-align: center;
  }

  .top-strip span:last-child {
    display: none;
  }

  .header-row {
    gap: 7px;
    min-height: 66px;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 106px;
  }

  .mobile-menu {
    margin-left: auto;
  }

  .mobile-menu summary {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 0.66rem;
  }

  .mobile-nav {
    top: 45px;
    right: -49px;
  }

  .call-btn {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.68rem;
  }

  .call-long {
    display: none;
  }

  .call-short {
    display: inline;
  }

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
    line-height: 0.96;
  }

  h2 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 0.98;
  }

  h3 {
    font-size: 1.55rem;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 30px;
    padding-block: 42px 50px;
  }

  .hero h1,
  .page-hero h1 {
    margin-block: 10px 17px;
  }

  .hero-copy,
  .page-hero-copy {
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .hero-actions,
  .cta-row {
    display: grid;
  }

  .hero-actions .btn,
  .cta-row .btn {
    width: 100%;
  }

  .trust-badge {
    width: 100%;
  }

  .photo-card,
  .side-photo {
    padding: 5px;
    border-radius: 22px;
  }

  .photo-card img,
  .side-photo img {
    height: 250px;
    border-radius: 17px;
  }

  .photo-badge {
    position: static;
    width: 100%;
    margin-top: 5px;
    box-shadow: none;
  }

  .photo-badge strong {
    font-size: 1.7rem;
  }

  .trust-grid,
  .cards,
  .cards.four,
  .stats,
  .steps,
  .faq-grid,
  .area-grid,
  .why-grid,
  .reviews {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .section {
    padding-block: 54px;
  }

  .section.blueprint {
    padding-block: 80px;
    clip-path: polygon(0 0, 100% 22px, 100% 100%, 0 calc(100% - 22px));
  }

  .callband {
    padding-block: 60px;
    clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%);
  }

  .card,
  .panel,
  .step,
  .faq,
  .area,
  .value,
  .review,
  .stat {
    padding: 21px;
  }

  .callband .btn {
    width: 100%;
  }

  .cards .card.span-all {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

@media (max-width: 350px) {
  .wrap {
    width: min(calc(100% - 24px), var(--max));
  }

  .brand-logo {
    width: 96px;
  }

  .mobile-menu summary {
    padding-inline: 8px;
  }

  .call-btn {
    padding-inline: 9px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  /* Reveal content is always visible without JS or motion */
  .reveal,
  .reveal[data-stagger] > * {
    opacity: 1 !important;
    transform: none !important;
  }

  /* Disable parallax, button shine, and hover lifts */
  [data-parallax] {
    transform: none !important;
  }

  .btn.primary::before {
    display: none !important;
    animation: none !important;
  }

  .card:hover,
  .value:hover,
  .review:hover,
  .step:hover,
  .area:hover,
  .btn:hover,
  .call-btn:hover {
    transform: none !important;
  }
}

/* Contact ticket widget */
.chat-fab {
  position: fixed; z-index: 90; right: 20px; bottom: 20px;
  display: inline-flex; align-items: center; justify-content: center;
  width: 60px; height: 60px; color: #fff;
  background: linear-gradient(135deg, var(--orange), var(--orange-hover));
  border: 0; border-radius: 50%; cursor: pointer;
  box-shadow: 0 12px 30px rgba(242, 101, 34, 0.4);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.chat-fab:hover { transform: translateY(-2px); filter: brightness(1.05); }
.chat-fab svg { width: 28px; height: 28px; }
.chat-panel {
  position: fixed; z-index: 91; right: 20px; bottom: 92px;
  width: min(360px, calc(100vw - 32px));
  max-height: min(560px, calc(100vh - 130px)); overflow-y: auto;
  padding: 22px; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow);
}
.chat-panel[hidden] { display: none; }
.chat-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.chat-head strong { font-family: var(--display); font-size: 1.35rem; line-height: 1; text-transform: uppercase; }
.chat-close { padding: 0 4px; color: var(--muted); background: none; border: 0; font-size: 1.7rem; line-height: 1; cursor: pointer; }
.chat-intro { margin: 8px 0 14px; color: var(--muted); font-size: 0.95rem; }
.chat-form { display: grid; gap: 4px; }
.chat-label { margin-top: 8px; font-size: 0.85rem; font-weight: 700; }
.chat-form input, .chat-form textarea {
  width: 100%; padding: 10px 12px; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 10px; font: inherit; font-size: 0.95rem;
}
.chat-form textarea { resize: vertical; }
.chat-send { width: 100%; margin-top: 14px; cursor: pointer; }
.chat-status { margin: 12px 0 0; font-size: 0.9rem; font-weight: 700; }
.chat-status.ok { color: #1a7d3c; }
.chat-status.err { color: var(--orange-dark); }
@media (max-width: 600px) {
  .chat-fab { right: 16px; bottom: 16px; }
  .chat-panel { right: 16px; bottom: 84px; }
}

.chat-recaptcha { margin-top: 14px; }
@media (max-width: 360px) {
  .chat-recaptcha { transform: scale(0.86); transform-origin: left top; }
}

.chat-captcha { margin-top: 14px; }
@media (max-width: 360px) { .chat-captcha { transform: scale(0.9); transform-origin: left top; } }
@media (max-width: 820px) {
  .hero-textwrap { display: contents; }
  .hero-head { order: 0; }
  .hero .photo-card { order: 1; }
  .hero-body { order: 2; }
  .hero .photo-badge { display: none; }
}
