:root {
  --c-bg: #0a2540;
  --c-bg-deep: #061828;
  --c-accent: #8eb4d4;
  --c-accent-light: #b8d4e8;
  --c-text: #0a2540;
  --c-footer: #1a1a1a;
}

@font-face {
  font-family: 'PP Telegraf';
  src: url('fonts/PPTelegraf-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Telegraf';
  src: url('fonts/PPTelegraf-Bold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Telegraf';
  src: url('fonts/PPTelegraf-RegularSlanted.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 1280px;
  font: 300 16px/1.5 'PP Telegraf', sans-serif;
  color: var(--c-text);
  overflow-x: hidden;
}

img { max-width: 100%; vertical-align: bottom; }
a { color: var(--c-text); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--c-accent); }
ul, ol { margin-top: 0; padding-left: 1rem; }
p { margin: 0; }
p:not(:last-child) { margin-bottom: 1rem; }
h1, h2, h3, h4, h5, h6 { font-weight: 500; margin: 0 0 1rem; }

.home, .page-dark { background: var(--c-bg); color: #fff; }
.inner-page { background: #f4f7fa; color: var(--c-text); }

.f_acc { color: var(--c-accent-light); }
.f_wh { color: #fff; }
.f_18 { font-size: 18px; }
.f_24 { font-size: 24px; }
.f_35 { font-size: 35px; line-height: 1.1; }
.f_55 { font-size: 55px; line-height: 1.05; }
.f_65 { font-size: 65px; line-height: 1; }
.f_100 { font-size: 100px; line-height: 1.1; }

.mb2 { margin-bottom: 2rem; }
.mb3 { margin-bottom: 3rem; }
.mb10 { margin-bottom: 10rem; }
.mb12 { margin-bottom: 12rem; }
.mt2 { margin-top: 2rem; }
.pt-header { padding-top: 11rem; }

.wrap { width: 100%; max-width: 1660px; padding: 0 40px; margin: 0 auto; position: relative; }
.wrap-med { max-width: 1408px; }
.wrap-sm { max-width: 1120px; }
.wrap-narrow { max-width: 900px; }
.section-sm { padding: 6rem 0; }
.section-md { padding: 8rem 0; }

.flex { display: flex; flex-wrap: wrap; justify-content: space-between; }
.flex_2, .flex_1_2, .flex_2_1, .flex_4, .flex_3_1, .flex_1_3, .flex_3 { margin: 0 -15px; }
.flex_2 > * { width: calc(50% - 30px); margin: 0 15px; }
.flex_1_3 > *:first-child { width: calc(25% - 30px); margin: 0 15px; }
.flex_1_3 > *:last-child { width: calc(75% - 30px); margin: 0 15px; }
.flex_3_1 > *:first-child { width: calc(75% - 30px); margin: 0 15px; }
.flex_3_1 > *:last-child { width: calc(25% - 30px); margin: 0 15px; }
.flex_3 > * { width: calc(33.33% - 30px); margin: 0 15px; }
.flex_4 > * { width: calc(25% - 30px); margin: 0 15px; }
.flex_cen { align-items: center; }
.flex_end { align-items: flex-end; }
.flex_col { flex-direction: column; align-items: flex-start; justify-content: space-between; }

.img { border-radius: 16px; }

.title {
  margin: 0;
  position: relative;
  text-transform: uppercase;
  padding-left: calc(54px + 1rem);
  letter-spacing: 0.04em;
}
.title::before {
  content: "";
  position: absolute;
  width: 54px;
  border-top: 1px solid;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.title.f_acc::before { border-color: var(--c-accent-light); }
.inner-page .title::before { border-color: var(--c-bg); }

.section-lg {
  border-radius: 16px;
  background: var(--c-accent-light);
  color: var(--c-bg);
  padding: 5rem;
}

.btn {
  color: var(--c-bg);
  text-align: center;
  border: 1px solid var(--c-accent-light);
  padding: 0.9rem 1.75rem 0.55rem;
  border-radius: 50px;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: 0.06em;
  line-height: 1.6;
  background: var(--c-accent-light);
  min-width: 240px;
  display: inline-block;
  transition: 0.2s all cubic-bezier(0.55, 0.09, 0.68, 0.53);
  cursor: pointer;
}
.btn:hover { color: #fff; background: var(--c-bg); border-color: var(--c-bg); }
.btn-small { min-width: auto; padding: 0.5rem 1.4rem 0.2rem; font-size: 13px; }
.btn-white { background: none; border-color: #fff; color: #fff; }
.btn-white:hover { background: #fff; color: var(--c-bg); border-color: #fff; }
.btn-navy { background: none; border-color: var(--c-bg); color: var(--c-bg); }
.btn-navy:hover { background: var(--c-bg); color: #fff; }
.btn-outline-light { background: none; border-color: var(--c-accent-light); color: var(--c-accent-light); }
.btn-outline-light:hover { background: var(--c-accent-light); color: var(--c-bg); }
.btn-xxl { font-size: 32px; padding: 1rem 3rem 0.75rem; width: 100%; text-align: center; }

/* Header */
#header {
  padding: 1.75rem 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  overflow: visible;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#header.inverted,
.inner-page #header {
  position: fixed;
  background: var(--c-bg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
}
#header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.header_logo { flex-shrink: 0; width: 200px; }
.header_logo img { max-height: 52px; width: auto; }
/* Light logo on dark header (home hero, inner pages, scrolled home) */
.home #header:not(.inverted) .header_logo img,
.inner-page .header_logo img,
#header.inverted .header_logo img {
  filter: brightness(0) invert(1);
}

.nav-main { flex: 1; display: flex; justify-content: center; }
.nav-main > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-main > ul > li { position: relative; }
.nav-has-sub > a::after {
  content: "";
  display: inline-block;
  margin-left: 6px;
  border: 4px solid transparent;
  border-top-color: currentColor;
  transform: translateY(-2px);
  vertical-align: middle;
  opacity: 0.75;
}
.nav-main > ul > li > a {
  display: block;
  padding: 0.65rem 1.1rem;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.inner-page .nav-main > ul > li > a { color: rgba(255, 255, 255, 0.92); }
#header.inverted .nav-main > ul > li > a,
.inner-page .nav-main > ul > li > a { color: rgba(255, 255, 255, 0.92); }
.nav-main > ul > li > a:hover,
.nav-main > ul > li.active > a,
.nav-main > ul > li.active > a.is-current {
  color: var(--c-accent-light);
  background: rgba(255, 255, 255, 0.06);
}
/* Hover bridge — prevents gap between trigger and panel */
.nav-has-sub::after {
  content: "";
  position: absolute;
  left: -8px;
  right: -8px;
  top: 100%;
  height: 22px;
  z-index: 1099;
}

.nav-sub {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 300px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
  z-index: 1100;
}
.nav-sub-wide { min-width: 340px; }

.nav-has-sub:hover .nav-sub,
.nav-has-sub:focus-within .nav-sub,
.nav-has-sub.is-open .nav-sub {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-sub li { margin: 0; }
.nav-sub-label {
  padding: 0.6rem 1.25rem 0.35rem;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #6b7c8a;
  pointer-events: none;
}
.nav-sub-divider {
  height: 1px;
  margin: 0.5rem 1rem;
  background: #e8edf2;
  padding: 0 !important;
}
.nav-sub a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 14px;
  text-transform: none;
  letter-spacing: 0.02em;
  color: var(--c-bg);
  line-height: 1.35;
  white-space: normal;
}
.nav-sub a:hover {
  background: #eef4f9;
  color: var(--c-bg);
}
.nav-sub a.nav-sub-minor {
  font-size: 13px;
  color: #4a6278;
}

.header_actions { display: flex; align-items: center; gap: 1.25rem; flex-shrink: 0; }
.header_phone {
  font-size: 14px;
  color: var(--c-accent-light);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.header_phone:hover { color: #fff; }

/* Hero image (no video) */
#top { position: relative; overflow: hidden; }
.top_hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--c-bg-deep);
}
.top_hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-poster.jpg') center / cover no-repeat;
  animation: heroKenBurns 22s ease-in-out infinite alternate;
}
.top_hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 24, 40, 0.55) 0%, rgba(6, 24, 40, 0.82) 100%);
}
@keyframes heroKenBurns {
  0% { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1%, -1%); }
}
.home #top .wrap,
.home #top .hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.home #top .f_24 {
  text-transform: uppercase;
  max-width: 520px;
  margin: 0 auto 1.5rem;
  letter-spacing: 0.12em;
  font-size: 20px;
}
.home #top .f_65 { max-width: 1050px; margin: 0 auto; }
.home #top .flex { margin-top: 3.5rem; justify-content: center; gap: 1.25rem; }
.home #top .flex > div { width: auto; margin: 0; }

.hero-animate {
  opacity: 0;
  transform: translateY(28px);
  animation: heroIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s ease, opacity 0.25s ease;
}
.hero-scroll-hint:hover { color: #fff; opacity: 1; }
.hero-scroll-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.85;
}
.hero-scroll-mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll-mouse span {
  width: 4px;
  height: 8px;
  background: var(--c-accent-light);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
@keyframes scrollWheel {
  0%, 100% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(10px); opacity: 0.2; }
}

.home #top.top_hero { --px: 0; --py: 0; --scroll-p: 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  margin-bottom: 1.25rem;
}
.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-accent-light);
  box-shadow: 0 0 12px rgba(142, 180, 212, 0.8);
  animation: eyebrowPulse 2.4s ease-in-out infinite;
}
@keyframes eyebrowPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.35); opacity: 0.65; }
}

