:root {
  --blue: #083677;
  --blue-2: #0c55b2;
  --blue-3: #e9f2ff;
  --yellow: #f8b900;
  --yellow-2: #ffe28a;
  --ink: #0d1b2d;
  --text: #304259;
  --muted: #6a7890;
  --line: #dbe5f2;
  --paper: #ffffff;
  --soft: #f5f9ff;
  --shadow: 0 24px 80px rgba(8, 54, 119, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfdff;
  font-family: Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 74px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 10px 12px 10px 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(219, 229, 242, 0.82);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 48px rgba(16, 32, 51, 0.14);
  backdrop-filter: blur(20px);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 34px rgba(16, 32, 51, 0.12);
}

.brand {
  width: clamp(160px, 18vw, 234px);
  display: flex;
  align-items: center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: #243955;
  font-size: 0.95rem;
  font-weight: 800;
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

.main-nav a::after {
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.header-action {
  padding: 0 18px;
  color: #091c34;
  background: var(--yellow);
  box-shadow: 0 12px 28px rgba(248, 185, 0, 0.24);
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 820px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blue);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.64;
  filter: saturate(1.05) contrast(1.08);
  transform: scale(1.04);
  animation: videoDrift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(248, 185, 0, 0.34), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.89) 38%, rgba(255, 255, 255, 0.38) 72%, rgba(8, 54, 119, 0.16) 100%),
    linear-gradient(180deg, transparent 66%, #fbfdff 100%);
}

.hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.62fr);
  gap: 48px;
  align-items: end;
  margin: 0 auto;
  padding: 166px 0 86px;
}

.hero-copyblock {
  max-width: 820px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Space Grotesk", Manrope, ui-sans-serif, system-ui, sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  color: #071c38;
  font-size: clamp(3.42rem, 7.3vw, 6.92rem);
  line-height: 0.9;
}

.hero h1 span {
  position: relative;
  display: inline-block;
}

.hero h1 span::after {
  position: absolute;
  z-index: -1;
  left: -0.02em;
  right: -0.04em;
  bottom: 0.08em;
  height: 0.22em;
  content: "";
  background: linear-gradient(90deg, var(--yellow), var(--yellow-2));
  border-radius: 8px;
  transform-origin: left;
  animation: highlightIn 900ms 420ms cubic-bezier(.2, .8, .2, 1) both;
}

.hero-copy {
  max-width: 650px;
  margin: 26px 0 0;
  color: #263d5c;
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

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

.button {
  min-width: 182px;
  padding: 0 24px;
  border: 2px solid transparent;
}

.button.primary {
  color: #091c34;
  background: var(--yellow);
  box-shadow: 0 16px 36px rgba(248, 185, 0, 0.3);
}

.button.secondary {
  color: var(--blue);
  border-color: rgba(8, 54, 119, 0.18);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 36px rgba(8, 54, 119, 0.1);
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.is-disabled {
  cursor: default;
}

.hero-panel {
  align-self: stretch;
  display: flex;
  min-height: 380px;
  flex-direction: column;
  justify-content: end;
  gap: 14px;
}

.status-card,
.mini-stats,
.intro-card,
.service-card,
.tools-card,
.timeline article,
.contact-card {
  border: 1px solid rgba(219, 229, 242, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.status-card {
  position: relative;
  padding: 24px;
  overflow: hidden;
}

.status-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(135deg, rgba(248, 185, 0, 0.16), transparent 52%);
}

.status-card strong,
.status-card small {
  position: relative;
  display: block;
}

.status-card strong {
  color: var(--blue);
  font-size: 1.4rem;
}

.status-card small {
  color: var(--muted);
  margin-top: 6px;
  font-weight: 800;
}

.pulse {
  position: relative;
  z-index: 1;
  display: block;
  width: 12px;
  height: 12px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: #20c77a;
  box-shadow: 0 0 0 0 rgba(32, 199, 122, 0.58);
  animation: pulse 1.8s infinite;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 18px;
  gap: 10px;
}

.mini-stats div {
  min-width: 0;
}

.mini-stats dt {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 900;
}

.mini-stats dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.marquee {
  border-block: 1px solid var(--line);
  background: #fff;
}

.marquee-window {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 40px;
  padding: 16px 0;
  color: var(--blue);
  font-weight: 900;
  text-transform: uppercase;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  position: relative;
  padding-left: 40px;
}

.marquee-track span::before {
  position: absolute;
  left: 10px;
  color: var(--yellow);
  content: "/";
}

.section {
  position: relative;
}

.page-hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--blue);
}

.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.66;
  filter: saturate(1.05) contrast(1.08);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(248, 185, 0, 0.32), transparent 26%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.86) 42%, rgba(255, 255, 255, 0.28) 72%, rgba(8, 54, 119, 0.2) 100%),
    linear-gradient(180deg, transparent 66%, #fbfdff 100%);
}

