:root {
  --navy: #12284c;
  --navy-2: #1b3f73;
  --red: #a51f2f;
  --gold: #b88a35;
  --ink: #1d2530;
  --muted: #647084;
  --line: #d9dee8;
  --paper: #ffffff;
  --soft: #f4f6f9;
  --soft-warm: #f8f4ec;
  --shadow: 0 20px 45px rgba(18, 40, 76, 0.12);
  --shadow-hover: 0 24px 54px rgba(18, 40, 76, 0.18);
  --shadow-press: 0 10px 22px rgba(18, 40, 76, 0.12);
  --ease-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    "PingFang SC",
    "Microsoft YaHei",
    "Noto Sans CJK SC",
    Arial,
    sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

button {
  user-select: none;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(165, 31, 47, 0.36);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
  padding: 0 24px;
  color: #fff;
  background: rgba(10, 24, 48, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.site-header.scrolled,
.site-header.menu-open {
  color: #fff;
  background: rgba(18, 40, 76, 0.96);
  box-shadow: 0 14px 34px rgba(18, 40, 76, 0.18);
}

.site-header.scrolled .desktop-nav a.active,
.site-header.menu-open .desktop-nav a.active {
  color: #f2c567;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 205px;
  transition:
    opacity 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.brand:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.brand:active {
  transform: translateY(0) scale(0.99);
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--red), #7d1724);
  font-weight: 800;
}

.brand strong {
  display: block;
  white-space: nowrap;
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 3px;
  color: currentColor;
  font-size: 11px;
  opacity: 0.7;
}

.desktop-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  gap: clamp(7px, 0.5vw, 12px);
  color: currentColor;
  font-size: clamp(14.5px, 0.86vw, 16px);
  white-space: nowrap;
}

.desktop-nav a {
  position: relative;
  opacity: 0.86;
  transition:
    color 0.18s var(--ease-smooth),
    opacity 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.desktop-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s var(--ease-smooth);
}

.desktop-nav a:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.desktop-nav a.active {
  color: var(--red);
  opacity: 1;
  font-weight: 800;
}

.header-cta,
.primary-button,
.secondary-button,
.icon-button,
.switcher-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
}

.header-cta,
.primary-button,
.secondary-button,
.secondary-outline-button,
.icon-button,
.switcher-button,
.section-contact-actions a,
.form-phone,
.site-footer .back-top {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition:
    transform 0.18s var(--ease-smooth),
    box-shadow 0.18s var(--ease-smooth),
    border-color 0.18s var(--ease-smooth),
    background-color 0.18s var(--ease-smooth),
    color 0.18s var(--ease-smooth),
    opacity 0.18s var(--ease-smooth);
}

.header-cta::after,
.primary-button::after,
.secondary-button::after,
.secondary-outline-button::after,
.switcher-button::after,
.section-contact-actions a::after,
.site-footer .back-top::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255, 255, 255, 0.28) 48%, transparent 58%);
  transform: translateX(-130%);
  transition: transform 0.38s var(--ease-smooth);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover,
.secondary-outline-button:hover,
.icon-button:hover,
.switcher-button:hover,
.section-contact-actions a:hover,
.form-phone:hover,
.site-footer .back-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-press);
}

.header-cta:hover::after,
.primary-button:hover::after,
.secondary-button:hover::after,
.secondary-outline-button:hover::after,
.switcher-button:hover::after,
.section-contact-actions a:hover::after,
.site-footer .back-top:hover::after {
  transform: translateX(130%);
}

.header-cta:active,
.primary-button:active,
.secondary-button:active,
.secondary-outline-button:active,
.icon-button:active,
.switcher-button:active,
.section-contact-actions a:active,
.form-phone:active,
.site-footer .back-top:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 6px 14px rgba(18, 40, 76, 0.12);
}

.header-cta {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 8px;
  color: #fff;
  background: var(--red);
  font-weight: 600;
}

.header-cta svg,
.primary-button svg,
.secondary-button svg,
.icon-button svg,
.switcher-button svg,
.site-footer svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.icon-button {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.14);
}

.icon-button:hover {
  background: rgba(255, 255, 255, 0.24);
}

.menu-toggle {
  display: none;
}

.mobile-header-actions {
  display: none;
  align-items: center;
  gap: 8px;
}

.mobile-home-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.14);
  font-size: 16px;
  font-weight: 800;
  transition:
    transform 0.18s var(--ease-smooth),
    box-shadow 0.18s var(--ease-smooth),
    border-color 0.18s var(--ease-smooth),
    background-color 0.18s var(--ease-smooth),
    color 0.18s var(--ease-smooth);
}

.site-header.scrolled .mobile-home-link,
.site-header.menu-open .mobile-home-link {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.mobile-home-link:hover {
  border-color: rgba(165, 31, 47, 0.28);
  color: var(--red);
  box-shadow: var(--shadow-press);
  transform: translateY(-2px);
}

.mobile-home-link:active {
  transform: translateY(0) scale(0.98);
}

.mobile-nav {
  position: fixed;
  z-index: 18;
  top: 76px;
  left: 0;
  right: 0;
  display: none;
  padding: 12px 22px 22px;
  background: #fff;
  box-shadow: 0 18px 35px rgba(18, 40, 76, 0.12);
}

.mobile-nav.open {
  display: grid;
}

.mobile-nav a {
  position: relative;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-size: 16px;
  font-weight: 700;
  transition:
    color 0.18s var(--ease-smooth),
    padding-left 0.18s var(--ease-smooth),
    background-color 0.18s var(--ease-smooth);
}

.mobile-nav a:hover,
.mobile-nav a:active,
.mobile-nav a.active {
  padding-left: 8px;
  color: var(--red);
  background: rgba(165, 31, 47, 0.04);
}

.mobile-nav a.active::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 0;
  width: 3px;
  content: "";
  border-radius: 999px;
  background: var(--red);
}

.hero {
  position: relative;
  min-height: 86svh;
  overflow: hidden;
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 50, 0.88) 0%, rgba(18, 40, 76, 0.68) 48%, rgba(18, 40, 76, 0.18) 100%),
    linear-gradient(0deg, rgba(18, 40, 76, 0.3), rgba(18, 40, 76, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1120px, calc(100% - 48px));
  min-height: 86svh;
  margin: 0 auto;
  padding: 116px 0 56px;
}

.eyebrow,
.section-kicker,
.service-label {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  color: var(--gold);
  font-size: 14px;
  font-weight: 700;
}

.hero h1 {
  width: min(900px, 100%);
  margin: 18px 0 24px;
  font-size: 64px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-copy {
  width: min(760px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 19px;
}

.hero-trust-line {
  width: fit-content;
  max-width: min(780px, 100%);
  margin: 18px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.55;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.primary-button,
.secondary-button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
}

.primary-button {
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 26px rgba(165, 31, 47, 0.26);
}

.header-cta:hover,
.primary-button:hover {
  background: #8d1928;
  box-shadow: 0 18px 32px rgba(165, 31, 47, 0.28);
}

.secondary-button {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.48);
}

.capability-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 44px;
}

.capability-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  transition:
    background-color 0.18s var(--ease-smooth),
    border-color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.capability-row span:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 38px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2,
.assurance-copy h2,
.contact-copy h2 {
  margin: 10px 0 14px;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.24;
  letter-spacing: 0;
}

.section-heading p,
.assurance-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.audience-card,
.resource-card,
.solution-card,
.case-card,
.assurance-grid article,
.team-intro-card,
.team-capability-grid article,
.team-service-list article,
.contact-detail,
.process-list li,
.section-contact-cta,
.contact-form-card,
.team-hero-photo {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition:
    transform 0.2s var(--ease-smooth),
    box-shadow 0.2s var(--ease-smooth),
    border-color 0.2s var(--ease-smooth),
    background-color 0.2s var(--ease-smooth),
    color 0.2s var(--ease-smooth);
}