.hero-cap-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.5rem;
  margin: 2.25rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 820px;
}
.hero-cap-list li {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(6, 24, 40, 0.35);
  backdrop-filter: blur(6px);
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--c-accent) 0%, #6a9fc4 100%);
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(10, 37, 64, 0.35);
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(10, 37, 64, 0.45);
}

/* Hero overlay FX — ceiling grid, set-out, scan, beams */
.hero-fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
  opacity: calc(1 - var(--scroll-p, 0) * 0.7);
  transform: translate3d(calc(var(--px, 0) * 22px), calc(var(--py, 0) * 14px), 0);
  transition: transform 0.35s ease-out, opacity 0.4s ease;
}
.hero-fx-layer { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; }

.hero-fx-grid {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-fx.mode-grid .hero-fx-grid { opacity: 0.5; animation: gridBreath 7s ease-in-out infinite; }
.hero-fx.mode-grid .hero-fx-measure { opacity: 1; }
.hero-fx.mode-grid .hero-fx-dust { opacity: 1; }
@keyframes gridBreath {
  0%, 100% { opacity: 0.42; }
  50% { opacity: 0.58; }
}

.hero-fx-scan .hero-scan-line {
  position: absolute;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(142, 180, 212, 0.15), rgba(184, 212, 232, 0.85), rgba(142, 180, 212, 0.15), transparent);
  box-shadow: 0 0 24px rgba(142, 180, 212, 0.45);
  opacity: 0;
}
.hero-fx.mode-scan .hero-fx-scan { opacity: 1; }
.hero-fx.mode-scan .hero-scan-line { animation: heroScanDown 3.2s ease-in-out infinite; }
.hero-fx.mode-scan .hero-scan-line--2 { animation-delay: 1.6s; top: 35%; }
@keyframes heroScanDown {
  0% { top: 8%; opacity: 0; }
  12% { opacity: 1; }
  88% { opacity: 1; }
  100% { top: 92%; opacity: 0; }
}

