/* ============================================================
   OMRVA — 2026 Redesign
   Loaded AFTER style.css to override the template's wavy defaults.
   Scope is intentionally broad: we WANT these to win the cascade
   on every page. Section-level rebuilds can add more specific
   classes (prefixed with .rd-) on top as pages migrate.
   ============================================================ */

:root {
  /* Palette — brand blue stays; deeper navy + neutrals added for depth */
  --rd-blue: #18adfe;
  --rd-blue-hover: #0d8ecf;
  --rd-blue-deep: #0B3A66;       /* hero overlays, utility bar option */
  --rd-blue-ink: #063054;        /* headlines on light backgrounds */
  --rd-charcoal: #1A1D22;
  --rd-text: #2A2F36;
  --rd-muted: #5B6471;
  --rd-line: #E3E7EC;
  --rd-bg-soft: #F6F8FB;
  --rd-white: #ffffff;

  /* Type scale */
  --rd-font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --rd-h1-size: clamp(2.4rem, 4.2vw, 4.2rem);
  --rd-h2-size: clamp(1.9rem, 2.8vw, 2.8rem);
  --rd-h3-size: clamp(1.3rem, 1.6vw, 1.6rem);

  /* Shared */
  --rd-radius: 4px;
  --rd-ease: cubic-bezier(.22, .61, .36, 1);
}

/* ── Typography — Inter, bold display weights, tighter tracking ── */
body, .theme-1, .footer-div, .footer-nav-div, p, li, a, h1, h2, h3, h4, h5, h6 {
  font-family: var(--rd-font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body { color: var(--rd-text); }

h1, .hero-title, .hero-title-v-2 {
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  font-size: var(--rd-h1-size);
}
h2, .section-title, .section-title-v-2 {
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.1;
  font-size: var(--rd-h2-size);
  color: var(--rd-blue-ink);
}
h3, h4 { font-weight: 700; letter-spacing: -0.01em; }
p { line-height: 1.65; }

/* Kill the template's thin-weight section eyebrows — bolder is better. */
.section-title span, .section-title-v-2 span,
.sub-section, .sub-section-v-2 {
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--rd-blue);
}

/* ── Color lock — flatten gradients to the primary blue ──
   Do NOT paint .theme-1 or .hero-area-v-2 here: .theme-1 is reused on
   header/footer/section wrappers, and painting it white hides nested
   content. .hero-area-v-2 houses the home-page <video> background,
   which a solid background-color would visually sit in front of on
   some layouts when the video element isn't stretched to cover. */
.bg-blue { background-color: var(--rd-blue-deep); }
.bg-soft { background-color: var(--rd-bg-soft); }

/* Links stay blue, but underline on hover instead of swipe */
a { color: var(--rd-blue); transition: color .15s var(--rd-ease); }
a:hover { color: var(--rd-blue-hover); }

/* ── Buttons — flat, bold, predictable ── */
.button, .hero-button, .form-button, .contact-button, .button-light, .button-dark, .button-black {
  display: inline-block;
  padding: 14px 28px;
  font-weight: 700;
  letter-spacing: .02em;
  font-size: .95rem;
  line-height: 1;
  border-radius: var(--rd-radius);
  border: 2px solid transparent;
  text-transform: none;
  transition: background-color .18s var(--rd-ease), color .18s var(--rd-ease),
              border-color .18s var(--rd-ease), transform .18s var(--rd-ease),
              box-shadow .18s var(--rd-ease);
  box-shadow: none;
  position: relative;
  overflow: visible;
}
.button:before, .hero-button:before, .form-button:before { display: none !important; }

/* Primary — solid brand blue */
.button-primary, .button-light, .hero-button, .contact-button, .form-button {
  background-color: var(--rd-blue) !important;
  color: var(--rd-white) !important;
  border-color: var(--rd-blue) !important;
}
.button-primary:hover, .button-light:hover, .hero-button:hover,
.contact-button:hover, .form-button:hover {
  background-color: var(--rd-blue-hover) !important;
  border-color: var(--rd-blue-hover) !important;
  color: var(--rd-white) !important;
  box-shadow: 0 6px 18px rgba(24, 173, 254, 0.28);
  transform: translateY(-1px);
}

/* Secondary outline — white bg, blue border+text, fills on hover */
.button-outline, .button-dark {
  background-color: transparent !important;
  color: var(--rd-blue) !important;
  border-color: var(--rd-blue) !important;
}
.button-outline:hover, .button-dark:hover {
  background-color: var(--rd-blue) !important;
  color: var(--rd-white) !important;
  border-color: var(--rd-blue) !important;
  transform: translateY(-1px);
}

/* Ghost (for hero overlay contexts — white text + thin border) */
.button-ghost {
  background-color: transparent !important;
  color: var(--rd-white) !important;
  border-color: rgba(255,255,255,.7) !important;
}
.button-ghost:hover {
  background-color: var(--rd-white) !important;
  color: var(--rd-blue-ink) !important;
  border-color: var(--rd-white) !important;
}

/* ── Utility bar (top of page, above main nav) ──
   Template's <header> is position:absolute; top:0, so it sits on top of
   the flow. We pin the utility bar to the page top and push the header
   down by the bar's height. --rd-util-h is the shared value so both
   sides stay in sync at each breakpoint. */
:root { --rd-util-h: 38px; }
@media (max-width: 640px) { :root { --rd-util-h: 32px; } }

.rd-utility-bar {
  background-color: var(--rd-blue-deep);
  color: var(--rd-white);
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .01em;
  height: var(--rd-util-h);
  display: flex;
  align-items: center;
  line-height: 1.4;
  position: relative;
  z-index: 10000;
}
/* Push the template's absolutely-positioned header down so it sits below
   the utility bar instead of overlapping it. */
body > header, body > header.theme-1 { top: var(--rd-util-h) !important; }
/* Hero fills 100vh via template CSS — give it back the utility-bar space
   so content doesn't overflow below the fold. */
.hero-area-v-2 { padding-top: var(--rd-util-h); }
.rd-utility-bar .rd-util-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
  width: 100%;
}
.rd-utility-bar .rd-util-left,
.rd-utility-bar .rd-util-right {
  display: flex;
  align-items: center;
  gap: 18px;
}
.rd-utility-bar a {
  color: var(--rd-white);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .15s var(--rd-ease);
}
.rd-utility-bar a:hover { color: var(--rd-white); opacity: .82; }
.rd-utility-bar i { margin-right: 7px; opacity: .9; }
.rd-utility-bar .rd-util-pipe { opacity: .35; padding: 0 4px; }

