:root {
  --navy: #06184a;
  --blue: #064de9;
  --blue-dark: #073ec1;
  --light-blue: #eef4ff;
  --text: #071642;
  --muted: #64708b;
  --border: #dfe6f3;
  --soft: #f6f9ff;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 35, 85, 0.12);
  --radius: 14px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-geist-sans), Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(1190px, calc(100% - 48px));
  margin: 0 auto;
}

/* Shared */

@keyframes csukFadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-fade,
.section-fade {
  opacity: 0;
  animation: csukFadeInUp 640ms cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  will-change: opacity, transform;
}

.page-fade-1 {
  animation-delay: 80ms;
}

.page-fade-2 {
  animation-delay: 150ms;
}

.page-fade-3 {
  animation-delay: 220ms;
}

.page-fade-4 {
  animation-delay: 290ms;
}

.page-fade-5 {
  animation-delay: 360ms;
}

.page-fade-6 {
  animation-delay: 430ms;
}

.section-fade {
  animation-delay: 180ms;
}

.stats-card .stat,
.partner-logo,
.service-card,
.reviews-card,
.faq-card {
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.service-card:hover,
.reviews-card:hover,
.faq-card:hover {
  transform: translateY(-2px);
  border-color: rgba(6, 77, 233, 0.18);
  box-shadow: 0 12px 28px rgba(15, 35, 85, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 46px;
  padding: 0 18px 0 24px;
  border-radius: 8px;
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.btn-label {
  position: relative;
  z-index: 1;
}

.btn-arrow {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease;
}

.btn-arrow svg {
  width: 17px;
  height: 17px;
  display: block;
}

.btn-arrow path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 12px 24px rgba(6, 77, 233, 0.24);
}

.btn-primary .btn-arrow {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 16px 30px rgba(6, 77, 233, 0.28);
}

.btn-primary:hover .btn-arrow {
  background: #ffffff;
  color: var(--blue-dark);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue);
  border-color: rgba(6, 77, 233, 0.42);
  box-shadow: 0 10px 22px rgba(15, 35, 85, 0.06);
}

.btn-outline .btn-arrow {
  background: var(--light-blue);
  color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(6, 77, 233, 0.2);
}

.btn-outline:hover .btn-arrow {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.btn-light {
  background: #ffffff;
  color: var(--blue);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.btn-light .btn-arrow {
  background: var(--light-blue);
  color: var(--blue);
}

.btn-light:hover {
  background: var(--light-blue);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.16);
}

.btn-large {
  min-height: 58px;
  padding: 0 22px 0 36px;
}

.btn-full {
  width: 100%;
  min-height: 56px;
}

.icon-placeholder {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1;
}

.icon-placeholder-large {
  width: 58px;
  height: 58px;
  border-radius: 13px;
  font-size: 13px;
}

.icon-placeholder-light {
  border-color: rgba(255, 255, 255, 0.8);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.stat-icon {
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(6, 77, 233, 0.18);
  border-radius: 13px;
  background: rgba(238, 244, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.stat-icon-label,
.feature-icon-label {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

/* Hero feature image icons */

.feature-icon {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(6, 77, 233, 0.18);
  border-radius: 999px;
  background: rgba(238, 244, 255, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hq .feature-icon {
  width: 46px;
  height: 46px;
}

/* Top bar */

.topbar {
  background: var(--navy);
  color: #ffffff;
  font-size: 13px;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar a,
.topbar span {
  opacity: 0.96;
  white-space: nowrap;
}

.topbar a:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header */

.site-header {
  height: 82px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 20;
}

.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 38px;
}

/* Logo */

.logo-link {
  width: 210px;
  height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  flex-shrink: 0;
}

.site-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.footer-logo-link {
  width: 190px;
  height: 64px;
}

.footer-logo-link .site-logo {
  object-position: left center;
}

/* Nav */

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 800;
  color: var(--navy);
}

.nav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}

.nav-dropdown::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  padding: 70px 0 64px;
  min-height: 650px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 80% at 100% 0%, rgba(6, 77, 233, 0.14), transparent 55%),
    radial-gradient(ellipse 55% 60% at 78% 85%, rgba(6, 24, 74, 0.07), transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(6, 77, 233, 0.05), transparent 55%),
    linear-gradient(
      115deg,
      #ffffff 0%,
      #ffffff 42%,
      #f7faff 62%,
      #eef4ff 82%,
      #e8f0ff 100%
    );
}

.hero-bg-pattern::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 24, 74, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 24, 74, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(105deg, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.55) 68%, rgba(0, 0, 0, 0.85) 100%);
  -webkit-mask-image: linear-gradient(105deg, transparent 0%, transparent 38%, rgba(0, 0, 0, 0.55) 68%, rgba(0, 0, 0, 0.85) 100%);
  opacity: 0.7;
}

.hero-bg-pattern::after {
  content: "";
  position: absolute;
  right: -12%;
  top: -20%;
  width: min(720px, 58vw);
  height: min(720px, 58vw);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at 40% 40%,
      rgba(255, 255, 255, 0.55) 0%,
      rgba(238, 244, 255, 0.2) 28%,
      rgba(6, 77, 233, 0.1) 52%,
      transparent 72%
    );
  filter: blur(8px);
  opacity: 0.9;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 620px) 400px;
  gap: 120px;
  align-items: center;
  z-index: 2;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

h1 {
  margin: 0;
  font-size: clamp(50px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: var(--navy);
}

h1 span {
  color: var(--blue);
}

.hero-text {
  max-width: 540px;
  margin: 28px 0 30px;
  font-size: 18px;
  line-height: 1.7;
  color: #263555;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 28px 0 32px;
}

.mini-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
}

.mini-feature strong {
  font-size: 12px;
  line-height: 1.35;
  display: block;
  color: var(--navy);
}

.mini-feature small {
  display: block;
  margin-top: 7px;
  font-size: 11px;
  line-height: 1.5;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 18px;
}

.hq {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 44px;
}

.hq strong {
  display: block;
  font-size: 15px;
}

.hq small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
}

/* Consultation form */

.consult-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 32px;
  width: 100%;
}

.consult-card h2 {
  margin: 0 0 10px;
  font-size: 24px;
  letter-spacing: -0.035em;
  color: var(--navy);
}

.consult-card p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 14px 12px;
  color: var(--text);
  font-size: 13px;
  background: #ffffff;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
}

textarea {
  resize: none;
  min-height: 88px;
  margin-top: 12px;
}

.privacy {
  font-size: 12px !important;
  color: var(--navy) !important;
  margin: 14px 0 18px !important;
}

.call-line {
  margin: 18px 0 0 !important;
  text-align: center;
  font-size: 13px !important;
}

.call-line strong {
  color: var(--blue);
}

/* Stats */

.stats-card {
  margin-top: 28px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(15, 35, 85, 0.06);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}

.stat {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 30px 28px;
  min-height: 132px;
  border-right: 1px solid var(--border);
}

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