.audience-card:hover,
.resource-card:hover,
.case-card:hover,
.assurance-grid article:hover,
.team-intro-card:hover,
.team-capability-grid article:hover,
.team-service-list article:hover,
.contact-detail:hover,
.process-list li:hover,
.section-contact-cta:hover,
.contact-form-card:hover,
.team-hero-photo:hover {
  border-color: rgba(165, 31, 47, 0.26);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.audience-card:active,
.resource-card:active,
.case-card:active,
.assurance-grid article:active,
.team-intro-card:active,
.team-capability-grid article:active,
.team-service-list article:active,
.contact-detail:active,
.process-list li:active,
.section-contact-cta:active,
.team-hero-photo:active {
  box-shadow: var(--shadow-press);
  transform: translateY(-1px) scale(0.99);
}

.audience-card {
  min-height: 210px;
  padding: 26px;
}

.audience-card svg,
.resource-card svg,
.assurance-grid svg,
.team-intro-card svg,
.team-service-list svg,
.contact-detail svg {
  width: 30px;
  height: 30px;
  color: var(--red);
  transition:
    color 0.2s var(--ease-smooth),
    transform 0.2s var(--ease-smooth);
}

.audience-card:hover svg,
.resource-card:hover svg,
.assurance-grid article:hover svg,
.team-intro-card:hover svg,
.team-service-list article:hover svg,
.contact-detail:hover svg {
  color: var(--gold);
  transform: translateY(-2px) scale(1.06);
}

.audience-card h3,
.resource-card h3,
.solution-card h3,
.case-card h3,
.assurance-grid h3,
.process-list h3 {
  margin: 18px 0 8px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
  transition: color 0.18s var(--ease-smooth);
}

.audience-card:hover h3,
.resource-card:hover h3,
.case-card:hover h3,
.assurance-grid article:hover h3,
.process-list li:hover h3,
.team-intro-card:hover h3,
.team-capability-grid article:hover h3,
.team-service-list article:hover h3 {
  color: var(--red);
}

.audience-card p,
.resource-card p,
.solution-card p,
.case-card p,
.assurance-grid p,
.process-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.services-section {
  width: 100%;
  padding: 92px max(24px, calc((100% - 1120px) / 2));
  background: var(--soft);
}

.service-switcher {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  width: min(900px, 100%);
  margin-bottom: 24px;
}

.switcher-button {
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-weight: 700;
}

.switcher-button:hover {
  border-color: rgba(165, 31, 47, 0.28);
  color: var(--red);
  background: #fff;
}

.switcher-button.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.switcher-button.active:hover {
  color: #fff;
  background: var(--navy-2);
  border-color: var(--navy-2);
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 470px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  transition:
    box-shadow 0.22s var(--ease-smooth),
    transform 0.22s var(--ease-smooth);
}

.service-detail:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.service-copy {
  padding: 48px;
  animation: contentRise 0.28s var(--ease-smooth);
}

.service-copy h3 {
  margin: 12px 0 16px;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.28;
}

.service-copy p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 17px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink);
  transition:
    color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.check-list li:hover {
  color: var(--navy);
  transform: translateX(4px);
}

.check-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: var(--red);
}

.service-visual {
  min-height: 470px;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.service-detail:hover .service-visual img {
  transform: scale(1.035);
}

.resources-section {
  padding-top: 86px;
  padding-bottom: 86px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.resource-card {
  display: block;
  min-height: 210px;
  padding: 26px;
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.section-contact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 18px 20px;
  border: 1px solid rgba(165, 31, 47, 0.18);
  border-radius: 8px;
  background: rgba(165, 31, 47, 0.05);
}

.section-contact-cta strong {
  display: block;
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.section-contact-cta p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.section-contact-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.section-contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-weight: 800;
}

.section-contact-actions a:hover {
  border-color: rgba(165, 31, 47, 0.3);
  color: var(--red);
}

.section-contact-actions a.phone-action {
  color: #fff;
  background: var(--red);
  border-color: var(--red);
}

.section-contact-actions a.phone-action:hover {
  color: #fff;
  background: #8d1928;
  border-color: #8d1928;
}

.section-contact-actions svg {
  width: 18px;
  height: 18px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.solution-card {
  position: relative;
  display: block;
  min-height: 220px;
  padding: 26px;
  overflow: hidden;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    transform 0.18s ease,
    background-color 0.18s ease;
}

.solution-card:nth-child(n + 4) {
  background: #f3f6fa;
}

.solution-card::after {
  position: absolute;
  inset: 12px;
  content: "";
  pointer-events: none;
  border: 1px solid transparent;
  border-radius: 6px;
  opacity: 0;
  transform: scale(0.98);
  transition:
    border-color 0.18s ease,
    opacity 0.18s ease,
    transform 0.18s ease;
}

.solution-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  height: 28px;
  border-radius: 999px;
  background: rgba(184, 138, 53, 0.1);
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  transition:
    background-color 0.18s ease,
    color 0.18s ease;
}

.solution-card:hover {
  border-color: rgba(165, 31, 47, 0.34);
  background: #fff;
  box-shadow: 0 18px 36px rgba(18, 40, 76, 0.12);
  transform: translateY(-4px);
}

.solution-card:hover::after {
  border-color: rgba(165, 31, 47, 0.3);
  opacity: 1;
  transform: scale(1);
}

.solution-card:hover span {
  color: #fff;
  background: var(--red);
}

.solution-card:hover h3 {
  color: var(--red);
}

.solution-card:focus-within {
  border-color: rgba(165, 31, 47, 0.34);
  box-shadow: 0 18px 36px rgba(18, 40, 76, 0.12);
}

.solution-card:focus-within::after {
  border-color: rgba(165, 31, 47, 0.3);
  opacity: 1;
  transform: scale(1);
}

@keyframes contentRise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pressFeedback {
  0% {
    filter: brightness(1);
  }
  45% {
    filter: brightness(0.96);
    transform: translateY(1px) scale(0.985);
  }
  100% {
    filter: brightness(1);
  }
}

.is-clicked {
  animation: pressFeedback 0.22s var(--ease-smooth);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .solution-card:hover,
  .service-detail:hover,
  .image-band figure:hover img,
  .team-hero-photo:hover img {
    transform: none !important;
  }
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--navy);
}

.image-band figure {
  position: relative;
  min-height: 350px;
  margin: 0;
  overflow: hidden;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.image-band figure:hover img {
  transform: scale(1.04);
}

.image-band figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  max-width: calc(100% - 48px);
  padding: 8px 12px;
  border-radius: 8px;
  color: #fff;
  background: rgba(18, 40, 76, 0.72);
  font-size: 15px;
  transition:
    background-color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.image-band figure:hover figcaption {
  background: rgba(165, 31, 47, 0.84);
  transform: translateY(-2px);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-list li {
  position: relative;
  min-height: 230px;
  padding: 24px 20px;
  border-top: 4px solid var(--red);
  background: var(--soft);
}

.process-list li:hover {
  border-top-color: var(--gold);
  background: #fff;
}

.process-list span {
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  transition: color 0.18s var(--ease-smooth);
}

.process-list li:hover span {
  color: var(--red);
}

.assurance-section {
  background:
    linear-gradient(90deg, rgba(18, 40, 76, 0.94), rgba(18, 40, 76, 0.84)),
    url("./assets/service-control-room.jpg") center / cover;
  color: #fff;
}

.assurance-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.assurance-inner > .section-contact-cta {
  grid-column: 1 / -1;
  margin-top: 0;
}

.assurance-copy h2,
.assurance-copy p {
  color: #fff;
}

.section-contact-cta.on-dark {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
}

.section-contact-cta.on-dark strong,
.section-contact-cta.on-dark p {
  color: #fff;
}

.assurance-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.assurance-grid article {
  min-height: 210px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
}

.case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.case-card {
  min-height: 420px;
  padding: 26px;
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.case-card > span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(165, 31, 47, 0.08);
  font-size: 13px;
  font-weight: 700;
  transition:
    color 0.18s var(--ease-smooth),
    background-color 0.18s var(--ease-smooth);
}

.case-card:hover > span {
  color: #fff;
  background: var(--red);
}

.case-card dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.case-card dl div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  transition:
    border-color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.case-card dl div:hover {
  border-color: rgba(165, 31, 47, 0.28);
  transform: translateX(4px);
}

.case-card dt {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.case-card dd {
  margin: 2px 0 0;
  color: var(--ink);
  line-height: 1.55;
}

table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--line);
  border-spacing: 0;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(18, 40, 76, 0.08);
  transition:
    border-color 0.2s var(--ease-smooth),
    box-shadow 0.2s var(--ease-smooth),
    transform 0.2s var(--ease-smooth);
}

table:hover {
  border-color: rgba(165, 31, 47, 0.24);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  transition:
    background-color 0.18s var(--ease-smooth),
    color 0.18s var(--ease-smooth);
}

thead th {
  color: var(--navy);
  background: #f3f6fa;
  font-weight: 800;
}

tbody tr {
  transition:
    background-color 0.18s var(--ease-smooth),
    box-shadow 0.18s var(--ease-smooth);
}

tbody tr:hover {
  background: rgba(165, 31, 47, 0.04);
  box-shadow: inset 4px 0 0 var(--red);
}

tbody tr:active {
  background: rgba(184, 138, 53, 0.1);
}

tbody tr:last-child td {
  border-bottom: 0;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.contact-detail.highlight {
  border-color: rgba(165, 31, 47, 0.22);
  background: rgba(165, 31, 47, 0.06);
}

.contact-detail svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 3px;
  color: var(--red);
}

.contact-detail span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.contact-detail strong,
.contact-detail a {
  display: block;
  margin-top: 2px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
}

.contact-form-card {
  align-self: start;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 45px rgba(18, 40, 76, 0.1);
}

.form-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 28px 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
}

.form-eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.form-card-head h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.25;
}