@media (max-width: 640px) {
  .rd-utility-bar { font-size: .8rem; padding: 6px 0; }
  .rd-utility-bar .rd-util-inner { padding: 0 14px; gap: 8px; }
  .rd-utility-bar .rd-util-left { display: none; }
  .rd-utility-bar .rd-util-right { width: 100%; justify-content: center; }
}

/* ── Kill the wavy SVG dividers — hard edges look more deliberate ── */
.footer-shape,
.hero-area-v-2 .shape-bg,
.hero-area-v-2 .shape-svg,
.wave-shape, .section-shape,
svg.shape-wave {
  display: none !important;
}
/* Some dividers are inline backgrounds on sections — neutralize. */
section[class*="div-padding"]::before,
section[class*="div-padding"]::after {
  display: none !important;
}

/* ── Section rhythm — straight edges, consistent vertical rhythm ── */
.rd-section { padding: 88px 0; }
.rd-section--tight { padding: 56px 0; }
.rd-section--soft { background: var(--rd-bg-soft); }
.rd-section--ink  { background: var(--rd-charcoal); color: var(--rd-white); }
.rd-section--ink  h1, .rd-section--ink h2, .rd-section--ink h3 { color: var(--rd-white); }
.rd-section--blue { background: var(--rd-blue); color: var(--rd-white); }
.rd-section--blue h1, .rd-section--blue h2 { color: var(--rd-white); }

/* ── Hero overlay tweak — deeper, more cinematic ── */
.hero-area-v-2.dark-overlay-3::before,
.hero-area-v-2 .dark-overlay::before {
  background: linear-gradient(180deg, rgba(6,24,48,.72) 0%, rgba(6,24,48,.55) 100%) !important;
}

/* ── Nav — cleaner, less frosted-template energy ── */
.header__lower { background-color: var(--rd-white); box-shadow: 0 1px 0 var(--rd-line); }
/* Logo asset is the white-on-transparent variant designed for a dark
   header bg. Now that the nav is white, invert to near-black so it's
   actually visible. brightness(0) maps all opaque pixels to solid black;
   then a tiny invert keeps anti-aliased edges crisp. */