.dark-page-hero .page-hero-overlay {
  background:
    radial-gradient(circle at 80% 20%, rgba(248, 185, 0, 0.28), transparent 30%),
    linear-gradient(90deg, rgba(7, 42, 97, 0.9), rgba(11, 74, 160, 0.58), rgba(8, 54, 119, 0.28)),
    linear-gradient(180deg, transparent 66%, #fbfdff 100%);
}

.page-hero-inner {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 166px 0 92px;
}

.page-hero-inner h1 {
  max-width: 860px;
  margin: 0;
  color: #071c38;
  font-family: "Space Grotesk", Manrope, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.page-hero-inner p {
  max-width: 720px;
  margin: 24px 0 0;
  color: #263d5c;
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
}

.page-hero-inner .button {
  margin-top: 30px;
}

.dark-page-hero .eyebrow,
.dark-page-hero .page-hero-inner h1,
.dark-page-hero .page-hero-inner p {
  color: #fff;
}

.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0;
}

.intro {
  background: linear-gradient(180deg, #fbfdff, var(--soft));
}

.intro-layout,
.visual-grid,
.mot-grid,
.contact-grid,
.split-section,
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.98fr);
  gap: clamp(28px, 6vw, 70px);
  align-items: center;
}

.section-heading {
  max-width: 760px;
}

h2 {
  margin: 0;
  color: #0c2446;
  font-size: clamp(2.25rem, 4.7vw, 4.35rem);
  line-height: 0.98;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.2;
}

p {
  color: var(--text);
}

.intro-card {
  padding: 30px;
  font-size: 1.08rem;
}

.intro-card p {
  margin: 0;
}

.visual-feature {
  overflow: hidden;
  background: #fff;
}

.image-stack {
  position: relative;
  margin: 0;
}

.image-stack::before {
  position: absolute;
  inset: 28px -22px -22px 34px;
  content: "";
  border-radius: 8px;
  background: var(--yellow);
  opacity: 0.72;
  transform: rotate(-2deg);
}

.image-stack img,
.tools-card img {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-stack figcaption {
  position: relative;
  width: min(86%, 420px);
  margin: -46px 0 0 auto;
  padding: 18px 20px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 18px 48px rgba(8, 54, 119, 0.26);
  font-weight: 800;
}

.feature-copy p {
  font-size: 1.08rem;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.feature-list p {
  margin: 0;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.feature-points span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--blue);
  background: var(--blue-3);
  font-weight: 900;
}

.services {
  background: var(--soft);
}

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

.service-card {
  position: relative;
  min-height: 248px;
  padding: 26px;
  overflow: hidden;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.service-card::after {
  position: absolute;
  inset: auto -38px -52px auto;
  width: 130px;
  height: 130px;
  content: "";
  border-radius: 999px;
  background: rgba(248, 185, 0, 0.17);
  transition: transform 240ms ease;
}

.service-card:hover,
a.service-card:focus-visible {
  transform: translateY(-8px);
  border-color: rgba(8, 54, 119, 0.22);
  box-shadow: 0 26px 80px rgba(8, 54, 119, 0.2);
}

.service-card:hover::after {
  transform: scale(1.18);
}

.service-icon {
  display: inline-flex;
  width: 52px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  border-radius: 8px;
  color: #091c34;
  background: var(--yellow);
  font-weight: 900;
}

.service-card p {
  position: relative;
  margin-bottom: 0;
}

.service-card h2 {
  position: relative;
  font-size: clamp(1.7rem, 2.6vw, 2.45rem);
  line-height: 1.02;
}

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

.service-detail-grid .service-card {
  min-height: 320px;
}

.content-card,
.cta-card {
  border: 1px solid rgba(219, 229, 242, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.content-card {
  padding: 30px;
}

.content-card p:first-child {
  margin-top: 0;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text);
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--yellow);
  content: "/";
  font-weight: 900;
}

.mot {
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(248, 185, 0, 0.28), transparent 30%),
    linear-gradient(135deg, #072a61, #0b4aa0 58%, #083677);
}

.mot h2,
.mot p,
.mot .section-kicker {
  color: #fff;
}

.mot p {
  color: rgba(255, 255, 255, 0.84);
}

.tools-card {
  margin: 0;
  padding: 14px;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
}

.tools-card img {
  box-shadow: none;
}

.tools-card figcaption {
  padding: 18px 4px 4px;
  color: rgba(255, 255, 255, 0.88);
}

.tools-card strong {
  display: block;
  color: var(--yellow-2);
}

.cta-card {
  padding: 32px;
}

.cta-card h3 {
  color: var(--blue);
  font-size: 1.5rem;
}

.mot .cta-card {
  background: rgba(255, 255, 255, 0.94);
}

.mot .cta-card p {
  color: var(--text);
}

.process {
  background: #fff;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.timeline article {
  padding: 28px;
}

.timeline span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 8px;
  color: #091c34;
  background: var(--yellow);
  font-weight: 900;
}

.timeline p {
  margin-bottom: 0;
}

.contact {
  background: linear-gradient(180deg, var(--soft), #fff);
}

.contact-card {
  display: grid;
  gap: 10px;
  padding: 32px;
  font-style: normal;
}

.contact-card strong {
  color: var(--blue);
  font-size: 1.34rem;
}

.contact-card span {
  color: var(--text);
}

.map-placeholder {
  min-height: 260px;
  display: grid;
  place-items: center;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(8, 54, 119, 0.16);
  border-radius: 8px;
  color: var(--blue);
  background:
    linear-gradient(135deg, rgba(248, 185, 0, 0.12), transparent 48%),
    var(--blue-3);
  font-weight: 900;
  text-align: center;
}

.map-frame {
  width: 100%;
  min-height: 300px;
  margin-top: 24px;
  border: 1px solid rgba(8, 54, 119, 0.16);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.policy-layout {
  display: block;
}

.policy-card {
  max-width: 940px;
  margin: 0 auto;
}

.policy-card h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 2.3vw, 2.1rem);
  line-height: 1.08;
}

.policy-card h2:first-of-type {
  margin-top: 18px;
}

.form-section {
  background: #fff;
}

.form-layout {
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(219, 229, 242, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 900;
}

.contact-form abbr {
  color: #b3261e;
  text-decoration: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(248, 185, 0, 0.32);
  border-color: var(--yellow);
}

.form-wide {
  grid-column: 1 / -1;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 40px;
  margin: 0 auto;
  padding: 58px 0 34px;
}

.footer-brand img {
  width: min(280px, 100%);
}

.footer-brand p {
  max-width: 430px;
  margin-bottom: 0;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  justify-content: flex-end;
  align-content: start;
  gap: 16px 24px;
  color: #243955;
  font-weight: 800;
}

.footer-links a:hover {
  color: var(--blue-2);
}

.copyright {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 0 0 28px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 720ms ease, transform 720ms cubic-bezier(.2, .8, .2, 1);
}

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

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

@keyframes videoDrift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-1.5%, 1%, 0);
  }
}