.hero-frame {
  position: absolute;
  border: 1px solid rgba(184, 212, 232, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  opacity: 0;
}
.hero-frame--a { left: 12%; top: 22%; width: 28%; height: 38%; }
.hero-frame--b { left: 44%; top: 30%; width: 22%; height: 28%; }
.hero-frame--c { right: 10%; top: 18%; width: 26%; height: 42%; }
.hero-fx.mode-setout .hero-fx-setout { opacity: 1; }
.hero-fx.mode-setout .hero-frame--a { animation: frameDraw 2.8s ease forwards; }
.hero-fx.mode-setout .hero-frame--b { animation: frameDraw 2.8s ease 0.35s forwards; }
.hero-fx.mode-setout .hero-frame--c { animation: frameDraw 2.8s ease 0.7s forwards; }
@keyframes frameDraw {
  0% { opacity: 0; clip-path: inset(0 100% 100% 0); }
  100% { opacity: 1; clip-path: inset(0 0 0 0); }
}

.hero-beam {
  position: absolute;
  left: -10%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  opacity: 0;
}
.hero-beam--1 { top: 28%; width: 55%; }
.hero-beam--2 { top: 48%; width: 70%; }
.hero-beam--3 { top: 68%; width: 48%; }
.hero-fx.mode-beam .hero-fx-beam { opacity: 1; }
.hero-fx.mode-beam .hero-beam--1 { animation: beamSlide 2.6s ease-in-out infinite; }
.hero-fx.mode-beam .hero-beam--2 { animation: beamSlide 2.6s ease-in-out 0.4s infinite; }
.hero-fx.mode-beam .hero-beam--3 { animation: beamSlide 2.6s ease-in-out 0.8s infinite; }
@keyframes beamSlide {
  0% { transform: translateX(-8%); opacity: 0; }
  20% { opacity: 0.85; }
  80% { opacity: 0.85; }
  100% { transform: translateX(115%); opacity: 0; }
}

.hero-scope-tag {
  position: absolute;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.35rem 0.65rem;
  border-left: 2px solid var(--c-accent-light);
  background: rgba(6, 24, 40, 0.5);
  opacity: 0;
  transform: translateY(8px);
}
.hero-scope-tag em { font-style: normal; }
.hero-scope-tag:nth-child(1) { left: 8%; top: 20%; }
.hero-scope-tag:nth-child(2) { left: 62%; top: 32%; }
.hero-scope-tag:nth-child(3) { left: 18%; top: 58%; }
.hero-scope-tag:nth-child(4) { right: 8%; top: 48%; }
.hero-fx.mode-grid .hero-fx-tags,
.hero-fx.mode-scan .hero-fx-tags,
.hero-fx.mode-setout .hero-fx-tags,
.hero-fx.mode-beam .hero-fx-tags { opacity: 1; }
.hero-fx.mode-grid .hero-fx-tags .hero-scope-tag:nth-child(1),
.hero-fx.mode-scan .hero-fx-tags .hero-scope-tag:nth-child(2),
.hero-fx.mode-setout .hero-fx-tags .hero-scope-tag:nth-child(3),
.hero-fx.mode-beam .hero-fx-tags .hero-scope-tag:nth-child(4) {
  animation: tagFade 5s ease-in-out infinite;
}
@keyframes tagFade {
  0%, 100% { opacity: 0; transform: translateY(8px); }
  15%, 55% { opacity: 1; transform: translateY(0); }
}

.hero-corner {
  position: absolute;
  width: 36px;
  height: 36px;
  border-color: rgba(184, 212, 232, 0.65);
  border-style: solid;
  opacity: 0;
}
.hero-corner--tl { top: 14%; left: 8%; border-width: 2px 0 0 2px; }
.hero-corner--tr { top: 14%; right: 8%; border-width: 2px 2px 0 0; }
.hero-corner--bl { bottom: 22%; left: 8%; border-width: 0 0 2px 2px; }
.hero-corner--br { bottom: 22%; right: 8%; border-width: 0 2px 2px 0; }
.hero-level-line {
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 212, 232, 0.5), transparent);
  transform: scaleX(0);
}
.hero-fx.mode-grid .hero-corner,
.hero-fx.mode-setout .hero-corner { animation: cornerPop 1.2s ease forwards; }
.hero-fx.mode-grid .hero-level-line { animation: levelDraw 2s ease 0.4s forwards; }
@keyframes cornerPop {
  to { opacity: 1; }
}
@keyframes levelDraw {
  to { transform: scaleX(1); }
}