.header__lower .logo img { filter: brightness(0); }
.header__lower .navbar-dark .navbar-nav .nav-link {
  color: var(--rd-charcoal) !important;
  font-weight: 600;
  letter-spacing: .01em;
  padding: 14px 14px !important;
}
.header__lower .navbar-dark .navbar-nav .nav-link:hover,
.header__lower .navbar-dark .navbar-nav .nav-item.active .nav-link {
  color: var(--rd-blue) !important;
}
.header__lower .navbar-dark .navbar-nav .nav-link i { color: var(--rd-blue); }

/* ── Cards (services, features) — flat, subtle border, meaningful hover ── */
.rd-card {
  background: var(--rd-white);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  overflow: hidden;
  transition: transform .2s var(--rd-ease), box-shadow .2s var(--rd-ease),
              border-color .2s var(--rd-ease);
}
.rd-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(11, 58, 102, 0.08);
  border-color: var(--rd-blue);
}
.rd-card__img { aspect-ratio: 4/3; object-fit: cover; width: 100%; display: block; }
.rd-card__body { padding: 22px 24px 26px; }
.rd-card__title { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; color: var(--rd-blue-ink); }
.rd-card__text { color: var(--rd-muted); font-size: .95rem; margin: 0; }

/* ── Stats strip ── */
.rd-stats {
  background: var(--rd-blue-deep);
  color: var(--rd-white);
  padding: 64px 0;
}
.rd-stats .rd-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.rd-stat-num {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--rd-white);
}
.rd-stat-label {
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.82);
}

/* ── Side-by-side image + text block ── */
.rd-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.rd-split--reverse { direction: rtl; }
.rd-split--reverse > * { direction: ltr; }
.rd-split__img { width: 100%; border-radius: var(--rd-radius); display: block; object-fit: cover; }
.rd-split__eyebrow {
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--rd-blue);
  margin-bottom: 12px;
  display: block;
}
.rd-split__title { margin-bottom: 18px; }
.rd-split__text { color: var(--rd-muted); font-size: 1.02rem; margin-bottom: 22px; }
@media (max-width: 900px) {
  .rd-split { grid-template-columns: 1fr; gap: 32px; }
  .rd-split--reverse { direction: ltr; }
}

/* ── Footer polish — flat background, no wavy top ── */
.footer-div { background: var(--rd-charcoal) !important; }
.footer-div::before, .footer-div::after { display: none !important; }
.footer-div h4 { color: var(--rd-white); font-weight: 700; letter-spacing: .01em; margin-bottom: 18px; }
.footer-div p, .footer-div li, .footer-div address { color: rgba(255,255,255,.75); }
.footer-div a { color: rgba(255,255,255,.82); }
.footer-div a:hover { color: var(--rd-blue); }
.footer-div .copyright-div { border-top: 1px solid rgba(255,255,255,.08); }

/* ── Calm down the template's WOW/animate chaos on rebuilt sections ── */
.rd-section .wow, .rd-section .animate__animated {
  animation: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* ── Hero content (overrides template's .hero-area-left + .hero-title-v-2
      typography without rewiring the markup) ── */
.rd-hero-content {
  max-width: 760px;
  color: var(--rd-white);
  position: relative;
  z-index: 2;
}
.rd-hero-eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--rd-blue);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 22px;
}
.rd-hero-title {
  font-weight: 800;
  font-size: clamp(2.4rem, 4.6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.022em;
  color: var(--rd-white);
  margin-bottom: 22px;
}
.rd-hero-title span { color: var(--rd-blue); }
.rd-hero-sub {
  font-size: clamp(1rem, 1.2vw, 1.14rem);
  line-height: 1.6;
  color: rgba(255,255,255,.86);
  margin-bottom: 30px;
  max-width: 620px;
}
.rd-hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.rd-hero-ctas .button { padding: 16px 32px; font-size: 1rem; }

/* Deeper overlay on the hero video for legibility */
.hero-area-v-2.dark-overlay-3::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(6,24,48,.82) 0%, rgba(6,24,48,.55) 55%, rgba(6,24,48,.4) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero-area-v-2 .container { position: relative; z-index: 2; }

/* ── Services teaser grid ── */
.rd-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 40px auto 0;
  padding: 0 24px;
}
.rd-service-card {
  background: var(--rd-white);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s var(--rd-ease), box-shadow .22s var(--rd-ease), border-color .22s var(--rd-ease);
  text-decoration: none;
  color: inherit;
}
.rd-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(11, 58, 102, 0.12);
  border-color: var(--rd-blue);
  color: inherit;
}
.rd-service-card__img {
  aspect-ratio: 16 / 10;
  width: 100%;
  object-fit: cover;
  display: block;
  background: var(--rd-bg-soft);
}
.rd-service-card__body { padding: 24px 26px 28px; flex: 1; }
.rd-service-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rd-blue-ink);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.rd-service-card__text {
  font-size: .95rem;
  color: var(--rd-muted);
  line-height: 1.55;
  margin: 0;
}
.rd-service-card__cta {
  margin-top: 14px;
  color: var(--rd-blue);
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
}