.stat strong {
  display: block;
  font-size: 28px;
  line-height: 1.05;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.stat small {
  display: block;
  color: var(--muted);
  line-height: 1.4;
  font-size: 12px;
  margin-top: 6px;
}

/* Partners */

.partners-card {
  margin-top: 30px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
}

.partner-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.partner-row.second {
  border-top: 1px solid var(--border);
}

.partner-logo {
  min-height: 0;
  padding: 8px 12px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--navy);
  font-size: 23px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.partner-logo:last-child {
  border: 0;
}

/* Services */

.services-section {
  padding: 50px 0 28px;
}

.section-heading {
  text-align: center;
  margin-bottom: 30px;
}

.section-heading .eyebrow {
  margin-bottom: 14px;
}

.section-heading h2 {
  margin: 0;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -0.04em;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  align-items: stretch;
}

.service-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 8px;
  min-height: 310px;
  padding: 30px 18px 26px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(15, 35, 85, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card h3 {
  margin: 22px 0 16px;
  font-size: 15px;
  line-height: 1.25;
  color: var(--navy);
}

.service-card p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.service-card a,
.reviews-card a,
.faq-card a {
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.service-card a::after,
.reviews-card a::after,
.faq-card a::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 180ms ease;
}

.service-card a:hover::after,
.reviews-card a:hover::after,
.faq-card a:hover::after {
  transform: translateX(3px) rotate(-45deg);
}

/* Lower content */

.lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(360px, 0.85fr);
  gap: 22px;
  align-items: stretch;
  margin-top: 24px;
}

.reviews-card,
.faq-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 8px 20px rgba(15, 35, 85, 0.04);
  display: flex;
  flex-direction: column;
}

.lower-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}

.lower-card-heading .eyebrow {
  margin-bottom: 10px;
  font-size: 11px;
}

.reviews-card h3,
.faq-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.04em;
}

.rating-badge {
  flex: 0 0 auto;
  background: var(--light-blue);
  border: 1px solid rgba(6, 77, 233, 0.14);
  border-radius: 12px;
  padding: 12px 14px;
  text-align: center;
}

.rating-badge strong {
  display: block;
  color: var(--blue);
  font-size: 22px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.rating-badge span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 18px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.rating strong {
  color: #4285f4;
  font-size: 22px;
}

.rating span {
  color: #f7b500;
  letter-spacing: 1px;
}

.rating small {
  color: var(--muted);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}

.quote-card {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px;
  min-height: 178px;
  background:
    linear-gradient(180deg, rgba(246, 249, 255, 0.9), rgba(255, 255, 255, 1));
}

.quote-card-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.quote-mark {
  color: var(--blue);
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.quote-card p {
  color: var(--navy);
  font-size: 13px;
  line-height: 1.75;
  margin: 8px 0 16px;
}

.quote-card small {
  font-weight: 900;
  color: var(--navy);
  font-size: 11px;
}

.faq-card details {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 12px;
  background: #ffffff;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.faq-card details:hover {
  border-color: rgba(6, 77, 233, 0.22);
  background: var(--soft);
}

.faq-card summary {
  cursor: pointer;
  padding: 17px 18px;
  font-weight: 900;
  font-size: 13px;
  color: var(--navy);
  line-height: 1.4;
}

.faq-card details p {
  padding: 0 18px 17px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

/* Support banner */

.support-banner {
  margin-top: 34px;
  background: linear-gradient(135deg, #07184f, #032b82);
  color: #ffffff;
  border-radius: 10px;
  padding: 30px 38px;
  display: grid;
  grid-template-columns: 1fr 250px auto;
  align-items: center;
  gap: 28px;
}

.support-copy {
  display: flex;
  align-items: center;
  gap: 24px;
}

.support-banner h2 {
  margin: 0 0 6px;
  font-size: 26px;
  letter-spacing: -0.03em;
}

.support-banner p {
  margin: 0;
  opacity: 0.92;
}

.support-phone {
  white-space: nowrap;
}

.support-phone a {
  margin-left: 0.2em;
}

.support-phone strong {
  font-size: 25px;
  letter-spacing: -0.03em;
}

/* Footer */

.footer {
  padding: 34px 0 20px;
  background: #ffffff;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.7fr repeat(4, 1fr);
  gap: 44px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.footer h4 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 14px;
}

.footer a,
.footer p {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  margin: 0;
}

.footer-tagline {
  margin-top: 14px !important;
  max-width: 260px;
  line-height: 1.65 !important;
}

.footer-bottom {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 34px;
  color: var(--muted);
  font-size: 12px;
}

.footer-links,
.socials {
  display: flex;
  align-items: center;
  gap: 32px;
}

.socials a {
  color: var(--navy);
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
}

/* Responsive */

@media (max-width: 1200px) {
  .header-inner {
    grid-template-columns: 190px 1fr auto;
    gap: 26px;
  }

  .logo-link {
    width: 190px;
  }

  .nav {
    gap: 20px;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 64px;
  }

  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lower-grid {
    grid-template-columns: 1fr;
  }
}

/* Mobile nav */

.mobile-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #ffffff;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
}

.mobile-nav {
  display: none;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

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

.mobile-nav-inner {
  display: grid;
  gap: 6px;
  padding: 12px 0 20px;
}

.mobile-nav-inner a {
  padding: 12px 0;
  font-weight: 800;
  color: var(--navy);
  border-bottom: 1px solid var(--border);
}

.mobile-nav-inner a.active {
  color: var(--blue);
}

.mobile-nav-inner .btn {
  margin-top: 10px;
}

/* About strip */

.about-strip {
  padding: 44px 0;
  background: linear-gradient(135deg, #06184a, #032b82);
  color: #ffffff;
}

.about-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.about-strip .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.about-strip h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 3vw, 34px);
  letter-spacing: -0.04em;
  color: #ffffff;
}

.about-strip p {
  margin: 0;
  max-width: 620px;
  line-height: 1.75;
  opacity: 0.92;
}

.text-blue {
  color: var(--blue);
}

@media (max-width: 980px) {
  .topbar {
    display: none;
  }

  .site-header {
    height: auto;
    padding: 16px 0;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
  }

  .nav,
  .header-cta {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .hero {
    padding: 50px 0;
  }

  .about-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-copy-top {
    max-width: none;
  }

  .hero-form {
    max-width: none;
    justify-self: stretch;
  }

  .consult-card {
    max-width: 560px;
  }

  .stats-card {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat:nth-child(2n) {
    border-right: 0;
  }

  .partner-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-logo {
    border: 0 !important;
  }

  .support-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }

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

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

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1190px);
  }

  .header-inner {
    grid-template-columns: 1fr;
  }

  .header-cta {
    width: 100%;
  }

  .logo-link {
    width: 100%;
    justify-content: center;
  }

  .site-logo {
    object-position: center center;
    max-width: 210px;
  }

  .hero {
    background: #ffffff;
    min-height: auto;
  }

  .hero-bg-pattern::after {
    display: none;
  }

  h1 {
    font-size: 46px;
  }

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

  .feature-row,
  .hero-actions,
  .form-grid,
  .stats-card,
  .partner-row,
  .service-grid,
  .review-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .lower-card-heading {
    display: block;
  }

  .rating-badge {
    margin-top: 16px;
    text-align: left;
  }

  .quote-card-wide {
    grid-column: auto;
  }

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

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

  .partner-logo,
  .partner-logo:last-child {
    border: 0 !important;
  }

  .support-copy {
    align-items: flex-start;
  }

  .support-phone {
    white-space: normal;
  }

  .footer-links,
  .socials {
    flex-wrap: wrap;
    gap: 18px;
  }
}

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

  .page-fade,
  .section-fade {
    opacity: 1;
    transform: none;
  }
}

/* Shared inner pages */

.page-hero,
.services-hero {
  padding: 44px 0 54px;
  background:
    radial-gradient(circle at 80% 20%, rgba(6, 77, 233, 0.09), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border-bottom: 1px solid var(--border);
}

.page-hero-grid,
.services-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
  gap: 64px;
  align-items: center;
}

.page-hero-grid-single {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.page-hero-text,
.services-hero-text {
  max-width: 620px;
  margin: 24px 0 28px;
  color: #263555;
  font-size: 17px;
  line-height: 1.75;
}

.page-hero-actions,
.services-hero-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.page-hero h1,
.services-hero h1 {
  max-width: 700px;
  font-size: clamp(42px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.consult-card-compact {
  max-width: 100%;
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.95fr);
  gap: 28px;
  align-items: start;
  padding: 48px 0 28px;
}

.contact-details-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 10px 28px rgba(15, 35, 85, 0.05);
}

.contact-details-card h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 26px;
  letter-spacing: -0.04em;
}

.contact-details-card > p {
  margin: 0 0 28px;
  color: #263555;
  line-height: 1.75;
}

.contact-detail-list {
  display: grid;
  gap: 22px;
  margin-bottom: 24px;
}

.contact-detail strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-detail p {
  margin: 0;
  color: #263555;
  line-height: 1.75;
}

.contact-detail .muted {
  color: var(--muted);
  font-size: 13px;
}

.contact-map-placeholder {
  padding: 22px;
  border-radius: 10px;
  background: var(--soft);
  border: 1px solid rgba(6, 77, 233, 0.1);
}

.contact-map-placeholder p {
  margin: 0;
  color: #263555;
  line-height: 1.65;
}

/* About */

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: start;
  padding: 52px 0 28px;
}