.form-card-head p {
  max-width: 430px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.form-badge {
  flex: 0 0 auto;
  width: 118px;
  padding: 14px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  text-align: center;
}

.form-badge strong {
  display: block;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
}

.form-badge span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  line-height: 1.35;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px 28px 28px;
  background: linear-gradient(180deg, #fff 0%, #f7f9fc 100%);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label:focus-within span {
  color: var(--red);
}

.contact-form label.full {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.18s var(--ease-smooth);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #cfd6e2;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition:
    border-color 0.16s ease,
    box-shadow 0.16s ease,
    transform 0.16s var(--ease-smooth),
    background-color 0.16s var(--ease-smooth);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(18, 40, 76, 0.35);
  box-shadow: 0 8px 20px rgba(18, 40, 76, 0.08);
}

.contact-form input,
.contact-form select {
  height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(165, 31, 47, 0.6);
  box-shadow: 0 0 0 3px rgba(165, 31, 47, 0.1);
  transform: translateY(-1px);
}

.form-footer {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  padding-top: 4px;
}

.form-button {
  width: fit-content;
}

.form-button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.form-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: -2px 0 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.form-status.success {
  color: #18633a;
}

.form-status.error {
  color: var(--red);
}

.form-submitted-panel {
  position: relative;
  display: grid;
  justify-items: center;
  min-height: 330px;
  padding: 44px 34px 36px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fff 0%, #f6f8fb 100%),
    #fff;
  text-align: center;
  animation: submittedPanelIn 0.22s var(--ease-smooth);
}

.form-submitted-panel::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  background: var(--red);
}

.form-submitted-panel::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -92px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(165, 31, 47, 0.12);
  border-radius: 50%;
  background: rgba(165, 31, 47, 0.04);
}

.form-submitted-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 50%;
  border: 1px solid rgba(24, 99, 58, 0.22);
  background: #eef8f2;
  color: #18633a;
}

.form-submitted-icon svg {
  width: 22px;
  height: 22px;
}

.form-submitted-panel h4 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.25;
}

.form-submitted-panel p {
  max-width: 460px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.form-submitted-panel p strong {
  color: var(--red);
  white-space: nowrap;
}

.form-submitted-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px auto 0;
}

.form-submitted-actions .primary-button {
  min-height: 44px;
  padding: 0 20px;
  box-shadow: none;
}

.form-submitted-note {
  display: block;
  margin-top: 18px;
  color: #71819a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.55;
}

@keyframes submittedPanelIn {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 520px) {
  .form-submitted-panel {
    min-height: 300px;
    padding: 36px 22px 30px;
  }
}

.faq-page {
  background: #fff;
}

.faq-hero {
  position: relative;
  min-height: 70svh;
  overflow: hidden;
  color: #fff;
}

.faq-hero-media,
.faq-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.faq-hero-media {
  object-fit: cover;
}

.faq-hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 50, 0.92) 0%, rgba(18, 40, 76, 0.76) 48%, rgba(18, 40, 76, 0.28) 100%),
    linear-gradient(0deg, rgba(18, 40, 76, 0.22), rgba(18, 40, 76, 0.04));
}

.faq-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1120px, calc(100% - 48px));
  min-height: 70svh;
  margin: 0 auto;
  padding: 126px 0 58px;
}

.faq-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.faq-breadcrumb a {
  color: var(--gold);
}

.faq-hero h1 {
  width: min(860px, 100%);
  margin: 14px 0 18px;
  font-size: 58px;
  line-height: 1.12;
}

.faq-hero p {
  width: min(720px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.75;
}

.faq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.faq-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.faq-hero-tags a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 800;
  transition:
    background-color 0.18s var(--ease-smooth),
    border-color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.faq-hero-tags a:hover {
  border-color: rgba(242, 197, 103, 0.58);
  background: rgba(242, 197, 103, 0.16);
  transform: translateY(-2px);
}

.faq-summary {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, calc(100% - 48px));
  margin: -36px auto 0;
  overflow: hidden;
  border: 1px solid rgba(217, 222, 232, 0.9);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.faq-summary article {
  min-height: 130px;
  padding: 24px;
  border-right: 1px solid var(--line);
  transition:
    background-color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.faq-summary article:last-child {
  border-right: 0;
}

.faq-summary article:hover {
  background: #f8f9fc;
  transform: translateY(-2px);
}

.faq-summary small {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-summary strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.15;
}

.faq-summary span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.faq-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) minmax(0, 0.66fr);
  gap: 28px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 82px 0 92px;
}

.faq-side-panel {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 28px;
  border: 1px solid rgba(165, 31, 47, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, #fff 0%, #f8f9fc 100%),
    #fff;
  box-shadow: 0 16px 36px rgba(18, 40, 76, 0.1);
}

.faq-side-panel h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.25;
}

.faq-side-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.faq-side-panel .primary-button {
  width: 100%;
  margin-top: 22px;
}

.faq-phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-weight: 900;
  transition:
    border-color 0.18s var(--ease-smooth),
    color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.faq-phone-link:hover {
  border-color: rgba(165, 31, 47, 0.28);
  color: var(--red);
  transform: translateY(-2px);
}

.faq-phone-link svg {
  width: 18px;
  height: 18px;
}

.faq-side-panel dl {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.faq-side-panel dl div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.faq-side-panel dt {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.faq-side-panel dd {
  margin: 4px 0 0;
  color: var(--ink);
  line-height: 1.58;
}

.faq-content {
  min-width: 0;
}

.compact-heading {
  margin-bottom: 26px;
}

.faq-group {
  scroll-margin-top: 104px;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 40, 76, 0.06);
}

.faq-group:first-of-type {
  margin-top: 0;
}

.faq-group-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.faq-group-head span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.faq-group-head h3 {
  margin: 0;
  color: var(--navy);
  font-size: 24px;
  line-height: 1.25;
}

.faq-accordion-item {
  border-top: 1px solid var(--line);
}

.faq-accordion-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  color: var(--navy);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
  transition: color 0.18s var(--ease-smooth);
}