/* ── Centered section heading block ── */
.rd-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 8px;
  padding: 0 24px;
}
.rd-heading__eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--rd-blue);
  margin-bottom: 10px;
}
.rd-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 2.8vw, 2.8rem);
}
.rd-heading p {
  color: var(--rd-muted);
  font-size: 1.04rem;
  max-width: 620px;
  margin: 0 auto;
}

/* ── Bullet list for split sections ── */
.rd-bullet-list { list-style: none; padding: 0; margin: 0 0 28px; }
.rd-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  color: var(--rd-text);
  font-weight: 500;
}
.rd-bullet-list li::before {
  content: "";
  width: 22px; height: 22px;
  background: var(--rd-blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.5 10.8L3.7 8l-1 1 3.8 3.8L13.3 5l-1-1z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 14px 14px;
}

/* ── Final CTA band ── */
.rd-cta-band {
  background: var(--rd-blue-deep);
  padding: 72px 24px;
  text-align: center;
  color: var(--rd-white);
  position: relative;
  overflow: hidden;
}
.rd-cta-band__title {
  font-weight: 800;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--rd-white);
}
.rd-cta-band__sub {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  margin: 0 auto 28px;
  max-width: 640px;
}
.rd-cta-band .rd-cta-band__actions { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* Stats grid uses existing .rd-stats / .rd-stat-num */

/* ── Page hero banner (breadcrumb-div on About/Services/Careers/Contact) ──
   Overrides the template's tall generic banner with a focused, typographic
   page title area. Background image provided inline by the page template. */
.rd-breadcrumb {
  position: relative;
  min-height: clamp(280px, 38vh, 420px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 96px 24px 72px;
  color: var(--rd-white);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.rd-breadcrumb::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(6,24,48,.86) 0%, rgba(6,24,48,.62) 60%, rgba(6,24,48,.5) 100%);
  pointer-events: none;
}
.rd-breadcrumb__inner { position: relative; z-index: 2; max-width: 820px; }
.rd-breadcrumb__eyebrow {
  display: inline-block;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .82rem;
  color: var(--rd-blue);
  margin-bottom: 14px;
}
.rd-breadcrumb__title {
  font-weight: 800;
  font-size: clamp(2.2rem, 4.4vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--rd-white);
  margin: 0 0 14px;
}
.rd-breadcrumb__sub {
  color: rgba(255,255,255,.82);
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  line-height: 1.55;
  margin: 0 auto;
  max-width: 640px;
}

/* ── Contact info cards (3-up) ── */
.rd-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.rd-info-card {
  background: var(--rd-white);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform .18s var(--rd-ease), box-shadow .18s var(--rd-ease), border-color .18s var(--rd-ease);
}
.rd-info-card:hover {
  transform: translateY(-3px);
  border-color: var(--rd-blue);
  box-shadow: 0 10px 28px rgba(11, 58, 102, .09);
}
.rd-info-card__icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(24,173,254,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--rd-blue);
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.rd-info-card__label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rd-muted);
  margin-bottom: 8px;
}
.rd-info-card__value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--rd-blue-ink);
  margin: 0 0 14px;
  word-break: break-word;
}
.rd-info-card__action {
  display: inline-block;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--rd-blue);
  text-decoration: none;
}
.rd-info-card__action:hover { color: var(--rd-blue-hover); }

