:root {
  --color-primary: #001a3f;
  --color-primary-dark: #0a274f;
  --color-accent: #d50010;
  --color-accent-dark: #b8000d;
  --color-bg: #f7f9fc;
  --color-surface: #ffffff;
  --color-text: #1f2937;
  --color-text-muted: #87909f;
  --color-border: #dadde2;
  --color-white: #ffffff;
  --shadow-soft: 0 18px 60px rgba(0, 26, 63, 0.08);
  --shadow-deep: 0 24px 70px rgba(0, 26, 63, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: min(1180px, calc(100vw - 48px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 136px;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(213, 0, 16, 0.05), transparent 22%),
    linear-gradient(180deg, #fcfdff 0%, var(--color-bg) 100%);
}

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

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

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

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  position: relative;
  padding: 140px 0;
}

.section-tight {
  padding: 84px 0;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent);
}

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

.section-heading h2,
.hero h1,
.contact-copy h2,
.about-copy h2,
.mv-card h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.section-heading h2 {
  max-width: 680px;
  font-size: clamp(2rem, 3.4vw, 3.6rem);
}

.heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr);
  gap: 42px;
  align-items: end;
}

.heading-row p,
.hero-text,
.service-body p,
.why-card p,
.process-step p,
.about-copy p,
.mv-card p,
.contact-copy p,
.stat p,
.hero-trust span {
  color: var(--color-text-muted);
  line-height: 1.75;
  font-size: 1rem;
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(247, 249, 252, 0.82);
  border-bottom: 1px solid rgba(218, 221, 226, 0.72);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 112px;
}

.brand img {
  width: 300px;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.site-nav a {
  position: relative;
  font-weight: 700;
  color: var(--color-primary);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-social,
.contact-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-social a,
.contact-social a {
  display: grid;
  place-items: center;
  border-radius: 50%;
  transition: transform 220ms ease, background 220ms ease;
}

.header-social a {
  width: 34px;
  height: 34px;
  background: transparent;
}

.header-social img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.header-social a:hover,
.contact-social a:hover {
  transform: translateY(-2px);
}

.contact-chip {
  display: grid;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-border);
}

.chip-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.chip-value {
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.93rem;
}

.nav-toggle {
  display: none;
  position: relative;
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  width: 48px;
  height: 48px;
}

.nav-toggle span {
  position: absolute;
  left: 11px;
  top: 18px;
  width: 26px;
  height: 2px;
  background: var(--color-primary);
  transform-origin: center;
  transition: top 220ms ease, transform 220ms ease;
}

.nav-toggle span:last-child {
  top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    background-color 240ms ease,
    color 240ms ease,
    border-color 240ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-accent) 0%, #f01b2d 100%);
  box-shadow: 0 14px 32px rgba(213, 0, 16, 0.2);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
}

.button-secondary {
  color: var(--color-primary);
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(0, 26, 63, 0.12);
  box-shadow: var(--shadow-soft);
}

.hero {
  padding-top: 84px;
  min-height: calc(100vh - 92px);
}

.hero-backdrop,
.hero-grid,
.hero-route,
.why-route,
.contact-glow {
  pointer-events: none;
  position: absolute;
}

.hero-backdrop {
  inset: 0;
  background:
    radial-gradient(circle at 72% 28%, rgba(213, 0, 16, 0.14), transparent 18%),
    radial-gradient(circle at 10% 12%, rgba(0, 26, 63, 0.06), transparent 20%);
}

.hero-grid {
  inset: 70px 0 30px;
  background-image:
    linear-gradient(rgba(0, 26, 63, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 26, 63, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.55) 20%, rgba(0, 0, 0, 0.55) 80%, transparent 100%);
}

.hero-route {
  width: 340px;
  height: 340px;
  border: 1px solid rgba(213, 0, 16, 0.18);
  border-radius: 50%;
  opacity: 0.7;
  animation: pulse-route 8s ease-in-out infinite;
}

.hero-route::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: 50%;
  border: 1px dashed rgba(0, 26, 63, 0.18);
}

.hero-route-a {
  top: 70px;
  right: 5%;
}

.hero-route-b {
  bottom: 50px;
  left: -60px;
  width: 240px;
  height: 240px;
  animation-delay: -3s;
}

.hero-content {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 42px;
  align-items: center;
}

.hero-copy {
  padding-right: 24px;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3rem, 6vw, 6rem);
  color: var(--color-primary);
}

.hero-text {
  max-width: 620px;
  margin: 28px 0 0;
  font-size: 1.08rem;
}

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

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.hero-trust article {
  padding: 18px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(218, 221, 226, 0.8);
  box-shadow: var(--shadow-soft);
}

.hero-trust strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  perspective: 1200px;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-deep);
  transform: rotateY(-9deg) rotateX(2deg);
  transform-origin: center left;
}

.hero-frame::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 35%;
  background: linear-gradient(180deg, transparent, rgba(0, 26, 63, 0.32));
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 0.92;
  object-fit: cover;
}