.faq-accordion-item summary::-webkit-details-marker {
  display: none;
}

.faq-accordion-item summary:hover {
  color: var(--red);
}

.faq-accordion-item summary svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--red);
  transition: transform 0.18s var(--ease-smooth);
}

.faq-accordion-item[open] summary svg {
  transform: rotate(180deg);
}

.faq-accordion-item p {
  margin: -2px 0 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.78;
}

.faq-topic-section {
  padding: 86px max(24px, calc((100% - 1120px) / 2));
  background: var(--soft);
}

.form-phone:hover {
  color: var(--red);
}

.form-phone svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  min-height: 220px;
  padding: 36px max(24px, calc((100% - 1120px) / 2));
  color: #fff;
  background: #0d1d36;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.35fr);
  gap: 38px;
  width: min(100%, 1120px);
}

.footer-brand-block > strong {
  display: block;
  font-size: 20px;
}

.footer-brand-block p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  max-width: 540px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.footer-link-group {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-link-group strong {
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
}

.footer-link-group a {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  line-height: 1.4;
  transition:
    color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.footer-link-group a:hover {
  color: #fff;
  transform: translateX(3px);
}

.site-footer .back-top {
  display: inline-grid;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.team-header {
  color: #fff;
  background: rgba(18, 40, 76, 0.96);
  box-shadow: 0 14px 34px rgba(18, 40, 76, 0.18);
}

.team-header.scrolled,
.team-header.menu-open {
  color: #fff;
  background: rgba(18, 40, 76, 0.96);
  box-shadow: 0 14px 34px rgba(18, 40, 76, 0.18);
}

.team-header .desktop-nav a.active {
  color: #f2c567;
}

.team-header .mobile-home-link {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.team-page {
  background: #fff;
}

.team-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 48px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 72px;
}

.team-hero-copy h1 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: 56px;
  line-height: 1.12;
}

.team-hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.team-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.secondary-outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-weight: 800;
}

.secondary-outline-button:hover {
  border-color: rgba(165, 31, 47, 0.3);
  color: var(--red);
  background: rgba(165, 31, 47, 0.04);
}

.secondary-outline-button svg {
  width: 18px;
  height: 18px;
}

.team-hero-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.team-hero-photo img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.team-hero-photo:hover img {
  transform: scale(1.035);
}

.team-hero-photo figcaption {
  padding: 14px 18px;
  color: var(--muted);
  font-size: 14px;
}

.team-stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 14px;
  overflow: visible;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 40, 76, 0.98), rgba(27, 63, 115, 0.94)),
    var(--navy);
  box-shadow: 0 24px 54px rgba(18, 40, 76, 0.18);
}

.team-stat-band article {
  position: relative;
  min-height: 138px;
  overflow: hidden;
  padding: 22px 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  transition:
    border-color 0.18s var(--ease-smooth),
    background-color 0.18s var(--ease-smooth),
    box-shadow 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.team-stat-band article::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  content: "";
  background: linear-gradient(180deg, var(--gold), rgba(184, 138, 53, 0.18));
}

.team-stat-band article::after {
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 96px;
  height: 96px;
  content: "";
  pointer-events: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 0.2s var(--ease-smooth);
}

.team-stat-band article:hover {
  border-color: rgba(242, 197, 103, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.06)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.16);
  transform: translateY(-4px);
}

.team-stat-band article:hover::after {
  transform: scale(1.18);
}

.team-stat-band article:active {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(0) scale(0.99);
}

.team-stat-band article:last-child {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.team-stat-band small {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 9px;
  border: 1px solid rgba(242, 197, 103, 0.24);
  border-radius: 999px;
  color: #f2c567;
  background: rgba(242, 197, 103, 0.08);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.team-stat-band strong {
  display: block;
  position: relative;
  z-index: 1;
  margin-top: 14px;
  color: #fff;
  font-size: 24px;
  line-height: 1.18;
}

.team-stat-band strong b {
  font-size: 40px;
  line-height: 1;
}

.team-stat-band span {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  line-height: 1.55;
}

.team-intro-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.team-intro-card,
.team-capability-grid article,
.team-service-list article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.team-intro-card {
  min-height: 250px;
  padding: 28px;
}

.team-intro-card.wide {
  grid-row: span 2;
}

.team-intro-card svg,
.team-service-list svg {
  width: 30px;
  height: 30px;
  color: var(--red);
}

.team-intro-card h3,
.team-capability-grid h3,
.team-service-list h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
}

.team-intro-card p,
.team-capability-grid p,
.team-service-list p {
  margin: 0;
  color: var(--muted);
}

.team-capability-section {
  background: var(--soft);
}

.team-capability-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.team-capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.team-capability-grid article {
  min-height: 260px;
  padding: 26px;
}

.team-capability-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border-radius: 999px;
  color: #fff;
  background: var(--red);
  font-size: 13px;
  font-weight: 800;
  transition:
    background-color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.team-capability-grid article:hover span {
  background: var(--gold);
  transform: translateY(-2px);
}

.team-service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.team-service-list article {
  min-height: 240px;
  padding: 26px;
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.seo-page {
  background: #fff;
}

.seo-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.74fr);
  gap: 46px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 74px;
}

.seo-hero.compact {
  display: block;
  position: relative;
  max-width: 1120px;
  padding: 132px 40px 58px;
  overflow: hidden;
  border-bottom: 1px solid rgba(18, 40, 76, 0.08);
  background:
    linear-gradient(135deg, rgba(244, 246, 249, 0.98) 0%, rgba(255, 255, 255, 0.98) 56%, rgba(248, 244, 236, 0.9) 100%);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.86);
}

.seo-hero.compact::before {
  position: absolute;
  top: 86px;
  left: 40px;
  width: min(220px, calc(100% - 80px));
  height: 4px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), var(--red), var(--navy));
}

.seo-hero.compact::after {
  position: absolute;
  right: -80px;
  bottom: -140px;
  width: 300px;
  height: 300px;
  content: "";
  border: 1px solid rgba(18, 40, 76, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.seo-hero.compact > * {
  position: relative;
  z-index: 1;
}

.seo-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin: 0 10px 18px 0;
  padding: 6px 10px;
  border: 1px solid rgba(18, 40, 76, 0.1);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.seo-breadcrumb a {
  color: var(--red);
}

.seo-hero.compact .seo-breadcrumb span {
  display: none;
}

.seo-hero.compact > .section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 18px;
  padding: 5px 12px;
  border: 1px solid rgba(165, 31, 47, 0.12);
  border-radius: 999px;
  color: var(--red);
  background: rgba(165, 31, 47, 0.07);
  font-size: 13px;
}

.seo-hero.compact h1 {
  max-width: 940px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1.12;
}

.seo-hero-copy h1 {
  margin: 14px 0 18px;
  color: var(--navy);
  font-size: 52px;
  line-height: 1.12;
}

.seo-hero-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.seo-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.seo-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.seo-hero-media:hover img {
  transform: scale(1.035);
}

.seo-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 84px;
  padding-bottom: 84px;
}

.seo-section.soft-band,
.seo-topics-section {
  background: var(--soft);
}

.seo-section.soft-band {
  box-shadow: 0 0 0 100vmax var(--soft);
  clip-path: inset(0 -100vmax);
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.seo-card,
.faq-item,
.topic-link-card,
.seo-cta-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition:
    transform 0.2s var(--ease-smooth),
    box-shadow 0.2s var(--ease-smooth),
    border-color 0.2s var(--ease-smooth);
}

.seo-card:hover,
.faq-item:hover,
.topic-link-card:hover,
.seo-cta-panel:hover {
  border-color: rgba(165, 31, 47, 0.24);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.seo-card {
  min-height: 330px;
  padding: 28px;
}

.seo-card h3,
.faq-item h3 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
}