/* ── Form polish (for contact + careers) ── */
.rd-form { max-width: 620px; }
.rd-form h2 {
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  margin-bottom: 6px;
  color: var(--rd-blue-ink);
}
.rd-form__note {
  font-size: .82rem;
  color: var(--rd-muted);
  margin-bottom: 22px;
  line-height: 1.5;
}
.rd-form .form-floating { margin-bottom: 14px; }
.rd-form .form-control {
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  padding: 14px 16px;
  font-size: .98rem;
  background: var(--rd-white);
  transition: border-color .15s var(--rd-ease), box-shadow .15s var(--rd-ease);
}
.rd-form .form-control:focus {
  border-color: var(--rd-blue);
  box-shadow: 0 0 0 3px rgba(24,173,254,.18);
  outline: none;
}
.rd-form textarea.form-control { min-height: 140px; resize: vertical; }
.rd-form .form-floating > label { padding: 14px 16px; color: var(--rd-muted); }
.rd-form .btn, .rd-form button[type="submit"] {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--rd-radius);
  background: var(--rd-blue) !important;
  color: var(--rd-white) !important;
  border: 2px solid var(--rd-blue) !important;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: background-color .18s var(--rd-ease), transform .18s var(--rd-ease), box-shadow .18s var(--rd-ease);
  margin-top: 8px;
}
.rd-form .btn:hover, .rd-form button[type="submit"]:hover {
  background: var(--rd-blue-hover) !important;
  border-color: var(--rd-blue-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(24,173,254,.24);
}

/* ── Requirements / info block for careers right column ── */
.rd-req {
  background: var(--rd-bg-soft);
  border: 1px solid var(--rd-line);
  border-radius: var(--rd-radius);
  padding: 32px 28px;
}
.rd-req h3 {
  font-size: 1.3rem;
  margin: 0 0 18px;
  color: var(--rd-blue-ink);
}
.rd-req ul { list-style: none; padding: 0; margin: 0; }
.rd-req li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--rd-line);
  font-size: .96rem;
  color: var(--rd-text);
  line-height: 1.55;
}
.rd-req li:last-child { border-bottom: none; }
.rd-req li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  width: 16px; height: 16px;
  background: var(--rd-blue);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path fill='white' d='M6.5 10.8L3.7 8l-1 1 3.8 3.8L13.3 5l-1-1z'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

/* Split grid: allow form side (or map side) to grow wider on large screens */
.rd-form-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  align-items: start;
}
@media (max-width: 900px) {
  .rd-form-split { grid-template-columns: 1fr; gap: 32px; }
}
.rd-map-embed {
  width: 100%;
  aspect-ratio: 4/3;
  border: 0;
  border-radius: var(--rd-radius);
  overflow: hidden;
  display: block;
}

/* ── Services page cards — taller with description + icon/image ── */
.rd-services-full {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Variant: full-bleed background photo with overlay + text pinned at the
   bottom. For the services page, where the stock portrait photos
   (amb.png, wheelchair.png, stretch.png) read best as a whole card. */
.rd-service-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 3 / 4;
  border-radius: var(--rd-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--rd-white);
  background-size: cover;
  background-position: center top;
  transition: transform .22s var(--rd-ease), box-shadow .22s var(--rd-ease);
  isolation: isolate;
}
.rd-service-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,24,48,0) 35%, rgba(6,24,48,.92) 100%);
  transition: background .25s var(--rd-ease);
  z-index: 1;
}
.rd-service-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(11, 58, 102, .22);
  color: var(--rd-white);
}
.rd-service-hero:hover::before {
  background: linear-gradient(180deg, rgba(24,173,254,.25) 0%, rgba(6,24,48,.95) 100%);
}
.rd-service-hero__body {
  position: relative;
  z-index: 2;
  padding: 28px 28px 26px;
}
.rd-service-hero__title {
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.015em;
  margin: 0 0 8px;
  color: var(--rd-white);
}
.rd-service-hero__text {
  font-size: .94rem;
  line-height: 1.5;
  color: rgba(255,255,255,.9);
  margin: 0 0 12px;
}
.rd-service-hero__cta {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: .9rem;
  letter-spacing: .02em;
  color: var(--rd-blue);
}

/* ── Team collage (About page) — main photo + inset secondary photo ── */
.rd-team-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4;
  max-width: 100%;
}
.rd-team-collage__main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--rd-radius);
  display: block;
}
.rd-team-collage__aside {
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 48%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--rd-radius);
  box-shadow: 0 18px 40px rgba(11, 58, 102, .22);
  border: 4px solid var(--rd-white);
}
@media (max-width: 900px) {
  .rd-team-collage__aside {
    right: 0;
    bottom: -12px;
    width: 40%;
  }
}

/* ── Map frame ──
   map.png is a washed-out light-gray line art that's invisible on any
   light background. Flip it: dark-blue card backdrop, map pixels inverted
   so the continents read as light lines on dark — same idea as a
   satellite / dark-mode map tile. */
.rd-map-frame {
  background: var(--rd-blue-deep);
  border: 1px solid var(--rd-blue-deep);
  border-radius: var(--rd-radius);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(11, 58, 102, .14);
}
.rd-map-frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: invert(1) hue-rotate(180deg) contrast(1.1) brightness(1.05);
}