.about-intro-copy h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 30px;
  letter-spacing: -0.04em;
}

.about-intro-copy p {
  margin: 0 0 16px;
  color: #263555;
  line-height: 1.8;
}

.about-stats-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.about-stat {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--soft);
  text-align: center;
}

.about-stat strong {
  display: block;
  color: var(--blue);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.about-stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.about-values-section {
  padding: 44px 0;
  background: var(--soft);
}

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

.about-value-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 22px;
  box-shadow: 0 8px 20px rgba(15, 35, 85, 0.04);
}

.about-value-card h3 {
  margin: 20px 0 12px;
  color: var(--navy);
  font-size: 17px;
}

.about-value-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.about-timeline {
  padding: 48px 0 28px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: start;
  padding: 22px 24px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
}

.timeline-year {
  color: var(--blue);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.timeline-item p {
  margin: 0;
  color: #263555;
  line-height: 1.65;
}

/* FAQs page */

.faqs-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: 28px;
  align-items: start;
  padding: 48px 0 28px;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 35, 85, 0.04);
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.faq-item:hover {
  border-color: rgba(6, 77, 233, 0.22);
  background: var(--soft);
}

.faq-item summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 900;
  font-size: 15px;
  color: var(--navy);
  line-height: 1.4;
}

.faq-item p {
  padding: 0 22px 20px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.faqs-sidebar-card {
  position: sticky;
  top: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: linear-gradient(180deg, #eef4ff, #ffffff);
  box-shadow: 0 10px 28px rgba(15, 35, 85, 0.06);
}

.faqs-sidebar-card h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 22px;
  letter-spacing: -0.03em;
}

.faqs-sidebar-card p {
  margin: 0 0 18px;
  color: #263555;
  line-height: 1.65;
  font-size: 14px;
}

.sidebar-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}

/* IT Health Check */

.health-check-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
  padding: 48px 0 28px;
}

.health-check-copy h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.health-check-copy > p {
  margin: 0 0 22px;
  color: #263555;
  line-height: 1.75;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}

.check-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: #263555;
  line-height: 1.55;
  font-size: 14px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 900;
}

.health-check-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.health-check-benefits {
  display: grid;
  gap: 14px;
}

.benefit-card {
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(15, 35, 85, 0.04);
}

.benefit-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16px;
}

.benefit-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

.support-phone a {
  color: inherit;
  text-decoration: none;
}

/* Phone numbers: tappable on mobile only (CTA call buttons stay clickable) */
a[href^="tel:"]:not(.btn) {
  pointer-events: none;
  cursor: text;
  text-decoration: none;
  color: inherit;
}

@media (max-width: 900px) {
  a[href^="tel:"]:not(.btn) {
    pointer-events: auto;
    cursor: pointer;
  }
}

@media (max-width: 1100px) {
  .page-hero-grid,
  .services-hero-grid,
  .contact-grid,
  .about-intro,
  .faqs-page,
  .health-check-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faqs-sidebar-card {
    position: static;
  }
}

@media (max-width: 700px) {
  .about-values-grid,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .health-check-actions {
    display: grid;
  }

  .health-check-actions .btn {
    width: 100%;
  }
}

.nav .active,
.mobile-nav-inner a.active {
  color: var(--blue);
}

.breadcrumbs {
  margin-bottom: 34px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--blue);
}

.services-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.proof-item {
  min-height: 146px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 26px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(223, 230, 243, 0.9);
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(15, 35, 85, 0.05);
}

.proof-item span {
  width: 48px;
  height: 48px;
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex: 0 0 auto;
}

.proof-item strong,
.proof-item small {
  display: block;
}

.proof-item strong {
  color: var(--navy);
  font-size: 16px;
  line-height: 1.35;
}

.proof-item small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.services-explorer {
  padding: 52px 0 18px;
}

.services-title-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: center;
  margin-bottom: 30px;
}

.services-title-row span {
  height: 1px;
  background: var(--border);
}

.services-title-row h2 {
  margin: 0;
  color: var(--navy);
  font-size: 28px;
  letter-spacing: -0.04em;
  text-align: center;
}

.service-group {
  margin-bottom: 28px;
}

.service-group > h3 {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-accordion {
  margin-bottom: 10px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(15, 35, 85, 0.04);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.service-accordion:hover {
  border-color: rgba(6, 77, 233, 0.22);
  box-shadow: 0 12px 28px rgba(15, 35, 85, 0.08);
  transform: translateY(-1px);
}

.service-accordion summary {
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: 68px minmax(210px, 1.1fr) minmax(250px, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px 22px;
}

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

.service-round {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.service-round-blue {
  background: #165dff;
}

.service-round-red {
  background: #e21f35;
}

.service-round-green {
  background: #25a855;
}

.service-round-orange {
  background: #ff7a1a;
}

.service-round-purple {
  background: #8d3fc7;
}

.service-round-teal {
  background: #1aa8a8;
}

.service-summary-main strong,
.service-summary-main small {
  display: block;
}

.service-summary-main strong {
  color: var(--navy);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.service-summary-main small {
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
  font-size: 13px;
}

.service-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-tags em {
  font-style: normal;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--soft);
  color: #41506f;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.service-view {
  color: var(--blue);
  font-size: 13px;
  font-weight: 900;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.service-view::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
}

.service-accordion[open] .service-view::after {
  transform: rotate(225deg);
  margin-top: 4px;
}

.service-detail-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.9fr) minmax(260px, 0.7fr);
  gap: 28px;
  padding: 24px 34px 30px 108px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.service-detail-panel p {
  margin: 0;
  color: #263555;
  font-size: 14px;
  line-height: 1.75;
}

.service-detail-panel h4 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 14px;
}

.service-detail-panel ul,
.bundle-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-detail-panel li,
.bundle-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: #263555;
  font-size: 13px;
  line-height: 1.45;
}

.service-detail-panel li::before,
.bundle-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 900;
}