.hero-kpi-card {
  position: absolute;
  left: -28px;
  bottom: 26px;
  width: min(320px, 82%);
  padding: 24px;
  border-radius: 26px;
  background: rgba(0, 26, 63, 0.94);
  color: var(--color-white);
  box-shadow: var(--shadow-deep);
}

.hero-kpi-card .kpi-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kpi-card strong {
  display: block;
  font-size: 1.25rem;
  font-family: "Sora", sans-serif;
}

.hero-kpi-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.values-band {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  margin-bottom: 48px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(0, 26, 63, 0.98), rgba(10, 39, 79, 0.96));
  box-shadow: var(--shadow-deep);
}

.values-grid article {
  display: flex;
  gap: 18px;
  align-items: start;
}

.value-icon {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-accent);
  font-weight: 800;
  font-family: "Sora", sans-serif;
}

.values-grid h2,
.stats-band,
.site-footer,
.mv-card h2 {
  color: var(--color-white);
}

.values-grid h2 {
  margin: 0 0 8px;
  font-size: 1.4rem;
}

.values-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.stats-band {
  background: linear-gradient(180deg, rgba(0, 26, 63, 0.97), rgba(0, 26, 63, 0.92));
}

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

.stat {
  position: relative;
  padding: 26px 24px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.stat-number,
.stat-suffix {
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 3vw, 3.3rem);
  line-height: 1;
  color: var(--color-white);
}

.stat-suffix {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
}

.stat p {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.service-card,
.why-card,
.process-step,
.mv-card,
.contact-panel {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(218, 221, 226, 0.85);
  box-shadow: var(--shadow-soft);
}

.service-card {
  overflow: hidden;
  border-radius: 30px;
}

.service-media {
  overflow: hidden;
}

.service-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 700ms ease;
}

.service-card:hover .service-media img {
  transform: scale(1.06);
}

.service-body {
  padding: 28px;
}

.service-index {
  display: inline-flex;
  margin-bottom: 16px;
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: 0.14em;
}

.service-body h3,
.why-card h3,
.process-step h3 {
  margin: 0 0 12px;
  font-family: "Sora", sans-serif;
  font-size: 1.5rem;
  color: var(--color-primary);
}

.why {
  background:
    radial-gradient(circle at 6% 50%, rgba(0, 26, 63, 0.05), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.75), rgba(247, 249, 252, 0.96));
}

.why-route {
  inset: 120px auto 0 0;
  width: 320px;
  height: 320px;
  border-left: 2px dashed rgba(213, 0, 16, 0.22);
  border-bottom: 2px dashed rgba(213, 0, 16, 0.22);
  border-bottom-left-radius: 280px;
  opacity: 0.75;
}

.why-card {
  padding: 30px;
  border-radius: 26px;
  min-height: 240px;
}

.process {
  background: linear-gradient(180deg, rgba(0, 26, 63, 0.03), rgba(255, 255, 255, 0));
}

.process-line {
  height: 2px;
  margin: 26px 0 -16px;
  background: linear-gradient(90deg, rgba(213, 0, 16, 0.1), rgba(0, 26, 63, 0.2), rgba(213, 0, 16, 0.1));
}

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

.process-step {
  padding: 28px 22px;
  border-radius: 24px;
}

.process-grid .process-step:nth-child(1) {
  transition-delay: 0ms;
}

.process-grid .process-step:nth-child(2) {
  transition-delay: 140ms;
}

.process-grid .process-step:nth-child(3) {
  transition-delay: 280ms;
}

.process-grid .process-step:nth-child(4) {
  transition-delay: 420ms;
}

.process-grid .process-step:nth-child(5) {
  transition-delay: 560ms;
}

.process-grid .process-step.is-revealed {
  transition-delay: 0ms;
  transition-duration: 760ms, 760ms, 220ms, 220ms;
}

@media (hover: hover) {
  .process-grid .process-step.is-revealed:hover {
    scale: 1.025;
    box-shadow: 0 20px 42px rgba(0, 26, 63, 0.16);
  }

  .why-card.is-visible:hover,
  .stat.is-visible:hover,
  .mv-card.is-visible:hover {
    scale: 1.025;
    box-shadow: 0 20px 42px rgba(0, 26, 63, 0.18);
  }
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  gap: 48px;
  align-items: center;
}

.about-media img {
  width: 100%;
  min-height: 580px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow-deep);
}

.about-copy h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 3.6vw, 4rem);
  color: var(--color-primary);
}

.about-copy > p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 1.04rem;
}

.about-points {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.about-points article {
  padding: 22px 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(218, 221, 226, 0.85);
}

.about-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary);
}

.mission-vision {
  background: linear-gradient(180deg, rgba(0, 26, 63, 0.98), rgba(10, 39, 79, 0.94));
}

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