.seo-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.seo-card li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--red);
}

.seo-deep-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.52fr);
  gap: 18px;
  align-items: stretch;
}

.seo-copy-panel,
.seo-side-panel,
.seo-flow-card,
.seo-check-card,
.seo-faq-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(18, 40, 76, 0.07);
  transition:
    transform 0.2s var(--ease-smooth),
    box-shadow 0.2s var(--ease-smooth),
    border-color 0.2s var(--ease-smooth);
}

.seo-copy-panel:hover,
.seo-side-panel:hover,
.seo-flow-card:hover,
.seo-check-card:hover,
.seo-faq-card:hover {
  border-color: rgba(165, 31, 47, 0.22);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.seo-copy-panel,
.seo-side-panel {
  padding: 30px;
}

.seo-copy-panel h2,
.seo-side-panel h3,
.seo-flow-card h3,
.seo-check-card h3,
.seo-faq-card h3 {
  margin: 0;
  color: var(--navy);
  line-height: 1.35;
}

.seo-copy-panel h2 {
  max-width: 760px;
  font-size: 32px;
}

.seo-copy-panel p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.seo-side-panel {
  display: grid;
  align-content: start;
  gap: 18px;
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
}

.seo-side-panel h3 {
  font-size: 22px;
}

.seo-side-panel ul,
.seo-check-card ul,
.seo-faq-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-side-panel li,
.seo-check-card li,
.seo-faq-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.seo-side-panel li::before,
.seo-check-card li::before,
.seo-faq-card li::before {
  position: absolute;
  top: 11px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background: var(--gold);
}

.seo-flow-grid,
.seo-check-grid,
.seo-faq-grid {
  display: grid;
  gap: 16px;
}

.seo-flow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.seo-check-grid,
.seo-faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.seo-flow-card,
.seo-check-card,
.seo-faq-card {
  padding: 24px;
}

.seo-flow-card {
  min-height: 220px;
}

.seo-flow-card span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.seo-flow-card h3,
.seo-check-card h3,
.seo-faq-card h3 {
  font-size: 20px;
}

.seo-flow-card p,
.seo-check-card p,
.seo-faq-card p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.seo-check-card p {
  margin-bottom: 16px;
}

.seo-check-card {
  min-height: 246px;
}

.seo-guide-lead {
  max-width: 880px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.geo-data-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.geo-data-list div {
  display: grid;
  grid-template-columns: minmax(120px, 0.32fr) 1fr;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid rgba(217, 222, 232, 0.78);
}

.geo-data-list dt {
  color: var(--navy);
  font-weight: 800;
}

.geo-data-list dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.geo-triple-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.geo-triple-card {
  min-height: 186px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(18, 40, 76, 0.07);
  transition:
    transform 0.2s var(--ease-smooth),
    box-shadow 0.2s var(--ease-smooth),
    border-color 0.2s var(--ease-smooth);
}

.geo-triple-card:hover {
  border-color: rgba(165, 31, 47, 0.22);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.geo-triple-card span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.geo-triple-card strong {
  display: block;
  margin-top: 10px;
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.geo-triple-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-topics-section {
  position: relative;
  width: min(1180px, calc(100% - 48px));
}

.home-topics-section::before {
  position: absolute;
  z-index: -1;
  inset: 0 50% 0 50%;
  width: 100vw;
  content: "";
  background: linear-gradient(180deg, #f5f7fb 0%, #fff 100%);
  transform: translateX(-50%);
}

.home-topics-head {
  display: grid;
  grid-template-columns: minmax(0, 0.58fr) minmax(320px, 0.42fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 30px;
}

.home-topics-head h2 {
  margin: 10px 0 0;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.24;
}

.home-topics-head p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.home-topic-layout {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(260px, 0.72fr) minmax(280px, 0.82fr);
  gap: 18px;
  align-items: start;
}

.home-topic-group {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(217, 222, 232, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(18, 40, 76, 0.08);
  transition:
    transform 0.2s var(--ease-smooth),
    box-shadow 0.2s var(--ease-smooth),
    border-color 0.2s var(--ease-smooth);
}

.home-topic-group:hover {
  border-color: rgba(165, 31, 47, 0.2);
  box-shadow: 0 24px 52px rgba(18, 40, 76, 0.12);
  transform: translateY(-2px);
}

.home-topic-group.core {
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.home-topic-group.decision {
  background: linear-gradient(180deg, #fff 0%, #fbf8f2 100%);
}

.home-topic-group-head {
  display: grid;
  gap: 5px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(217, 222, 232, 0.88);
}

.home-topic-group-head span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.home-topic-group-head strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.35;
}

.home-topic-list {
  display: grid;
  gap: 12px;
}

.home-topic-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: center;
  min-height: 76px;
  padding: 15px 0;
  border-bottom: 1px solid rgba(217, 222, 232, 0.7);
  transition:
    color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth),
    border-color 0.18s var(--ease-smooth);
}

.home-topic-link:last-child {
  border-bottom: 0;
}

.home-topic-link.major {
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  min-height: 92px;
  padding: 18px;
  border: 1px solid rgba(217, 222, 232, 0.86);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(18, 40, 76, 0.06);
}

.home-topic-link:hover {
  border-color: rgba(165, 31, 47, 0.2);
  color: var(--red);
  transform: translateX(3px);
}

.home-topic-link.major:hover {
  box-shadow: 0 16px 30px rgba(18, 40, 76, 0.1);
  transform: translateY(-2px);
}

.home-topic-link > svg:first-child {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  color: #fff;
  background: var(--navy);
}

.home-topic-link > svg:last-child {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.home-topic-link span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.home-topic-link strong {
  color: var(--navy);
  font-size: 17px;
  line-height: 1.35;
  transition: color 0.18s var(--ease-smooth);
}

.home-topic-link:hover strong {
  color: var(--red);
}

.home-topic-link small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.seo-case-list,
.topic-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.seo-case-list a,
.topic-link-card {
  display: grid;
  gap: 10px;
  min-height: 132px;
  padding: 22px;
}

.seo-case-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition:
    transform 0.2s var(--ease-smooth),
    box-shadow 0.2s var(--ease-smooth),
    border-color 0.2s var(--ease-smooth);
}

.seo-case-list a:hover {
  border-color: rgba(165, 31, 47, 0.24);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.seo-case-list span,
.topic-link-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.seo-case-list strong,
.topic-link-card strong {
  color: var(--navy);
  font-size: 18px;
  line-height: 1.35;
}

.seo-case-list svg,
.topic-link-card svg {
  align-self: end;
  width: 18px;
  height: 18px;
  color: var(--red);
}

.seo-cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  overflow: hidden;
  padding: 34px;
  border-color: rgba(18, 40, 76, 0.1);
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
  box-shadow: 0 20px 44px rgba(18, 40, 76, 0.1);
}

.seo-cta-panel::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--gold), var(--red));
}

.seo-cta-panel > div:first-child {
  position: relative;
  z-index: 1;
  max-width: 820px;
  min-width: 0;
}

.seo-cta-panel h2 {
  margin: 10px 0 12px;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.25;
}

.seo-cta-panel p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.seo-cta-panel .section-kicker {
  color: var(--gold);
}

.seo-cta-panel .section-cta-actions,
.seo-cta-panel .section-contact-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  width: 100%;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 40, 76, 0.1);
}

.seo-cta-panel .section-cta-actions a,
.seo-cta-panel .section-contact-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: auto;
  min-width: 196px;
  min-height: 58px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  text-align: center;
  line-height: 1.25;
  white-space: normal;
}

.seo-cta-panel .section-cta-actions a:first-child,
.seo-cta-panel .section-contact-actions a:first-child {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
  box-shadow: 0 14px 26px rgba(165, 31, 47, 0.26);
}

.seo-cta-panel .section-cta-actions a:first-child:hover,
.seo-cta-panel .section-contact-actions a:first-child:hover {
  border-color: #8d1928;
  color: #fff;
  background: #8d1928;
}