.hero-fx-dust span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: dustDrift 12s linear infinite;
}
.hero-fx-dust span:nth-child(1) { left: 15%; top: 30%; animation-duration: 14s; }
.hero-fx-dust span:nth-child(2) { left: 45%; top: 55%; animation-duration: 11s; animation-delay: 2s; }
.hero-fx-dust span:nth-child(3) { left: 72%; top: 25%; animation-duration: 16s; animation-delay: 1s; }
.hero-fx-dust span:nth-child(4) { left: 28%; top: 70%; animation-duration: 13s; animation-delay: 3s; }
.hero-fx-dust span:nth-child(5) { left: 85%; top: 60%; animation-duration: 15s; animation-delay: 0.5s; }
.hero-fx-dust span:nth-child(6) { left: 55%; top: 40%; animation-duration: 12s; animation-delay: 4s; }
@keyframes dustDrift {
  0% { transform: translate(0, 0); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.4; }
  100% { transform: translate(40px, -80px); opacity: 0; }
}

.hero-fx.is-static .hero-fx-grid { opacity: 0.35; }
.hero-fx.is-static .hero-fx-layer:not(.hero-fx-measure) { display: none; }

@media (prefers-reduced-motion: reduce) {
  .top_hero .hero-bg { animation: none; }
  .hero-fx.mode-grid .hero-fx-grid,
  .hero-fx.mode-grid .hero-fx-measure,
  .hero-fx-dust span,
  .hero-scroll-mouse span,
  .hero-eyebrow-dot { animation: none !important; }
  .hero-fx { transform: none; opacity: 0.4; }
  .hero-fx .hero-fx-grid { opacity: 0.35; }
}