.mv-card {
  padding: 36px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.mv-card .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.mv-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.mv-card p:last-child {
  color: rgba(255, 255, 255, 0.74);
  margin-top: 18px;
}

.contact-cta {
  background:
    linear-gradient(180deg, rgba(247, 249, 252, 0.9), rgba(255, 255, 255, 1)),
    radial-gradient(circle at 82% 22%, rgba(213, 0, 16, 0.08), transparent 18%);
}

.contact-glow {
  top: 0;
  right: -180px;
  width: 460px;
  height: 460px;
  background: radial-gradient(circle, rgba(213, 0, 16, 0.08), transparent 60%);
}

.contact-panel {
  position: relative;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(0, 26, 63, 0.98), rgba(10, 39, 79, 0.95));
  color: var(--color-white);
  box-shadow: var(--shadow-deep);
}

.contact-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
  margin-bottom: 26px;
}

.contact-panel-top img {
  width: 220px;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--color-white);
}

.contact-panel-top span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-panel a {
  display: block;
  margin-bottom: 12px;
  font-size: 1.28rem;
  font-weight: 700;
}

.contact-panel p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.contact-social {
  margin-top: 24px;
}

.contact-social span {
  margin-right: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-social a {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 0;
  background: transparent;
}

.contact-social img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

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

.contact-form {
  max-width: 620px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(218, 221, 226, 0.9);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.contact-form-title {
  margin: 0 0 18px;
  color: var(--color-primary) !important;
  font-weight: 800;
}

.contact-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 800;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 12px 13px;
  color: var(--color-text);
  background: var(--color-white);
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(213, 0, 16, 0.1);
}

.contact-form-status {
  display: none;
  margin: 0 0 16px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.5;
}

.contact-form-status.is-visible {
  display: block;
}

.contact-form-status.is-success {
  color: #0a5c34;
  background: #eaf7ef;
}

.contact-form-status.is-error {
  color: #8d1018;
  background: #fff0f1;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-footer {
  position: relative;
  background: linear-gradient(180deg, rgba(0, 26, 63, 1), rgba(4, 18, 43, 1));
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(0, 0.7fr));
  gap: 32px;
  padding-bottom: 36px;
}

.footer-brand img {
  width: 210px;
  box-sizing: border-box;
  padding: 10px 12px;
  border-radius: 14px;
  background: var(--color-white);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: transparent;
  transition: transform 220ms ease, background 220ms ease;
}

.footer-social a:hover {
  transform: translateY(-3px);
}

.footer-social img {
  width: 42px;
  height: 42px;
  box-sizing: content-box;
  padding: 0;
  border-radius: 50%;
  background: transparent;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.footer-brand p,
.footer-grid li,
.footer-bottom p,
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.footer-grid h3 {
  margin: 0 0 16px;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-grid li + li {
  margin-top: 10px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 22px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom div {
  display: flex;
  gap: 18px;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1),
    scale 220ms ease,
    box-shadow 220ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse-route {
  0%,
  100% {
    transform: scale(1) translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.05) translateY(-12px);
    opacity: 0.95;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1180px) {
  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

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

  .nav-toggle {
    display: block;
  }

  .site-header.nav-open .site-nav,
  .site-header.nav-open .header-cta {
    display: flex;
  }

  .site-header.nav-open .header-inner {
    grid-template-columns: auto auto;
    align-items: start;
  }

  .site-header.nav-open .site-nav {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 0 0;
  }

  .site-header.nav-open .header-cta {
    grid-column: 1 / -1;
    flex-direction: column;
    align-items: stretch;
    padding-bottom: 18px;
  }

  .site-header.nav-open .nav-toggle span:first-child {
    top: 23px;
    transform: rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:last-child {
    top: 23px;
    transform: rotate(-45deg);
  }

  .hero-content,
  .heading-row,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .hero-trust,
  .stats-grid,
  .services-grid,
  .why-grid,
  .process-grid,
  .mission-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-frame {
    transform: none;
  }

  .hero-kpi-card {
    position: relative;
    inset: auto;
    margin-top: -44px;
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(100vw - 28px, 100%);
  }

  .section {
    padding: 104px 0;
  }

  .section-tight {
    padding: 72px 0;
  }

  .brand img {
    width: 246px;
  }

  .contact-form {
    padding: 20px;
  }

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

  .contact-panel a[href^="mailto:"] {
    font-size: 0.92rem;
    line-height: 1.4;
    letter-spacing: -0.02em;
    overflow-wrap: anywhere;
  }

  .hero {
    padding-top: 52px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero-trust,
  .hero-actions,
  .values-grid,
  .stats-grid,
  .services-grid,
  .why-grid,
  .process-grid,
  .mission-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-kpi-card {
    width: 100%;
    margin-top: 18px;
  }

  .hero-frame img,
  .about-media img {
    aspect-ratio: 0.95;
    min-height: auto;
  }

  .footer-bottom,
  .footer-bottom div,
  .contact-panel-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