.service-detail-panel aside {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 18px;
  background: #ffffff;
}

.service-detail-panel aside a,
.bundle-card a {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-weight: 900;
  font-size: 13px;
}

.service-help-card {
  margin-top: 38px;
  padding: 38px;
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 28px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(135deg, #eef4ff, #ffffff);
  box-shadow: 0 12px 30px rgba(15, 35, 85, 0.06);
}

.help-icon {
  width: 72px;
  height: 72px;
  border: 2px solid var(--blue);
  border-radius: 999px;
  color: var(--blue);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 900;
}

.service-help-card h2 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 30px;
  letter-spacing: -0.04em;
}

.service-help-card p {
  margin: 0;
  color: #263555;
  line-height: 1.6;
}

.help-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.service-bundles-section {
  padding: 52px 0 28px;
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.bundle-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 8px 20px rgba(15, 35, 85, 0.04);
}

.bundle-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 18px;
}

.bundle-card p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.services-partners {
  margin-top: 10px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 35, 85, 0.05);
  overflow: hidden;
}

.services-partners p {
  margin: 0;
  padding: 22px 24px 0;
  text-align: center;
  color: var(--navy);
  font-weight: 900;
}

.services-partners div {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.services-partners span {
  min-height: 98px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 900;
  border-right: 1px solid var(--border);
}

.services-partners span:last-child {
  border-right: 0;
}

@media (max-width: 1100px) {
  .services-hero-grid,
  .service-detail-panel,
  .service-help-card {
    grid-template-columns: 1fr;
  }

  .service-detail-panel {
    padding-left: 34px;
  }

  .service-accordion summary {
    grid-template-columns: 58px 1fr;
  }

  .service-tags,
  .service-view {
    grid-column: 2;
  }

  .bundle-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .help-actions {
    justify-content: flex-start;
  }

  .services-partners div {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 700px) {
  .services-hero {
    padding: 34px 0 40px;
  }

  .services-proof-grid,
  .bundle-grid,
  .services-partners div {
    grid-template-columns: 1fr;
  }

  .services-hero-actions,
  .help-actions {
    display: grid;
  }

  .services-title-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .services-title-row span {
    display: none;
  }

  .service-accordion summary {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .service-tags,
  .service-view {
    grid-column: auto;
  }

  .service-detail-panel {
    padding: 22px;
  }

  .service-help-card {
    padding: 24px;
  }

  .services-partners span {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
}
/* --- Real assets / functional polish --- */

.site-logo {
  display: block;
  width: 210px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
}

.footer-logo-link .site-logo {
  width: 190px;
  max-height: 64px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.partner-logo {
  font-size: 0;
}

.partner-logo img {
  max-width: 140px;
  max-height: 52px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.15);
}

.service-icon-img,
.feature-icon-img,
.support-icon-img {
  display: block;
  object-fit: contain;
}

.service-card .service-icon-img {
  width: 72px;
  height: 72px;
  margin-bottom: 8px;
}

.feature-icon-img {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.support-icon-img {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  filter: none;
}

.about-strip-with-image {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.about-strip-image img,
.page-hero-img,
.home-inset,
.about-side-img {
  width: 100%;
  height: auto;
  border-radius: 14px;
  display: block;
  object-fit: cover;
}

.about-strip-copy,
.rich-text {
  color: inherit;
  line-height: 1.7;
}

.about-strip-copy p,
.rich-text p {
  margin: 0 0 14px;
}

.quote-card p p {
  margin: 0;
}

.form-extra {
  position: absolute !important;
  left: -10000px !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

.form-check-wrap {
  display: flex;
  align-items: center;
  grid-column: 1 / -1;
}

.form-check-wrap label {
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.form-check-wrap input[type="checkbox"] {
  width: auto;
  min-width: 0;
  padding: 0;
}

.recaptcha-wrap {
  margin: 16px 0;
}

.form-message,
.alert {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 14px;
}

.alert-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.alert-danger,
.text-danger {
  color: #b91c1c;
}

.alert-danger {
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 12px 14px;
  border-radius: 8px;
  margin-bottom: 12px;
}

.next-step-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--navy);
  font-weight: 800;
}

.next-step-link:hover {
  color: var(--blue);
}

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.footer-socials img,
.social-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.footer-contact p {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.footer-contact a {
  color: var(--navy);
  font-weight: 700;
}

.service-round-img {
  background: var(--light-blue) !important;
  overflow: hidden;
}

.service-round-img img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.content-panel {
  padding: 20px 0 70px;
}

.panel-heading {
  margin: 0 0 24px;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.form-shell {
  max-width: 720px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 28px rgba(15, 35, 85, 0.05);
}

.form-shell .form-floating,
.form-shell .mb-3,
.form-shell .mb-4 {
  margin-bottom: 14px;
}

.form-shell label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

.form-shell .btn,
.form-shell button {
  margin-top: 8px;
}

.contact-map iframe {
  width: 100%;
  min-height: 240px;
  border: 0;
  border-radius: 12px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 980px) {
  .about-strip-with-image {
    grid-template-columns: 1fr;
  }
}

/* --- Clean balanced polish --- */

html {
  font-size: 18.5px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: var(--font-geist-sans), "Segoe UI", sans-serif;
  font-weight: 500;
  letter-spacing: -0.011em;
  background: #ffffff;
}

.container {
  width: min(1200px, calc(100% - 48px));
}

.site-header {
  height: 90px;
  position: sticky;
  top: 0;
  background: #06184a;
  border-bottom: 0;
  box-shadow: 0 8px 24px rgba(6, 24, 74, 0.18);
  z-index: 40;
}

.header-inner {
  grid-template-columns: 220px 1fr auto;
  gap: 28px;
  height: 90px;
}

.logo-link {
  width: 220px !important;
  height: 58px !important;
  display: inline-flex !important;
  align-items: center;
  overflow: hidden !important;
}

.site-logo {
  width: 220px !important;
  max-width: 220px !important;
  height: auto !important;
  max-height: 58px !important;
  object-fit: contain !important;
  object-position: left center;
}

.footer {
  background: #06184a !important;
  color: #ffffff;
  padding: 56px 0 28px !important;
}

.footer-main {
  border-bottom-color: rgba(255, 255, 255, 0.12) !important;
}

.footer-logo-link {
  display: inline-flex !important;
  align-items: center;
  width: 220px !important;
  height: 58px !important;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
}

.footer-logo-link .site-logo {
  width: 220px !important;
  max-width: 220px !important;
  max-height: 58px !important;
}

.footer h4 {
  color: #ffffff !important;
}

.footer a,
.footer p,
.footer-tagline {
  color: rgba(255, 255, 255, 0.78) !important;
}

.footer a:hover {
  color: #ffffff !important;
}

.footer-bottom {
  color: rgba(255, 255, 255, 0.65);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.78) !important;
}

.footer-socials img,
.social-icon {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.nav {
  gap: 28px;
  font-size: 15px;
  font-weight: 700;
}

.nav a {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  opacity: 0.9;
  transition: color 160ms ease, opacity 160ms ease;
}

.nav a:hover,
.nav a.active {
  color: #9ec0ff;
  opacity: 1;
}

.mobile-nav-toggle span {
  background: #ffffff;
}

.mobile-nav {
  background: #06184a;
}

.mobile-nav a {
  color: #ffffff;
}

.btn {
  min-height: 54px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 10px;
  padding: 0 22px 0 24px;
  box-shadow: 0 10px 22px rgba(6, 77, 233, 0.14);
}

.btn-outline {
  box-shadow: none;
}

.btn-large {
  min-height: 60px;
  font-size: 17px;
}

.btn-arrow {
  width: 30px;
  height: 30px;
}

.btn-arrow svg path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.eyebrow {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.hero {
  padding: 52px 0 40px;
  min-height: 0;
  background: #ffffff;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(6, 24, 74, 0.08) 20%,
    rgba(6, 77, 233, 0.18) 50%,
    rgba(6, 24, 74, 0.08) 80%,
    transparent 100%
  );
  z-index: 3;
  pointer-events: none;
}

.hero-inner {
  grid-template-columns: minmax(0, 1fr) minmax(360px, 400px);
  gap: clamp(96px, 11vw, 160px);
  align-items: start;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: auto;
  align-self: start;
  max-width: 580px;
  padding-right: 12px;
  min-width: 0;
}

.hero-form {
  width: 100%;
  max-width: 400px;
  justify-self: end;
  position: relative;
  z-index: 2;
}

.hero-form .consult-card {
  margin-bottom: 0;
}

.hero-copy-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 10px;
}

.hero-copy-top .eyebrow {
  margin: 0 0 20px;
}

.hero-copy-top h1 {
  margin: 0 0 20px;
}

.hero-copy-top .hero-text {
  margin: 0;
  max-width: 36ch;
}

.hq-bar {
  display: none;
}

.hero h1,
.page-hero h1,
h1 {
  font-size: clamp(48px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.hero-heading-oneline {
  font-size: clamp(42px, 4.25vw, 58px) !important;
  white-space: normal !important;
  max-width: 11em;
  line-height: 1.05;
}

.hero-text,
.page-hero-text {
  font-size: 20px;
  line-height: 1.7;
  color: #3a4766;
  font-weight: 500;
  margin: 0;
}

.hero-copy .hero-text {
  font-size: 21px;
}

.feature-row {
  gap: 22px 48px;
  margin: 0;
  padding: 4px 0 0;
}

.hero-actions {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 18px;
  margin-top: 8px;
}

.hero-actions .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.hero-actions .btn-primary {
  box-shadow:
    0 10px 22px rgba(6, 77, 233, 0.18),
    0 0 0 1.5px rgba(6, 24, 74, 0.12);
}

.hero-actions .btn-outline {
  border-width: 2px;
  border-color: rgba(6, 77, 233, 0.45);
}

.mini-feature {
  padding: 12px 0 0;
  border-top: 1px solid rgba(223, 230, 243, 0.9);
  align-items: center;
}

.mini-feature strong,
.hq strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.mini-feature strong {
  white-space: nowrap;
}

.mini-feature small,
.hq small {
  font-size: 13px;
  line-height: 1.45;
}

.feature-icon-img {
  width: 48px;
  height: 48px;
}

.hq {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 48px;
  margin-bottom: 0;
  padding-top: 24px;
  border-top: 1px solid rgba(223, 230, 243, 0.95);
}

.hq strong {
  display: block;
  color: var(--navy);
}

.hq small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.hq-logo {
  display: none !important;
}

.consult-card {
  border: 1.5px solid rgba(6, 77, 233, 0.28);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 24px 48px rgba(6, 24, 74, 0.1),
    0 0 0 1px rgba(6, 24, 74, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  padding: 26px 24px;
  border-radius: 20px;
}

.consult-card input,
.consult-card select,
.consult-card textarea {
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(223, 230, 243, 0.95);
}

.consult-card h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.consult-card p,
.consult-card input,
.consult-card select,
.consult-card textarea {
  font-size: 14px;
}

.partners-section {
  padding: 36px 0 28px;
}

.partners-heading {
  text-align: center;
  margin-bottom: 22px;
}

.partners-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.partners-card {
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.partners-section .partner-grid,
.partner-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 20px 32px !important;
  align-items: center !important;
  justify-items: center;
}

.partners-section .partner-logo,
.partner-logo {
  min-height: 96px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  padding: 20px 16px !important;
  margin: 0 !important;
  border: 0 !important;
  background: transparent !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  flex: none !important;
  box-shadow: none !important;
}

.partner-logo:nth-child(5n),
.partner-logo:nth-last-child(-n + 5),
.partner-logo:nth-child(6n),
.partner-logo:nth-child(4n),
.partner-logo:nth-child(2n),
.partner-logo:last-child {
  border: 0 !important;
}

.partners-section .partner-logo img,
.partner-logo img {
  max-width: 140px !important;
  max-height: 52px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain;
  opacity: 0.78;
  transition: opacity 160ms ease, transform 160ms ease;
  filter: none !important;
}

.partner-logo:hover img {
  opacity: 1;
  transform: translateY(-1px);
}

.hero-heading-oneline,
.heading-oneline {
  white-space: nowrap !important;
}

.section-heading h2.heading-oneline {
  max-width: none;
  white-space: nowrap !important;
  font-size: clamp(26px, 2.8vw, 36px);
}

.home-closer .heading-oneline {
  font-size: clamp(28px, 3vw, 38px);
}

.services-section {
  padding: 64px 0 48px;
  background:
    radial-gradient(circle at top center, rgba(6, 77, 233, 0.04), transparent 55%),
    #f8fbff;
}

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2 {
  font-size: clamp(30px, 3.2vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  max-width: 720px;
  margin: 0 auto 12px;
}

.section-lead {
  margin: 0 auto;
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  text-align: center;
}

.section-lead-oneline {
  max-width: none;
  white-space: nowrap;
}

.service-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

a.service-card {
  text-decoration: none;
  color: inherit;
}

.service-card {
  min-height: 280px;
  padding: 28px 26px 24px;
  border-radius: 18px;
  border: 1px solid rgba(223, 230, 243, 0.95);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 35, 85, 0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

a.service-card::after {
  content: none !important;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(6, 77, 233, 0.22);
  box-shadow: 0 18px 36px rgba(15, 35, 85, 0.1);
}

.service-icon-wrap {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(180deg, #eef4ff, #f7f9ff);
  border: 1px solid rgba(6, 77, 233, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.service-card h3 {
  margin: 16px 0 10px;
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--navy);
}

.service-card p {
  font-size: 15px;
  line-height: 1.55;
  margin: 0 0 18px;
  color: var(--muted);
  flex: 1;
}

.service-card .service-icon-img {
  width: 44px;
  height: 44px;
}

.service-card-link {
  font-weight: 700;
  font-size: 14px;
  color: var(--blue);
  margin-top: auto;
}

.service-card:hover .service-card-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-closer {
  position: relative;
  margin: 56px 0 0;
  padding: 72px 0 0;
  overflow: hidden;
  color: #ffffff;
  background: #06184a;
}

.home-closer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 12% 0%, rgba(6, 77, 233, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 30%, rgba(255, 255, 255, 0.04), transparent 55%);
  pointer-events: none;
}

.home-closer .container,
.home-closer .about-strip-inner {
  position: relative;
  z-index: 1;
}

.about-strip {
  margin: 0;
  border-radius: 0;
  background: transparent;
}

.about-strip-inner,
.about-strip-with-image {
  padding: 0 0 48px;
}

.home-closer .eyebrow {
  color: rgba(158, 192, 255, 0.95);
}

.home-closer h2,
.about-strip h2 {
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: #ffffff;
}

.about-strip p,
.about-strip-copy,
.home-closer .about-strip-copy {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.92;
  color: rgba(255, 255, 255, 0.9);
  max-width: 540px;
}

.about-strip-cta {
  margin-top: 28px;
}

.about-strip-image img,
.home-closer .home-inset {
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.home-closer-support {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px 40px;
  align-items: center;
  margin: 0;
  padding: 28px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.home-closer-support .support-copy {
  display: flex;
  align-items: center;
  gap: 18px;
}

.home-closer-support h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.home-closer-support p {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.home-closer-support-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.home-closer-support .support-phone {
  margin: 0;
  white-space: nowrap;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.home-closer-support .support-phone a,
.home-closer-support .support-phone strong {
  color: #ffffff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.home-closer-support picture {
  display: block;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
}

.home-closer-support .support-icon-img {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50%;
  background: transparent;
  padding: 0;
  filter: none !important;
  display: block;
  object-fit: contain;
}

.support-banner {
  margin: 28px auto 40px;
  padding: 26px 30px;
  border-radius: 16px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 20px 28px;
  align-items: center;
  box-shadow: 0 16px 36px rgba(6, 24, 74, 0.18);
}

.support-banner h2 {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.support-banner p,
.support-phone {
  font-size: 15px;
}

.support-phone strong {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.support-icon-img {
  width: 52px;
  height: 52px;
  filter: none;
  border-radius: 14px;
  box-shadow: none;
}

.footer {
  margin-top: 0 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar {
  font-size: 13px;
  font-weight: 600;
}

.topbar-left a[href^="tel"] {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.footer h4 {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer a,
.footer p,
.footer-tagline {
  font-size: 14px;
  line-height: 1.65;
}

.footer-tagline {
  max-width: 320px;
  margin-top: 12px !important;
}

.footer-tagline-sub {
  white-space: nowrap;
  display: inline-block;
}

.footer-locality,
.footer-county,
.footer-postcode {
  margin: 0 !important;
}

.footer-postcode {
  white-space: nowrap;
}

.footer-contact p,
.footer-contact a {
  color: rgba(255, 255, 255, 0.78) !important;
}

.footer-contact a:hover {
  color: #ffffff !important;
}

.footer-contact a.enco,
.footer-contact a[href^="mailto"] {
  white-space: nowrap;
  display: inline-block;
}

.footer-contact a[href^="tel"] {
  display: inline-block;
  margin-top: 4px;
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  color: #ffffff !important;
  white-space: nowrap;
}

.footer-main {
  grid-template-columns: 1.5fr repeat(3, minmax(0, 1fr)) minmax(190px, 1.15fr);
  column-gap: 28px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.page-hero {
  padding: 56px 0 48px;
  text-align: left;
}

.page-hero-grid-single {
  max-width: none;
  justify-items: start;
}

.page-hero-copy {
  max-width: 720px;
  text-align: left;
}

.page-hero h1 {
  margin: 0;
}

.page-hero-lead {
  margin: 22px 0 0;
  max-width: 42ch;
  color: #3a4766;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 500;
}

.page-hero-actions {
  margin-top: 28px;
}

.page-hero-text {
  margin-top: 22px;
}

.about-intro-copy-wide {
  max-width: 760px;
}

.brochure-download-actions .download-form {
  margin: 0;
}

.brochure-panel {
  padding: 36px 0 72px;
}

.brochure-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  gap: 40px 56px;
  align-items: start;
}

.brochure-panel-copy h2 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brochure-panel-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 36ch;
}

.brochure-extra {
  margin-top: 18px;
  color: #3a4766;
}

.brochure-form-shell {
  background: #ffffff;
  border: 1px solid rgba(223, 230, 243, 0.95);
}

.brochure-form textarea {
  margin-top: 12px;
}

.contact-grid {
  padding-top: 8px;
}

.contact-grid .consult-card {
  margin: 0;
}

.contact-hero {
  padding: 40px 0 28px;
  border-bottom: none;
  background:
    radial-gradient(circle at 82% 18%, rgba(6, 77, 233, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.contact-hero .page-hero-grid {
  display: grid;
  /* Same column split as visit grid; slightly wider gap so form isn't cramped */
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  justify-content: stretch;
  align-items: start;
  gap: 36px;
  column-gap: 36px;
}

.contact-hero .page-hero-copy {
  padding-top: 10px;
  max-width: none;
  width: 100%;
}

.contact-hero .page-hero-lead {
  margin-top: 16px;
  max-width: 42ch;
}

.contact-hero .page-hero-actions {
  margin-top: 24px;
}

.contact-hero .page-hero-form,
.page-hero-form {
  width: 100%;
  max-width: none;
  justify-self: stretch;
  margin-top: 0;
  margin-left: 0;
}

.page-hero-form .consult-card {
  margin: 0;
  padding: 28px 28px 26px;
  border-radius: 16px;
  border: 1px solid rgba(223, 230, 243, 0.95);
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.page-hero-form .consult-card h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.page-hero-form .consult-card > p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--muted);
}

.page-hero-form .consult-card input,
.page-hero-form .consult-card select,
.page-hero-form .consult-card textarea {
  border-radius: 10px;
  border: 1px solid rgba(210, 220, 236, 0.95);
  background: #f8fbff;
  box-shadow: none;
}

.page-hero-form .consult-card input:focus,
.page-hero-form .consult-card select:focus,
.page-hero-form .consult-card textarea:focus {
  border-color: rgba(6, 77, 233, 0.45);
  background: #ffffff;
  outline: none;
  box-shadow: 0 0 0 3px rgba(6, 77, 233, 0.1);
}

.page-hero-form .consult-card .form-grid {
  gap: 14px;
}

.page-hero-form .consult-card .btn {
  margin-top: 4px;
}

.contact-details-section {
  padding: 0 0 48px;
  background: #f8fbff;
  border-top: none;
}

.contact-details-section > .container {
  padding-top: 8px;
}

.contact-visit-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 20px;
  align-items: stretch;
}

.contact-details-section .contact-details-card {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px 26px;
  box-shadow: none;
  background: #ffffff;
}

.contact-details-section .contact-details-card h2 {
  margin: 0 0 18px;
  font-size: 24px;
  letter-spacing: -0.03em;
}

.contact-details-section .contact-detail-list {
  margin: 0;
  gap: 16px;
  flex: 1;
}

.contact-details-section .contact-detail strong {
  margin-bottom: 4px;
  font-size: 12px;
}

.contact-details-section .contact-detail p {
  line-height: 1.55;
}

.contact-details-section .contact-detail-list > p {
  margin: 8px 0 0;
  color: var(--muted);
}

.contact-details-section .contact-detail-list > p small {
  font-size: 12.5px;
  line-height: 1.45;
}

.contact-map-card {
  margin: 0;
  height: 100%;
  min-height: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(223, 230, 243, 0.95);
  background: #ffffff;
  box-shadow: none;
}

.contact-map-card .contact-map {
  margin: 0;
  height: 100%;
  min-height: 280px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.contact-map-card .contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 280px;
}

/* Keep contact page support band tidy under the visit block */
body:has(.contact-hero) .support-banner {
  margin-top: 8px;
  margin-bottom: 40px;
}

@media (max-width: 980px) {
  .brochure-panel-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .contact-hero .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .page-hero-form {
    max-width: none;
    justify-self: stretch;
  }

  .contact-visit-grid {
    grid-template-columns: 1fr;
  }

  .contact-details-section > .container {
    padding-top: 4px;
  }

  .contact-map-card,
  .contact-map-card .contact-map,
  .contact-map-card .contact-map iframe {
    min-height: 240px;
  }
}

.services-explorer {
  padding: 48px 0 72px;
  background:
    radial-gradient(circle at top center, rgba(6, 77, 233, 0.035), transparent 50%),
    #f8fbff;
}

.services-group {
  margin-bottom: 36px;
  padding: 28px;
  border-radius: 20px;
  background: #ffffff;
  border: 1px solid rgba(223, 230, 243, 0.95);
  box-shadow: 0 12px 28px rgba(15, 35, 85, 0.04);
}

.services-group:last-child {
  margin-bottom: 0;
}

.services-group-head {
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(223, 230, 243, 0.95);
}

.services-group-head h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.services-group-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

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

button.service-tile {
  margin: 0;
  width: 100%;
  border: 1px solid rgba(223, 230, 243, 0.95);
  border-radius: 14px;
  background: #f8fbff;
  box-shadow: none;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
  padding: 16px 16px;
  min-height: 0;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

button.service-tile:hover {
  border-color: rgba(6, 77, 233, 0.22);
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(15, 35, 85, 0.07);
  transform: translateY(-1px);
}

.service-tile-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(6, 77, 233, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-tile-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.service-tile-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.service-tile-copy strong {
  color: var(--navy);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.service-tile-copy small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-tile-action {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(6, 77, 233, 0.18);
  background: #ffffff;
  position: relative;
  flex-shrink: 0;
}

.service-tile-action::before,
.service-tile-action::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--blue);
}

.service-tile-action::before {
  width: 12px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.service-tile-action::after {
  width: 2px;
  height: 12px;
  transform: translate(-50%, -50%);
}

.service-overlay[hidden] {
  display: none !important;
}

.service-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: serviceOverlayIn 180ms ease;
}

.service-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 24, 74, 0.55);
  backdrop-filter: blur(5px);
}

.service-overlay-panel {
  position: relative;
  z-index: 1;
  width: min(1000px, calc(100vw - 32px));
  max-height: min(88vh, 880px);
  overflow: auto;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 32px 80px rgba(6, 24, 74, 0.34);
  padding: 0;
  animation: servicePanelIn 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-overlay-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
  z-index: 2;
  transition: background 160ms ease, transform 160ms ease;
}

.service-overlay-close:hover {
  background: rgba(255, 255, 255, 0.24);
  transform: scale(1.04);
}

.service-overlay-close span {
  position: absolute;
  inset: 0;
}

.service-overlay-close span::before,
.service-overlay-close span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: #ffffff;
}

.service-overlay-close span::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.service-overlay-close span::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.service-overlay-hero {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px 72px 32px 32px;
  color: #ffffff;
  background:
    radial-gradient(ellipse 70% 120% at 0% 0%, rgba(6, 77, 233, 0.55), transparent 55%),
    linear-gradient(135deg, #0a2266 0%, #06184a 55%, #041033 100%);
}

.service-overlay-icon {
  width: 104px;
  height: 104px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.service-overlay-icon picture {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.service-overlay-icon img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
}

.service-overlay-hero-copy .eyebrow {
  margin: 0 0 8px;
  color: rgba(158, 192, 255, 0.95);
}

.service-overlay-hero-copy h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(26px, 3.2vw, 34px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.service-overlay-lead {
  margin: 0;
  max-width: 46ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.55;
}

.service-overlay-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.75fr);
  gap: 28px;
  padding: 28px;
  align-items: start;
}

.service-overlay-main {
  color: #243352;
  font-size: 16px;
  line-height: 1.75;
}

.service-overlay-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.service-overlay-points li {
  position: relative;
  margin: 0;
  padding: 16px 18px 16px 48px;
  border-radius: 14px;
  background: #f6f9ff;
  border: 1px solid rgba(6, 77, 233, 0.08);
  color: #243352;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 500;
}

.service-overlay-points li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 22px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(6, 77, 233, 0.12);
  box-shadow: inset 0 0 0 5px var(--blue);
}

.service-overlay-main p {
  margin: 0 0 14px;
}

.service-overlay-aside {
  position: sticky;
  top: 16px;
  padding: 24px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, #f4f8ff 0%, #ffffff 100%);
  border: 1px solid rgba(6, 77, 233, 0.12);
  box-shadow: 0 14px 32px rgba(15, 35, 85, 0.06);
}

.service-overlay-aside-label {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-overlay-aside h4 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.025em;
}

.service-overlay-aside > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.55;
}

.service-overlay-call {
  margin: 18px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(223, 230, 243, 0.95);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.service-overlay-call a,
.service-overlay-call strong {
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.service-overlay-call a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.service-overlay-open {
  overflow: hidden;
}

@keyframes serviceOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.service-detail-panel,
.service-detail-panel p,
.rich-text {
  font-size: 16px;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .services-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .service-overlay-body {
    grid-template-columns: 1fr;
  }

  .service-overlay-aside {
    position: static;
  }
}

@media (max-width: 700px) {
  .services-group {
    padding: 20px;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .service-overlay-hero {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 56px 22px 22px;
  }

  .service-overlay-body {
    padding: 22px;
    gap: 20px;
  }
}

.about-values-section {
  padding: 56px 0;
  background:
    radial-gradient(circle at top center, rgba(6, 77, 233, 0.04), transparent 55%),
    #f8fbff;
}

.about-values-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.about-value-card {
  padding: 26px 24px;
  border-radius: 16px;
  border: 1px solid rgba(223, 230, 243, 0.95);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 35, 85, 0.05);
  min-height: 160px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.about-value-card:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 77, 233, 0.2);
  box-shadow: 0 16px 34px rgba(15, 35, 85, 0.09);
}

.about-value-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.about-value-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
}

.testimonials-section {
  padding: 56px 0 72px;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  flex: 1 1 300px;
  max-width: calc(33.333% - 12px);
  min-width: min(100%, 280px);
  min-height: 0;
  padding: 28px 26px 24px;
  border-radius: 18px;
  border: 1px solid rgba(223, 230, 243, 0.95);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 35, 85, 0.05);
}

.testimonial-card .quote-mark {
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
  font-weight: 800;
  margin-bottom: 4px;
}

.testimonial-card p {
  margin: 0 0 22px;
  color: #243352;
  font-size: 16px;
  line-height: 1.65;
  flex: 1;
}

.testimonial-card footer {
  display: grid;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid rgba(223, 230, 243, 0.95);
}

.testimonial-card footer strong {
  color: var(--navy);
  font-size: 15px;
  font-weight: 800;
}

.testimonial-card footer span {
  color: var(--muted);
  font-size: 14px;
}

.contact-map {
  margin-top: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(223, 230, 243, 0.95);
  background: #eef3fb;
  box-shadow: 0 12px 28px rgba(15, 35, 85, 0.05);
}

.contact-map iframe {
  display: block;
  width: 100%;
  min-height: 280px;
  height: 280px;
  border: 0;
}

.contact-details-card {
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(223, 230, 243, 0.95);
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(15, 35, 85, 0.05);
}

.content-panel {
  padding-bottom: 80px;
}

.form-shell {
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 18px 40px rgba(15, 35, 85, 0.06);
}

@media (max-width: 1200px) {
  .service-grid,
  .about-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1100px) {
  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-card {
    max-width: calc(50% - 9px);
  }
}

@media (max-width: 1100px) {
  .partners-section .partner-grid,
  .partner-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
    gap: 16px 20px !important;
  }

  .partner-logo,
  .partner-logo:nth-child(5n),
  .partner-logo:nth-child(4n) {
    border: 0 !important;
  }
}

@media (max-width: 900px) {
  .partners-section .partner-grid,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px 18px !important;
  }

  .partners-section .partner-logo,
  .partner-logo {
    min-height: 80px !important;
    padding: 16px 12px !important;
  }

  .partner-logo,
  .partner-logo:nth-child(5n),
  .partner-logo:nth-child(2n),
  .partner-logo:nth-last-child(-n + 5),
  .partner-logo:nth-last-child(-n + 2) {
    border: 0 !important;
  }
}

@media (max-width: 980px) {
  .hero-inner,
  .about-strip-with-image {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .support-banner {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .home-closer {
    padding: 48px 0 0;
  }

  .home-closer .about-strip-inner,
  .home-closer .about-strip-with-image {
    padding-bottom: 28px;
  }

  .home-closer-support {
    grid-template-columns: 1fr;
    padding-bottom: 32px;
  }

  .home-closer-support-actions {
    justify-content: flex-start;
  }

  .site-header {
    height: 78px;
  }
}

@media (max-width: 700px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  .hero-heading-oneline,
  .heading-oneline {
    white-space: normal !important;
  }

  .section-lead-oneline {
    white-space: normal;
    max-width: 36ch;
  }

  .service-grid,
  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .partner-grid {
    gap: 20px 28px !important;
  }

  .testimonial-card {
    max-width: 100%;
  }

  .partner-logo,
  .partner-logo:nth-child(4n),
  .partner-logo:nth-child(2n) {
    border: 0 !important;
  }

  .hero {
    padding: 36px 0 20px;
  }

  .hero-copy-main {
    gap: 22px;
  }

  .hq {
    margin-top: 28px;
  }
}

/* ===== Mobile polish: header, hamburger, key pages ===== */

body.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-toggle {
  position: relative;
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  transition: background-color 160ms ease, border-color 160ms ease;
}

.mobile-nav-toggle:hover,
.mobile-nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  outline: none;
}

.mobile-nav-toggle span {
  transition: transform 180ms ease, opacity 180ms ease, width 180ms ease;
  transform-origin: center;
}

.mobile-nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.mobile-nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  border-bottom: 0;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.28);
}

.mobile-nav-inner {
  gap: 0;
  padding: 8px 0 22px;
}

.mobile-nav-inner nav {
  display: grid;
  gap: 0;
}

.mobile-nav-inner nav a {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
}

.mobile-nav-inner nav a:last-child {
  border-bottom: 0;
}

.mobile-nav-inner nav a.active {
  color: #9ec0ff;
}

.mobile-nav-inner .mobile-nav-cta,
.mobile-nav-inner .btn {
  margin-top: 18px;
  width: 100%;
  justify-content: center;
  border-bottom: 0;
}

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

  .header-inner {
    grid-template-columns: 1fr auto !important;
    gap: 12px !important;
    height: 72px;
    align-items: center;
  }

  .logo-link {
    width: auto !important;
    max-width: 168px;
    height: 44px !important;
    justify-content: flex-start !important;
  }

  .site-logo {
    width: auto !important;
    max-width: 168px !important;
    max-height: 44px !important;
    height: auto !important;
    object-position: left center !important;
  }

  .mobile-nav-toggle {
    display: inline-flex;
    width: 46px;
    height: 46px;
  }

  .page-hero {
    padding: 28px 0 24px;
  }

  .page-hero h1 {
    font-size: clamp(32px, 8vw, 42px);
  }

  .page-hero-lead {
    font-size: 16px;
    margin-top: 14px;
  }

  .page-hero-actions {
    margin-top: 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .page-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .feature-row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin: 18px 0 20px;
  }

  .consult-card,
  .form-shell {
    max-width: none;
    padding: 22px 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-hero {
    padding: 24px 0 18px;
  }

  .contact-hero .page-hero-grid {
    gap: 20px;
  }

  .contact-details-section {
    padding-bottom: 36px;
  }

  .contact-details-section > .container {
    padding-top: 4px;
  }

  .contact-details-section .contact-details-card {
    padding: 20px;
  }

  .contact-details-section .contact-details-card h2 {
    font-size: 22px;
    margin-bottom: 16px;
  }

  .services-explorer {
    padding: 28px 0 48px;
  }

  .services-group {
    margin-bottom: 18px;
    padding: 18px;
  }

  .services-group-head {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .services-group-head h2 {
    font-size: 20px;
  }

  .service-tile-copy small {
    -webkit-line-clamp: 2;
  }

  .support-banner {
    padding: 22px 18px;
    gap: 16px;
  }

  .support-copy {
    gap: 14px;
  }

  .support-icon-img {
    width: 48px;
    height: 48px;
  }

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

  .footer {
    padding: 40px 0 24px !important;
  }

  .home-closer .about-strip-copy {
    max-width: none;
    font-size: 15px;
  }

  .about-strip-with-image {
    gap: 24px;
  }

  .service-overlay-panel {
    width: min(100% - 20px, 920px);
    max-height: calc(100vh - 24px);
  }

  .service-overlay-hero {
    padding: 22px 52px 18px 18px;
  }

  .service-overlay-body {
    padding: 18px;
    gap: 16px;
  }
}

@media (max-width: 700px) {
  .header-inner {
    grid-template-columns: 1fr auto !important;
  }

  .logo-link {
    width: auto !important;
    max-width: 150px;
    justify-content: flex-start !important;
  }

  .site-logo {
    max-width: 150px !important;
    object-position: left center !important;
  }

  h1,
  .hero h1 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .hero {
    padding: 28px 0 18px;
  }

  .hero-text {
    margin: 16px 0 18px;
  }

  .hq {
    margin-top: 20px;
    padding: 14px 16px;
  }

  .section-heading h2,
  .home-closer h2 {
    font-size: clamp(24px, 7vw, 32px);
  }

  .btn {
    min-height: 50px;
    font-size: 15px;
    padding: 0 18px 0 20px;
  }

  .btn-large {
    min-height: 52px;
    font-size: 16px;
  }

  .page-hero-form,
  .hero-form {
    max-width: none;
    justify-self: stretch;
  }

  .contact-map-card,
  .contact-map-card .contact-map,
  .contact-map-card .contact-map iframe {
    min-height: 220px;
  }

  button.service-tile {
    padding: 14px;
    gap: 12px;
  }

  .service-tile-icon {
    width: 44px;
    height: 44px;
  }

  .service-tile-copy strong {
    font-size: 15px;
  }
}