/* Inner page hero */
.page-banner {
  padding: 28rem 0 12rem;
  background: var(--c-bg);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-banner-img {
  background-size: cover;
  background-position: center;
  position: relative;
}
.page-banner-img::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(6, 24, 40, 0.45) 0%,
    rgba(6, 24, 40, 0.72) 45%,
    rgba(6, 24, 40, 0.92) 100%
  );
}
.page-banner--rich::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(ellipse 80% 60% at 50% 20%, rgba(142, 180, 212, 0.18) 0%, transparent 55%);
  pointer-events: none;
}
.page-banner-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.page-banner--rich.page-banner-img {
  animation: innerBannerPan 26s ease-in-out infinite alternate;
}
@keyframes innerBannerPan {
  0% { background-position: center 40%; }
  100% { background-position: center 55%; }
}
.page-banner-shine {
  position: absolute;
  top: -50%;
  left: -30%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.06) 48%,
    rgba(184, 212, 232, 0.12) 50%,
    transparent 58%
  );
  animation: bannerShine 9s ease-in-out infinite;
}
@keyframes bannerShine {
  0%, 100% { transform: translateX(-20%) skewX(-12deg); opacity: 0; }
  45% { opacity: 1; }
  55% { transform: translateX(180%) skewX(-12deg); opacity: 0; }
}
.page-banner-grid {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: linear-gradient(rgba(184, 212, 232, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 212, 232, 0.4) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 85%);
}
.page-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  animation: bannerContentIn 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
@keyframes bannerContentIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}
.page-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  margin-bottom: 1.25rem;
}
.page-banner-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-accent-light);
  box-shadow: 0 0 10px rgba(184, 212, 232, 0.8);
  animation: eyebrowPulse 2.2s ease-in-out infinite;
}
.page-banner-title {
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 1.06;
  font-weight: 500;
  margin: 0 auto 1.25rem;
  max-width: 900px;
  text-shadow: 0 4px 32px rgba(0, 0, 0, 0.35);
}
.page-banner-lead {
  font-size: 19px;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto 2rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 300;
}
.page-banner-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.page-banner-actions .btn {
  min-width: 200px;
}
.page-banner-scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.25s ease, transform 0.25s ease;
}
.page-banner-scroll:hover {
  color: #fff;
  transform: translateY(4px);
}
.page-banner-scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.page-banner-scroll-mouse span {
  width: 4px;
  height: 7px;
  background: var(--c-accent-light);
  border-radius: 2px;
  animation: scrollWheel 1.8s ease-in-out infinite;
}
.page-banner-img .wrap { position: relative; z-index: 1; }
.page-banner .f_55 { max-width: 900px; margin: 0 auto; }
.page-banner .f_24 {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  color: var(--c-accent-light);
}

/* Sectors */
#sectors .sector-item {
  text-align: left;
  padding: 0;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
#sectors .sector-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
#sectors .sector-item a { color: inherit; display: block; }
#sectors .sector-item a:hover { color: inherit; }
#sectors .sector-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
#sectors .sector-card-body { padding: 1.5rem 1.25rem 1.75rem; }
#sectors .f_24 { margin-bottom: 0.5rem; color: var(--c-accent-light); }
#sectors p { font-size: 15px; opacity: 0.85; margin: 0; }
#sectors .sector-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-accent-light);
}

/* Why */
#why { padding: 5rem 0; }
#why .flex_3 { margin-top: 3rem; }
#why .flex_3 > * {
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-bg);
}

/* Projects home */
#home_projects { padding: 10rem 0; overflow: hidden; }
#home_projects .f_100 span { max-width: 620px; display: block; }
#home_projects .flex.flex_cen:last-child div:last-child {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
#home_projects .btn { margin-top: 1.5rem; }
#home_projects .flex.flex_cen:first-child > div:last-child { text-align: right; }
#home_projects .tns-item img { height: 466px; object-fit: cover; width: 100%; }