.seo-cta-panel .section-cta-actions a:hover,
.seo-cta-panel .section-contact-actions a:hover {
  border-color: rgba(165, 31, 47, 0.28);
  color: var(--red);
  background: #fff;
  box-shadow: 0 12px 24px rgba(18, 40, 76, 0.1);
}

.seo-cta-panel .section-cta-actions a.phone-action,
.seo-cta-panel .section-contact-actions a.phone-action {
  border-color: var(--line);
  color: var(--red);
  background: #fff;
}

.seo-cta-panel .section-cta-actions a.phone-action:hover,
.seo-cta-panel .section-contact-actions a.phone-action:hover {
  border-color: rgba(165, 31, 47, 0.28);
  color: var(--red);
  background: #fff;
}

.seo-cta-panel .section-cta-actions svg,
.seo-cta-panel .section-contact-actions svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.faq-item {
  min-height: 188px;
  padding: 26px;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.cases-page {
  background: #fff;
}

.case-page-hero {
  position: relative;
  min-height: 68svh;
  overflow: hidden;
  color: #fff;
}

.case-page-hero-media,
.case-page-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.case-page-hero-media {
  object-fit: cover;
}

.case-page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 50, 0.9) 0%, rgba(18, 40, 76, 0.72) 52%, rgba(18, 40, 76, 0.2) 100%),
    linear-gradient(0deg, rgba(18, 40, 76, 0.22), rgba(18, 40, 76, 0.04));
}

.case-page-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(1120px, calc(100% - 48px));
  min-height: 68svh;
  margin: 0 auto;
  padding: 122px 0 58px;
}

.case-page-hero-content h1 {
  width: min(820px, 100%);
  margin: 14px 0 18px;
  font-size: 58px;
  line-height: 1.12;
}

.case-page-hero-content p {
  width: min(720px, 100%);
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
}

.case-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1120px, calc(100% - 48px));
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(217, 222, 232, 0.8);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.case-stat-strip article {
  min-height: 132px;
  padding: 24px;
  border-right: 1px solid var(--line);
  transition:
    background-color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.case-stat-strip article:last-child {
  border-right: 0;
}

.case-stat-strip article:hover {
  background: rgba(165, 31, 47, 0.04);
  transform: translateY(-2px);
}

.case-stat-strip strong {
  display: block;
  color: var(--red);
  font-size: 28px;
  line-height: 1.22;
}

.case-stat-strip span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.case-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 24px;
}

.case-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
  font-weight: 800;
  transition:
    transform 0.18s var(--ease-smooth),
    box-shadow 0.18s var(--ease-smooth),
    border-color 0.18s var(--ease-smooth),
    background-color 0.18s var(--ease-smooth),
    color 0.18s var(--ease-smooth);
}

.case-filter-button:hover {
  border-color: rgba(165, 31, 47, 0.28);
  color: var(--red);
  box-shadow: var(--shadow-press);
  transform: translateY(-2px);
}

.case-filter-button:active {
  transform: translateY(0) scale(0.98);
}

.case-filter-button.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

.case-showcase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.case-showcase-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(18, 40, 76, 0.08);
  cursor: pointer;
  transition:
    border-color 0.2s var(--ease-smooth),
    box-shadow 0.2s var(--ease-smooth),
    transform 0.2s var(--ease-smooth);
}

.case-showcase-card:focus-visible {
  outline: 3px solid rgba(165, 31, 47, 0.28);
  outline-offset: 4px;
}

.case-showcase-card[hidden] {
  display: none;
}

.case-showcase-card:hover {
  border-color: rgba(165, 31, 47, 0.28);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.case-showcase-card:active {
  box-shadow: var(--shadow-press);
  transform: translateY(-1px) scale(0.99);
}

.case-showcase-card.featured {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 0.58fr);
}

.case-showcase-card figure {
  min-height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--soft);
}

.case-showcase-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.case-showcase-card:hover img {
  transform: scale(1.04);
}

.case-showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
}

.case-showcase-copy > span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--red);
  background: rgba(165, 31, 47, 0.08);
  font-size: 13px;
  font-weight: 800;
  transition:
    color 0.18s var(--ease-smooth),
    background-color 0.18s var(--ease-smooth);
}

.case-showcase-card:hover .case-showcase-copy > span {
  color: #fff;
  background: var(--red);
}

.case-showcase-copy h3 {
  margin: 16px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
  transition: color 0.18s var(--ease-smooth);
}

.case-showcase-card:hover h3 {
  color: var(--red);
}

.case-showcase-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.case-showcase-copy dl {
  display: grid;
  gap: 12px;
  margin: 20px 0 0;
}

.case-showcase-copy dl div {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  transition:
    border-color 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.case-showcase-copy dl div:hover {
  border-color: rgba(165, 31, 47, 0.28);
  transform: translateX(4px);
}

.case-showcase-copy dt {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
}

.case-showcase-copy dd {
  margin: 2px 0 0;
  color: var(--ink);
  line-height: 1.55;
}

.case-gallery-link {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  padding: 0 16px;
  border: 1px solid rgba(18, 40, 76, 0.14);
  border-radius: 8px;
  color: var(--navy);
  background: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform 0.18s var(--ease-smooth),
    box-shadow 0.18s var(--ease-smooth),
    border-color 0.18s var(--ease-smooth),
    background-color 0.18s var(--ease-smooth),
    color 0.18s var(--ease-smooth);
}

.case-gallery-link svg {
  width: 17px;
  height: 17px;
}

.case-gallery-link:hover {
  border-color: var(--navy);
  color: #fff;
  background: var(--navy);
  box-shadow: var(--shadow-press);
  transform: translateY(-2px);
}

.case-gallery-link:active {
  transform: translateY(0) scale(0.98);
}

.case-image-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin-top: 18px;
}

.case-image-strip img {
  width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 8px;
  object-fit: cover;
  background: var(--soft);
  transition:
    border-color 0.18s var(--ease-smooth),
    box-shadow 0.18s var(--ease-smooth),
    transform 0.18s var(--ease-smooth);
}

.case-image-strip img:hover {
  border-color: rgba(165, 31, 47, 0.28);
  box-shadow: var(--shadow-press);
  transform: translateY(-2px);
}

.case-gallery-section {
  margin-top: 26px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0.74), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: 0 12px 30px rgba(18, 40, 76, 0.08);
}

.case-gallery-head {
  max-width: 720px;
}

.case-gallery-head h3 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: 28px;
  line-height: 1.25;
}

.case-gallery-head p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
}

.case-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.case-gallery-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 40, 76, 0.06);
  text-decoration: none;
  transition:
    transform 0.18s var(--ease-smooth),
    box-shadow 0.18s var(--ease-smooth),
    border-color 0.18s var(--ease-smooth);
}

.case-gallery-card:hover {
  border-color: rgba(165, 31, 47, 0.34);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.case-gallery-card:active {
  box-shadow: var(--shadow-press);
  transform: translateY(-1px) scale(0.99);
}

.case-gallery-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
  transition: transform 0.45s var(--ease-smooth);
}

.case-gallery-card:hover img {
  transform: scale(1.05);
}

.case-table-section {
  background: var(--soft);
}

.case-table-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.case-table-wrap {
  overflow-x: auto;
  padding-bottom: 4px;
}

.contact-page {
  background: #fff;
}

.contact-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 44px;
  align-items: center;
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 132px 0 76px;
}

.contact-hero-copy h1 {
  margin: 12px 0 18px;
  color: var(--navy);
  font-size: 56px;
  line-height: 1.12;
}