@keyframes highlightIn {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 199, 122, 0.58);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(32, 199, 122, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(32, 199, 122, 0);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto auto;
  }

  .menu-toggle {
    display: inline-grid;
    width: 46px;
    height: 44px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
  }

  .menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--blue);
  }

  .main-nav {
    position: fixed;
    top: 84px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    justify-content: stretch;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 220ms ease, transform 220ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 12px;
    border-radius: 8px;
    background: var(--soft);
  }

  .header-action {
    justify-self: end;
  }

  .hero-inner,
  .intro-layout,
  .visual-grid,
  .mot-grid,
  .contact-grid,
  .split-section,
  .form-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 138px;
  }

  .hero-panel {
    min-height: 0;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 64px;
    grid-template-columns: 1fr auto;
    padding: 8px 10px;
  }

  .brand {
    width: 158px;
  }

  .header-action {
    display: none;
  }

  .hero-inner {
    width: min(100% - 24px, 1180px);
    padding: 122px 0 64px;
  }

  .page-hero {
    min-height: 560px;
  }

  .page-hero-inner {
    width: min(100% - 24px, 1180px);
    padding: 132px 0 70px;
  }

  .page-hero-overlay {
    background:
      radial-gradient(circle at 84% 16%, rgba(248, 185, 0, 0.26), transparent 28%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 66%, #fbfdff 100%);
  }

  .page-hero-inner h1 {
    font-size: clamp(2.85rem, 14vw, 4.35rem);
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 84% 16%, rgba(248, 185, 0, 0.26), transparent 28%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.88) 66%, #fbfdff 100%);
  }

  .hero h1 {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .hero-actions,
  .mini-stats,
  .service-grid,
  .timeline,
  .service-detail-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .section-inner {
    width: min(100% - 24px, 1180px);
    padding: 74px 0;
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.2rem);
  }

  .image-stack::before {
    inset: 18px -10px -14px 18px;
  }

  .image-stack figcaption {
    width: calc(100% - 18px);
    margin-top: -28px;
  }

  .service-card,
  .timeline article,
  .intro-card,
  .contact-card,
  .content-card,
  .cta-card,
  .contact-form {
    padding: 24px;
  }

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