.section-slider { overflow: hidden; }
.section-slider .tns-inner { margin-right: 12rem !important; }
.section-slider .tns-ovh { overflow: visible; }
.section-slider .tns-item img {
  width: 100%;
  height: 324px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.section-slider a:hover img { transform: scale(1.03); }
.section-slider .f_35 {
  position: relative;
  padding-top: 1.75rem;
  padding-right: 3rem;
  margin-bottom: 0;
}
.section-slider .f_35::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  width: 43px;
  height: 29px;
  background: url('../img/arrow.svg') no-repeat center / contain;
  transition: transform 0.2s ease;
}
.section-slider a:hover .f_35 { color: var(--c-accent-light); }
.section-slider a:hover .f_35::after { transform: translateX(6px); }

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-stagger > .reveal:nth-child(1) { --d: 0.04s; }
.reveal-stagger > .reveal:nth-child(2) { --d: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { --d: 0.16s; }
.reveal-stagger > .reveal:nth-child(4) { --d: 0.22s; }
.reveal-stagger > .reveal:nth-child(5) { --d: 0.28s; }
.reveal-stagger > .reveal:nth-child(6) { --d: 0.34s; }
.reveal-left { transform: translateX(-50px); }
.reveal-left.is-visible { transform: translateX(0); }
.reveal-right { transform: translateX(50px); }
.reveal-right.is-visible { transform: translateX(0); }

/* CTA band */
.cta-band {
  padding: 5rem 0;
  background: #fff;
  border-radius: 30px;
  text-align: center;
  color: var(--c-bg);
  margin: 0 auto;
  max-width: 1120px;
}
.cta-band .f_35 { max-width: 720px; margin: 1.5rem auto 2.5rem; }

/* Content blocks (inner) */
.content-block {
  background: #fff;
  border-radius: 16px;
  padding: 4rem;
  margin-bottom: 3rem;
}
.content-block h2 { font-size: 32px; margin-bottom: 1.5rem; color: var(--c-bg); }
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  margin-bottom: 2rem;
  border-left: 4px solid var(--c-accent);
  overflow: hidden;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0;
}
.service-card-content { padding: 2.5rem 3rem; }
.service-card-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}
.service-card.is-minor {
  grid-template-columns: 180px 1fr;
  border-left-color: #c5d4e3;
}
.service-card.is-minor .service-card-media img { min-height: 160px; }
.service-card.is-minor .service-card-content { padding: 1.75rem 2rem; }
.service-card h2 { font-size: 28px; color: var(--c-bg); margin-bottom: 1rem; }
.service-card,
.project-card { scroll-margin-top: 120px; }

.section-intro {
  font-size: 20px;
  line-height: 1.55;
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
  color: #3d5266;
}
.inner-page .section-intro { color: #3d5266; }

.service-tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-bg);
  background: var(--c-accent-light);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.service-tag-minor {
  background: #e8edf2;
  color: #5a6d7d;
}
.service-card.is-minor {
  padding: 0;
  border-left-color: #c5d4e3;
  opacity: 0.95;
}
.service-card.is-core {
  border-left-width: 5px;
}


.project-grid .project-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 3rem;
}
.project-grid .project-card img { border-radius: 16px 16px 0 0; width: 100%; height: 360px; object-fit: cover; }
.project-grid .project-card .card-body { padding: 2.5rem; }
.project-list {
  margin: 1.25rem 0 0;
  padding-left: 1.25rem;
  color: #4a6278;
}
.project-list li { margin-bottom: 0.5rem; font-size: 15px; }

.contact-grid { margin-bottom: 3rem; }
.contact-grid .contact-box {
  background: #fff;
  padding: 3rem;
  border-radius: 16px;
  height: 100%;
}
.contact-box h3 { color: var(--c-bg); font-size: 22px; margin-bottom: 1rem; }

.legal-content {
  background: #fff;
  padding: 4rem 5rem;
  border-radius: 16px;
  margin-bottom: 4rem;
}
.legal-content h2 { font-size: 26px; color: var(--c-bg); margin-top: 2.5rem; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 20px; margin-top: 1.5rem; }