.contact-hero-copy p {
  width: min(720px, 100%);
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-hero-card {
  padding: 30px;
  border: 1px solid rgba(165, 31, 47, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(18, 40, 76, 0.96), rgba(27, 63, 115, 0.94)),
    var(--navy);
  color: #fff;
  box-shadow: var(--shadow);
  transition:
    transform 0.2s var(--ease-smooth),
    box-shadow 0.2s var(--ease-smooth);
}

.contact-hero-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.contact-hero-card > span {
  display: block;
  color: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

.contact-hero-card strong {
  display: block;
  margin-top: 12px;
  font-size: 34px;
  line-height: 1.1;
}

.contact-hero-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

.contact-page-main {
  padding-top: 76px;
}

.contact-process-section {
  background: var(--soft);
}

.contact-process-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0;
}

.contact-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.contact-process-grid article {
  min-height: 240px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff 0%, #f8f9fc 100%);
  transition:
    transform 0.2s var(--ease-smooth),
    box-shadow 0.2s var(--ease-smooth),
    border-color 0.2s var(--ease-smooth);
}

.contact-process-grid article:hover {
  border-color: rgba(165, 31, 47, 0.26);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.contact-process-grid svg {
  width: 30px;
  height: 30px;
  color: var(--red);
  transition:
    color 0.2s var(--ease-smooth),
    transform 0.2s var(--ease-smooth);
}

.contact-process-grid article:hover svg {
  color: var(--gold);
  transform: translateY(-2px) scale(1.06);
}

.contact-process-grid h3 {
  margin: 18px 0 10px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
  transition: color 0.18s var(--ease-smooth);
}

.contact-process-grid article:hover h3 {
  color: var(--red);
}

.contact-process-grid p {
  margin: 0;
  color: var(--muted);
}

@media (max-width: 1500px) {
  .header-cta {
    display: none;
  }
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .mobile-header-actions {
    display: inline-flex;
  }

  .menu-toggle {
    display: inline-flex;
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 0 24px;
  }

  .header-cta {
    display: none;
  }

  .mobile-header-actions {
    display: inline-flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero,
  .hero-content {
    min-height: 78svh;
  }

  .hero h1 {
    font-size: 46px;
  }

  .audience-grid,
  .resource-grid,
  .solution-grid,
  .process-list,
  .case-grid,
  .case-stat-strip,
  .team-stat-band,
  .team-capability-grid,
  .team-service-list,
  .contact-process-grid,
  .seo-card-grid,
  .geo-triple-grid,
  .seo-case-list,
  .topic-link-grid,
  .home-topic-layout,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-topics-head {
    grid-template-columns: 1fr;
  }

  .home-topic-group.core {
    grid-column: 1 / -1;
  }

  .service-detail,
  .team-hero,
  .seo-hero,
  .seo-deep-grid,
  .faq-main,
  .contact-page-hero,
  .assurance-inner,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .seo-hero-media {
    order: -1;
  }

  .faq-side-panel {
    position: static;
  }

  .team-intro-grid {
    grid-template-columns: 1fr;
  }

  .team-intro-card.wide {
    grid-row: auto;
  }

  .section-contact-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-contact-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .service-visual {
    min-height: 320px;
  }

  .process-list li {
    min-height: 200px;
  }

  .case-page-hero-content h1 {
    font-size: 46px;
  }

  .contact-page-hero {
    padding-top: 116px;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 68px;
    padding: 0 18px;
  }

  .mobile-nav {
    top: 68px;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero,
  .hero-content {
    min-height: 80svh;
  }

  .hero-content {
    width: min(100% - 36px, 1120px);
    padding: 96px 0 36px;
  }

  .hero h1 {
    margin-top: 14px;
    font-size: 36px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .primary-button,
  .secondary-button,
  .section-contact-actions a {
    width: 100%;
  }

  .section,
  .contact-section {
    width: min(100% - 36px, 1120px);
    padding: 68px 0;
  }

  .team-hero,
  .seo-hero,
  .seo-section {
    width: min(100% - 36px, 1120px);
  }

  .team-hero {
    padding: 100px 0 54px;
  }

  .seo-hero {
    padding: 100px 0 54px;
  }

  .team-hero-copy h1 {
    font-size: 38px;
  }

  .seo-hero-copy h1 {
    font-size: 36px;
  }

  .team-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .team-stat-band,
  .team-capability-inner {
    width: min(100% - 36px, 1120px);
  }

  .team-capability-inner {
    padding: 68px 0;
  }

  .section-heading h2,
  .assurance-copy h2,
  .contact-copy h2 {
    font-size: 28px;
  }

  .audience-grid,
  .resource-grid,
  .solution-grid,
  .process-list,
  .case-grid,
  .team-stat-band,
  .case-stat-strip,
  .faq-summary,
  .case-showcase-grid,
  .team-capability-grid,
  .team-service-list,
  .contact-process-grid,
  .seo-card-grid,
  .geo-triple-grid,
  .seo-case-list,
  .topic-link-grid,
  .home-topic-layout,
  .faq-list,
  .assurance-grid,
  .contact-form,
  .form-card-head,
  .form-footer,
  .image-band {
    grid-template-columns: 1fr;
  }

  .home-topics-section {
    width: min(100% - 36px, 1120px);
  }

  .home-topic-group {
    padding: 20px;
  }

  .home-topic-link.major {
    grid-template-columns: 38px minmax(0, 1fr) 18px;
    padding: 16px;
  }

  .home-topic-link > svg:first-child {
    width: 38px;
    height: 38px;
  }

  .team-stat-band article {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .faq-hero,
  .faq-hero-inner {
    min-height: 74svh;
  }

  .faq-hero-inner {
    width: min(100% - 36px, 1120px);
    padding: 96px 0 44px;
  }

  .faq-hero h1 {
    font-size: 36px;
  }

  .faq-hero p {
    font-size: 16px;
  }

  .faq-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faq-summary {
    width: min(100% - 36px, 1120px);
    margin-top: -24px;
  }

  .faq-summary article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .faq-summary article:last-child {
    border-bottom: 0;
  }

  .faq-main {
    width: min(100% - 36px, 1120px);
    padding: 68px 0;
  }

  .faq-group,
  .faq-side-panel {
    padding: 22px;
  }

  .faq-accordion-item summary {
    align-items: flex-start;
    min-height: 60px;
    padding: 18px 0;
    font-size: 16px;
  }

  .faq-topic-section {
    padding: 68px 18px;
  }

  .team-stat-band article:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .case-page-hero,
  .case-page-hero-content {
    min-height: 74svh;
  }

  .case-page-hero-content {
    width: min(100% - 36px, 1120px);
    padding: 96px 0 44px;
  }

  .case-page-hero-content h1 {
    font-size: 38px;
  }

  .case-stat-strip {
    width: min(100% - 36px, 1120px);
    margin-top: -24px;
  }

  .case-stat-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .case-stat-strip article:last-child {
    border-bottom: 0;
  }

  .case-filter-bar {
    display: grid;
    grid-template-columns: 1fr;
  }

  .case-showcase-card,
  .case-showcase-card.featured {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .case-image-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-gallery-section {
    padding: 20px;
  }

  .case-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .case-table-inner {
    width: min(100% - 36px, 1120px);
    padding: 68px 0;
  }

  .contact-page-hero {
    width: min(100% - 36px, 1120px);
    padding: 100px 0 54px;
  }

  .contact-hero-copy h1 {
    font-size: 38px;
  }

  .contact-hero-card {
    padding: 24px 20px;
  }

  .contact-page-main {
    padding-top: 68px;
  }

  .contact-process-inner {
    width: min(100% - 36px, 1120px);
    padding: 68px 0;
  }

  .seo-section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .seo-card,
  .faq-item {
    min-height: auto;
    padding: 22px;
  }

  .seo-cta-panel {
    align-items: flex-start;
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }

  .seo-deep-grid,
  .geo-data-list div {
    grid-template-columns: 1fr;
  }

  .seo-cta-panel h2 {
    font-size: 28px;
  }

  .seo-cta-panel .section-cta-actions,
  .seo-cta-panel .section-contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-cta-panel .section-cta-actions a,
  .seo-cta-panel .section-contact-actions a {
    width: 100%;
  }

  .service-switcher {
    grid-template-columns: 1fr;
  }

  .services-section {
    padding: 68px 18px;
  }

  .service-copy {
    padding: 28px;
  }

  .service-copy h3 {
    font-size: 26px;
  }

  .image-band figure {
    min-height: 260px;
  }

  .assurance-inner {
    width: min(100% - 36px, 1120px);
    padding: 68px 0;
  }

  .contact-form {
    padding: 20px;
  }

  .form-card-head {
    flex-direction: column;
    padding: 24px 20px 20px;
  }

  .form-badge {
    width: 100%;
    text-align: left;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-button {
    width: 100%;
  }

  .form-phone {
    justify-content: center;
    min-height: 44px;
  }

  .site-footer {
    gap: 18px;
    padding: 24px 18px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .seo-hero.compact {
    width: min(100% - 36px, 1120px);
    padding: 106px 24px 44px;
  }

  .seo-hero.compact::before {
    top: 78px;
    left: 24px;
    width: 160px;
  }

  .seo-hero.compact h1 {
    font-size: 38px;
  }
}

@media (max-width: 520px) {
  .seo-hero.compact {
    width: min(100% - 28px, 1120px);
    padding: 96px 18px 38px;
  }

  .seo-hero.compact::before {
    top: 72px;
    left: 18px;
    width: 128px;
  }

  .seo-hero.compact::after {
    right: -150px;
    bottom: -180px;
  }

  .seo-breadcrumb,
  .seo-hero.compact > .section-kicker {
    min-height: 30px;
    margin-bottom: 12px;
    font-size: 12px;
  }

  .seo-hero.compact h1 {
    font-size: 30px;
  }

  .seo-guide-lead {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.75;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* Unified static cover for primary navigation pages */
.hero,
.case-page-hero,
.faq-hero,
.page-cover-carousel {
  isolation: isolate;
}

.cover-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--navy);
}

.cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay,
.case-page-hero-overlay,
.faq-hero-overlay,
.page-cover-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 50, 0.92) 0%, rgba(18, 40, 76, 0.76) 48%, rgba(89, 21, 39, 0.34) 100%),
    linear-gradient(0deg, rgba(18, 40, 76, 0.36), rgba(18, 40, 76, 0.06));
}

.case-page-hero-overlay,
.faq-hero-overlay,
.page-cover-overlay {
  background:
    linear-gradient(90deg, rgba(9, 24, 50, 0.94) 0%, rgba(18, 40, 76, 0.78) 50%, rgba(133, 28, 49, 0.36) 100%),
    linear-gradient(0deg, rgba(18, 40, 76, 0.34), rgba(18, 40, 76, 0.06));
}

.hero-content,
.case-page-hero-content,
.faq-hero-inner,
.page-cover-carousel > :not(.cover-media, .page-cover-overlay) {
  position: relative;
  z-index: 2;
}

.seo-hero.compact.page-cover-carousel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: none;
  min-height: 68svh;
  margin: 0;
  padding: 132px max(24px, calc((100% - 1120px) / 2)) 74px;
  overflow: hidden;
  border-bottom: 0;
  background: var(--navy);
  color: #fff;
  box-shadow: none;
}

.seo-hero.compact.page-cover-carousel::before {
  top: auto;
  bottom: 0;
  left: max(24px, calc((100% - 1120px) / 2));
  z-index: 2;
  width: min(320px, calc(100% - 48px));
  height: 5px;
}

.seo-hero.compact.page-cover-carousel::after {
  display: none;
}

.seo-hero.compact.page-cover-carousel .seo-breadcrumb {
  width: fit-content;
  margin-bottom: 20px;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(10px);
}

.seo-hero.compact.page-cover-carousel .seo-breadcrumb a {
  color: var(--gold);
}

.seo-hero.compact.page-cover-carousel > .section-kicker {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
  backdrop-filter: blur(10px);
}

.seo-hero.compact.page-cover-carousel h1 {
  width: min(880px, 100%);
  color: #fff;
}

.seo-hero.compact.page-cover-carousel .seo-guide-lead {
  width: min(760px, 100%);
  color: rgba(255, 255, 255, 0.86);
}

.team-hero.page-cover-carousel {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 68svh;
  margin: 0;
  padding: 132px max(24px, calc((100% - 1120px) / 2)) 74px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.team-hero.page-cover-carousel .team-hero-copy {
  width: min(780px, 100%);
}

.team-hero.page-cover-carousel .team-hero-copy h1,
.team-hero.page-cover-carousel .team-hero-copy p {
  color: #fff;
}

.team-hero.page-cover-carousel .team-hero-copy p {
  width: min(720px, 100%);
  color: rgba(255, 255, 255, 0.86);
}

.team-hero.page-cover-carousel .team-hero-photo {
  display: none;
}

.contact-page-hero.page-cover-carousel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  gap: 44px;
  align-items: center;
  width: 100%;
  max-width: none;
  min-height: 68svh;
  margin: 0;
  padding: 132px max(24px, calc((100% - 1120px) / 2)) 74px;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.contact-page-hero.page-cover-carousel .contact-hero-copy h1,
.contact-page-hero.page-cover-carousel .contact-hero-copy p {
  color: #fff;
}

.contact-page-hero.page-cover-carousel .contact-hero-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.contact-page-hero.page-cover-carousel .contact-hero-card {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(18, 40, 76, 0.76), rgba(165, 31, 47, 0.5)),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 52px rgba(9, 24, 50, 0.22);
  backdrop-filter: blur(12px);
}

.page-cover-carousel .secondary-outline-button,
.faq-hero .secondary-outline-button,
.case-page-hero .secondary-outline-button,
.team-hero.page-cover-carousel .secondary-outline-button,
.contact-page-hero.page-cover-carousel .secondary-outline-button {
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  backdrop-filter: blur(10px);
}

.page-cover-carousel .secondary-outline-button:hover,
.faq-hero .secondary-outline-button:hover,
.case-page-hero .secondary-outline-button:hover,
.team-hero.page-cover-carousel .secondary-outline-button:hover,
.contact-page-hero.page-cover-carousel .secondary-outline-button:hover {
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

@media (max-width: 980px) {
  .seo-hero.compact.page-cover-carousel,
  .team-hero.page-cover-carousel,
  .contact-page-hero.page-cover-carousel {
    width: 100%;
    min-height: 70svh;
    padding: 118px 24px 58px;
  }

  .seo-hero.compact.page-cover-carousel::before {
    left: 24px;
    width: 180px;
  }

  .contact-page-hero.page-cover-carousel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .seo-hero.compact.page-cover-carousel,
  .team-hero.page-cover-carousel,
  .contact-page-hero.page-cover-carousel,
  .case-page-hero,
  .faq-hero {
    min-height: 74svh;
  }

  .seo-hero.compact.page-cover-carousel,
  .team-hero.page-cover-carousel,
  .contact-page-hero.page-cover-carousel {
    padding: 96px 18px 44px;
  }

  .seo-hero.compact.page-cover-carousel::before {
    left: 18px;
    width: 140px;
  }

  .seo-hero.compact.page-cover-carousel h1,
  .team-hero.page-cover-carousel .team-hero-copy h1,
  .contact-page-hero.page-cover-carousel .contact-hero-copy h1 {
    font-size: 38px;
  }

  .team-hero.page-cover-carousel .team-hero-actions,
  .contact-page-hero.page-cover-carousel .team-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }
}

@media (max-width: 520px) {
  .seo-hero.compact.page-cover-carousel,
  .team-hero.page-cover-carousel,
  .contact-page-hero.page-cover-carousel {
    padding: 92px 18px 38px;
  }

  .seo-hero.compact.page-cover-carousel h1,
  .team-hero.page-cover-carousel .team-hero-copy h1,
  .contact-page-hero.page-cover-carousel .contact-hero-copy h1 {
    font-size: 32px;
  }
}