/* Footer */
#footer {
  padding: 4rem 0 2rem;
  background: var(--c-footer);
  color: #fff;
}
.footer_top { margin-top: 5rem; }
.footer_top a:not(.f_acc) { color: #fff; }
.footer_top a:not(.f_acc):hover { color: var(--c-accent-light); }
.footer_top .flex_1_3 > :first-child .f_18 p { margin-bottom: 0.5rem; }
.footer_legal {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #303030;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer_legal a { color: #d5d5d5; font-size: 14px; margin-right: 1.5rem; }
.footer_legal a:hover { color: #fff; }
.footer_copy { color: #999; font-size: 14px; }
.footer_logo img { max-height: 44px; margin-bottom: 1.5rem; filter: brightness(0) invert(1); opacity: 0.9; }

/* Homepage enhancements */
.home-marquee {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.25rem 0;
  background: rgba(0, 0, 0, 0.15);
}
.home-marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
  gap: 4rem;
}
.home-marquee-track span {
  font-size: 13px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-accent-light);
  white-space: nowrap;
  opacity: 0.85;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.home-split-band {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}
.home-split-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: -5%;
  width: 110%;
  height: 100%;
  background: linear-gradient(135deg, rgba(142, 180, 212, 0.12) 0%, transparent 55%);
  transform: skewY(-2deg);
  pointer-events: none;
}
.home-statless-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.home-statless-grid > div {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  transition: transform 0.4s ease, border-color 0.4s ease;
}
.home-statless-grid > div:hover {
  transform: translateY(-4px);
  border-color: var(--c-accent-light);
}
.home-statless-grid h3 { color: var(--c-accent-light); font-size: 22px; }

#sectors .sector-item.sector-enter {
  animation: sectorEnter 0.95s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes sectorEnter {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}
#sectors .sector-item:not(.sector-enter) {
  animation: sectorFloat 6s ease-in-out infinite;
}
#sectors .sector-item:nth-child(2):not(.sector-enter) { animation-delay: 1s; }
#sectors .sector-item:nth-child(3):not(.sector-enter) { animation-delay: 2s; }
#sectors .sector-item:nth-child(4):not(.sector-enter) { animation-delay: 3s; }
@keyframes sectorFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
#sectors .sector-item:hover { animation-play-state: paused; transform: translateY(-6px); }

.home-statless-grid > div.why-card-visible {
  border-color: var(--c-accent-light);
  box-shadow: 0 0 0 1px rgba(142, 180, 212, 0.25), inset 0 0 40px rgba(142, 180, 212, 0.06);
}
.home-statless-grid > div.why-card-visible::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--c-accent-light), transparent);
  animation: whyLineDraw 1.2s ease forwards;
}
.home-statless-grid > div { position: relative; overflow: hidden; }
@keyframes whyLineDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero-line-reveal {
  display: block;
  overflow: hidden;
}
.hero-line-reveal span {
  display: block;
  animation: lineReveal 1.1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
  transform: translateY(110%);
  opacity: 0;
}
@keyframes lineReveal {
  to { transform: translateY(0); opacity: 1; }
}

/* Insights grid */
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.insight-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.insight-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.12);
}
.insight-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.insight-card .card-body { padding: 2rem; }
.insight-card h3 { font-size: 22px; color: var(--c-bg); margin-bottom: 0.75rem; }
.insight-card p { font-size: 15px; color: #4a6278; margin-bottom: 1rem; }
.insight-card .read-more {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-bg);
}

/* Quote form */
.quote-form label { font-size: 14px; font-weight: 500; color: var(--c-bg); }
.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.75rem 1rem;
  border: 1px solid #c5d4e3;
  border-radius: 8px;
  font: inherit;
  font-size: 15px;
  background: #fafbfc;
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--c-accent);
  background: #fff;
}
.quote-form p { margin-bottom: 1.25rem; }
.quote-steps {
  margin: 1.5rem 0 0;
  padding-left: 1.25rem;
  color: #4a6278;
}
.quote-steps li { margin-bottom: 1.25rem; line-height: 1.6; }

.case-meta { margin-bottom: 1.5rem; }
.case-meta .service-tag { margin-bottom: 0; }

.content-block h3 {
  font-size: 22px;
  color: var(--c-bg);
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.content-block ul {
  color: #4a6278;
  margin: 1rem 0 1.5rem;
}
.content-block ul li { margin-bottom: 0.5rem; }

.two-col-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

/* Rich content layouts */
.section-lead,
.section-intro {
  font-size: 20px;
  line-height: 1.75;
  color: #3d5568;
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.content-block {
  max-width: 100%;
}
.content-block h2 {
  font-size: 28px;
  color: var(--c-bg);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid rgba(10, 37, 64, 0.08);
}
.content-block h3 {
  font-size: 20px;
  color: var(--c-bg);
  margin-top: 1.75rem;
}
.content-block p {
  font-size: 17px;
  line-height: 1.75;
  color: #4a6278;
  margin-bottom: 1.15rem;
}
.content-block ul {
  margin: 1rem 0 1.5rem 1.25rem;
}
.content-block li {
  margin-bottom: 0.65rem;
  line-height: 1.65;
  color: #4a6278;
}

.content-media {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
  margin: 2.5rem 0;
}
.content-media--reverse {
  grid-template-columns: 0.95fr 1.05fr;
}
.content-media--reverse .content-figure { order: 2; }
.content-media--reverse .content-aside { order: 1; }
.content-figure { margin: 0; }
.content-figure img {
  width: 100%;
  border-radius: 14px;
  display: block;
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.12);
}
.content-figure--wide {
  margin: 2.5rem 0;
}
.content-figure--wide img { max-height: 480px; object-fit: cover; }
.content-aside {
  padding: 1.75rem 1.5rem;
  background: linear-gradient(145deg, rgba(10, 37, 64, 0.04) 0%, rgba(142, 180, 212, 0.1) 100%);
  border-radius: 14px;
  border: 1px solid rgba(10, 37, 64, 0.08);
}
.content-aside h3 {
  font-size: 18px;
  color: var(--c-bg);
  margin: 0 0 0.75rem;
}
.content-aside p {
  font-size: 15px;
  line-height: 1.65;
  color: #4a6278;
  margin: 0;
}

.content-pullquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid var(--c-accent);
  background: rgba(142, 180, 212, 0.12);
  border-radius: 0 12px 12px 0;
  font-size: 19px;
  line-height: 1.6;
  color: var(--c-bg);
  font-style: italic;
}

.content-gallery-3 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.content-gallery-3 .content-figure:first-child {
  grid-row: 1 / span 2;
}
.content-gallery-3 img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  border-radius: 12px;
}

.insight-article .content-media { margin: 2rem 0; }
.legal-content h2 { font-size: 22px; margin-top: 2rem; }
.legal-content p { font-size: 16px; line-height: 1.7; color: #4a6278; }

.projects-spotlight {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  margin: 2.5rem 0 3rem;
}
.projects-spotlight img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.1);
}

/* FAQ accordion */
.page-faq {
  margin: 4rem 0 2rem;
  padding: 2.5rem 0 0;
  border-top: 1px solid rgba(10, 37, 64, 0.1);
}
.page-faq-title,
.page-testimonials-title,
.page-showcase h2 {
  font-size: 28px;
  color: var(--c-bg);
  margin-bottom: 1.75rem;
}
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid rgba(10, 37, 64, 0.1);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item[open] {
  border-color: var(--c-accent);
  box-shadow: 0 8px 28px rgba(10, 37, 64, 0.08);
}
.faq-item summary {
  cursor: pointer;
  padding: 1.15rem 1.5rem;
  font-size: 17px;
  font-weight: 500;
  color: var(--c-bg);
  list-style: none;
  position: relative;
  padding-right: 2.5rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--c-accent);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-answer {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid rgba(10, 37, 64, 0.06);
}
.faq-answer p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a6278;
  margin: 1rem 0 0;
}

/* Testimonials */
.page-testimonials {
  margin: 4rem 0;
  padding: 3rem;
  background: linear-gradient(145deg, var(--c-bg) 0%, #0d3254 100%);
  border-radius: 20px;
  color: #fff;
}
.page-testimonials-title { color: var(--c-accent-light); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.testimonial-card {
  margin: 0;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}
.testimonial-quote {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.92);
}
.testimonial-name {
  display: block;
  font-style: normal;
  font-weight: 500;
  color: var(--c-accent-light);
  font-size: 15px;
}
.testimonial-role {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.25rem;
}
.page-testimonials .testimonial-grid:only-child .testimonial-card:only-child,
.page-testimonials .testimonial-card:only-child {
  grid-column: 1 / -1;
  max-width: 720px;
}

/* Project showcase pair */
.page-showcase {
  margin: 3.5rem 0;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.showcase-card {
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(10, 37, 64, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  color: inherit;
}
.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(10, 37, 64, 0.14);
  color: inherit;
}
.showcase-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.showcase-card-body { padding: 1.5rem; }
.showcase-card-body h3 {
  font-size: 20px;
  color: var(--c-bg);
  margin: 0.5rem 0;
}

/* Compact enquiry form band */
.page-form-band {
  margin: 4rem 0 1rem;
  padding: 3rem;
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(10, 37, 64, 0.08);
  box-shadow: 0 12px 40px rgba(10, 37, 64, 0.06);
}
.form-band-inner {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}
.form-band-copy h2 {
  font-size: 26px;
  color: var(--c-bg);
  margin-bottom: 1rem;
}
.form-band-copy p { color: #4a6278; font-size: 16px; line-height: 1.65; }
.form-band-contact {
  margin-top: 1.5rem;
  font-size: 15px;
  color: #4a6278;
}
.quote-form--compact p { margin-bottom: 1rem; }
.quote-form--compact .btn { margin-top: 0.5rem; }

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .page-banner .wrap,
  .page-banner-inner,
  .page-banner--rich.page-banner-img,
  .page-banner-shine,
  .page-banner-eyebrow-dot,
  .page-banner-scroll-mouse span {
    animation: none !important;
    opacity: 1;
    transform: none;
    transition: none;
  }
}
