:root {
  --bg: #eef3fa;
  --bg-soft: #e7eef8;
  --ink: #10253f;
  --ink-soft: #425b79;
  --line: #d1deec;
  --brand-900: #0a1d36;
  --brand-800: #102f52;
  --brand-700: #194a79;
  --brand-600: #2367a7;
  --accent: #3f97f1;
  --surface: #ffffff;
  --radius: 22px;
  --shadow: 0 24px 52px rgba(12, 38, 66, 0.15);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(63, 151, 241, 0.16), transparent 30%),
    radial-gradient(circle at 96% 18%, rgba(25, 74, 121, 0.16), transparent 34%),
    linear-gradient(180deg, #f6f9fe 0%, var(--bg) 48%, #eaf1fa 100%);
}

main {
  padding-top: 94px;
}

body.overlay-nav main {
  padding-top: 0;
}

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

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

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 70;
  padding: 14px 0 12px;
  background: linear-gradient(180deg, rgba(238, 245, 253, 0.94), rgba(238, 245, 253, 0));
  transition: padding 0.25s ease, background 0.25s ease, backdrop-filter 0.25s ease;
}

.site-header.is-scrolled {
  padding: 8px 0;
  background: rgba(8, 22, 39, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(163, 193, 221, 0.28);
}

.header-inner {
  position: relative;
  min-height: 56px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: #17395d;
  transition: color 0.2s ease;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 0;
  display: grid;
  place-items: center;
  background: transparent;
  box-shadow: none;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.brand small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: #436181;
  transition: color 0.2s ease;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(166, 194, 220, 0.9);
  background: rgba(240, 248, 255, 0.92);
  border-radius: 12px;
  cursor: pointer;
  padding: 6px 8px;
}

.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: #153459;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 24px);
  padding: 0;
  border: 0;
  background: transparent;
}

.main-nav a {
  position: relative;
  padding: 8px 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #234568;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: #f3c24f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover {
  color: #0f2f53;
}

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

.main-nav a.active {
  color: #0f2f53;
}

.site-header.is-scrolled .brand {
  color: #f1f8ff;
}

.site-header.is-scrolled .brand small {
  color: rgba(201, 226, 248, 0.9);
}

.site-header.is-scrolled .main-nav a {
  color: rgba(233, 246, 255, 0.9);
}

.site-header.is-scrolled .main-nav a:hover,
.site-header.is-scrolled .main-nav a.active {
  color: #ffffff;
}

.site-header.is-scrolled .main-nav a::after {
  background: #f6c84f;
}

.site-header.is-scrolled .nav-toggle {
  border-color: rgba(188, 218, 244, 0.5);
  background: rgba(17, 49, 81, 0.52);
}

.site-header.is-scrolled .nav-toggle span {
  background: #edf8ff;
}

body.overlay-nav .site-header {
  background: linear-gradient(180deg, rgba(8, 21, 37, 0.55), rgba(8, 21, 37, 0));
}

body.overlay-nav .brand {
  color: #f1f8ff;
}

body.overlay-nav .brand small {
  color: rgba(205, 228, 248, 0.86);
}

body.overlay-nav .main-nav a {
  color: rgba(236, 247, 255, 0.92);
}

body.overlay-nav .main-nav a:hover,
body.overlay-nav .main-nav a.active {
  color: #ffffff;
}

body.overlay-nav .main-nav a::after {
  background: #f6c84f;
}

body.overlay-nav .nav-toggle {
  border-color: rgba(197, 224, 249, 0.54);
  background: rgba(11, 38, 66, 0.45);
}

body.overlay-nav .nav-toggle span {
  background: #edf8ff;
}

body.overlay-nav .site-header.is-scrolled {
  background: rgba(8, 22, 39, 0.84);
}

.hero-slider-section {
  padding: 0 0 26px;
}

.hero-slider {
  position: relative;
  min-height: clamp(540px, 86vh, 820px);
  overflow: hidden;
  background: #071a30;
}

.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.22), transparent 18%),
    radial-gradient(circle at 78% 30%, rgba(255, 255, 255, 0.14), transparent 20%),
    radial-gradient(circle at 24% 78%, rgba(255, 255, 255, 0.09), transparent 24%);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 1.6s ease;
  pointer-events: none;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero-slide img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      110deg,
      rgba(7, 20, 36, 0.9) 12%,
      rgba(12, 41, 71, 0.78) 44%,
      rgba(38, 101, 168, 0.48) 78%
    ),
    linear-gradient(180deg, rgba(8, 26, 45, 0.22), rgba(8, 26, 45, 0.62));
}

.hero-slide.tone-a::before {
  background:
    linear-gradient(
      110deg,
      rgba(8, 19, 35, 0.92) 12%,
      rgba(16, 49, 84, 0.8) 46%,
      rgba(47, 120, 192, 0.5) 82%
    ),
    linear-gradient(180deg, rgba(8, 26, 45, 0.24), rgba(8, 26, 45, 0.64));
}

.hero-slide.tone-b::before {
  background:
    linear-gradient(
      110deg,
      rgba(10, 19, 36, 0.9) 10%,
      rgba(36, 23, 60, 0.78) 42%,
      rgba(143, 39, 137, 0.42) 80%
    ),
    linear-gradient(180deg, rgba(8, 26, 45, 0.24), rgba(8, 26, 45, 0.64));
}

.hero-slide.tone-c::before {
  background:
    linear-gradient(
      108deg,
      rgba(10, 23, 42, 0.9) 10%,
      rgba(25, 63, 102, 0.78) 45%,
      rgba(48, 143, 182, 0.45) 82%
    ),
    linear-gradient(180deg, rgba(8, 26, 45, 0.22), rgba(8, 26, 45, 0.62));
}

.hero-slide-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: flex-end;
}

.hero-slide-inner {
  padding-bottom: clamp(44px, 8vh, 96px);
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.hero-slide.is-active .hero-slide-inner {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-title {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #66c2ff;
  max-width: 14ch;
}

.kicker-light {
  color: #a4d8ff;
}

.lead-light {
  color: #ffffff;
  font-weight: 600;
  text-shadow:
    0 2px 10px rgba(3, 15, 30, 0.9),
    0 10px 28px rgba(3, 15, 30, 0.58);
  max-width: 62ch;
}

.hero-slide .lead-light {
  margin-top: 16px;
  color: rgba(245, 251, 255, 0.96);
  font-weight: 500;
  font-size: clamp(1.04rem, 1.45vw, 1.28rem);
  line-height: 1.66;
  max-width: 56ch;
  text-shadow:
    0 2px 10px rgba(3, 15, 30, 0.9),
    0 10px 26px rgba(3, 15, 30, 0.58);
}

.hero-slider .btn-secondary {
  color: #eff8ff;
  border-color: rgba(190, 224, 252, 0.75);
  background: rgba(14, 44, 74, 0.34);
}

.hero-slider .btn-secondary:hover {
  background: rgba(190, 224, 252, 0.16);
}

.hero-swipe-label {
  position: absolute;
  top: clamp(18px, 2.2vw, 26px);
  left: clamp(14px, 2vw, 24px);
  z-index: 4;
  color: #ebf8ff;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(0.78rem, 1.35vw, 1.08rem);
  text-shadow: 0 8px 20px rgba(7, 26, 45, 0.5);
  pointer-events: none;
}

.hero-swipe-label span {
  display: block;
}

.hero-rail {
  position: absolute;
  left: clamp(8px, 1.4vw, 16px);
  top: clamp(102px, 12vw, 128px);
  z-index: 4;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  pointer-events: none;
}

.hero-rail li {
  min-width: 34px;
  min-height: 30px;
  border-radius: 6px;
  border: 1px solid rgba(218, 237, 255, 0.72);
  background: rgba(7, 31, 56, 0.48);
  color: #e9f6ff;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  display: grid;
  place-items: center;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  color: #f3f9ff;
  font-size: 1.2rem;
  line-height: 1;
  background: rgba(7, 27, 48, 0.44);
  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.85;
}

.hero-arrow:hover {
  background: rgba(10, 39, 70, 0.78);
  opacity: 1;
}

.hero-arrow--prev {
  left: clamp(12px, 2.2vw, 30px);
}

.hero-arrow--next {
  right: clamp(12px, 2.2vw, 30px);
}

.hero-dots {
  position: absolute;
  left: 50%;
  bottom: clamp(18px, 3.2vh, 30px);
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 10px;
}

.hero-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(235, 247, 255, 0.82);
  background: rgba(235, 247, 255, 0.18);
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero-dots button.is-active {
  transform: scale(1.25);
  background: #e9f6ff;
}

.about-slider-section {
  padding: 0 0 26px;
}

.about-slider {
  min-height: clamp(520px, 82vh, 760px);
}

.about-slider .hero-slide-content {
  align-items: center;
}

.about-slider .hero-slide-inner {
  padding: clamp(54px, 8vh, 92px) 0;
}

.about-slider .hero-slide-title {
  max-width: 13ch;
}

.hero-slide.about-tone-a::before {
  background:
    linear-gradient(
      108deg,
      rgba(6, 20, 37, 0.9) 10%,
      rgba(17, 50, 84, 0.78) 45%,
      rgba(47, 113, 180, 0.46) 82%
    ),
    linear-gradient(180deg, rgba(8, 26, 45, 0.22), rgba(8, 26, 45, 0.62));
}

.hero-slide.about-tone-b::before {
  background:
    linear-gradient(
      108deg,
      rgba(8, 21, 36, 0.9) 10%,
      rgba(28, 66, 102, 0.77) 45%,
      rgba(40, 133, 166, 0.46) 82%
    ),
    linear-gradient(180deg, rgba(8, 26, 45, 0.22), rgba(8, 26, 45, 0.62));
}

.hero-slide.about-tone-c::before {
  background:
    linear-gradient(
      108deg,
      rgba(8, 21, 39, 0.9) 10%,
      rgba(24, 57, 95, 0.78) 44%,
      rgba(57, 122, 194, 0.47) 82%
    ),
    linear-gradient(180deg, rgba(8, 26, 45, 0.22), rgba(8, 26, 45, 0.62));
}

.hero {
  padding: 52px 0 16px;
}

.hero-shell {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 34px;
  align-items: center;
}

.hero-copy h1,
.section-title h2,
.copy-block h2,
.strip h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #0d2a4b;
}

.hero-copy h1 {
  font-size: clamp(2.05rem, 4.2vw, 3.6rem);
  max-width: 14ch;
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: #1f5e9a;
  font-weight: 700;
}

.lead {
  margin: 18px 0 0;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 62ch;
}

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

.btn {
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 0.9rem;
  font-weight: 700;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent), #2f80d4);
  box-shadow: 0 14px 30px rgba(34, 109, 189, 0.3);
}

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

.btn-secondary {
  color: #1c4f83;
  border-color: #a5c3e4;
  background: rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  background: #ecf3fb;
}

.hero-kpis {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-kpis li {
  border-radius: 999px;
  border: 1px solid #bdd2ea;
  background: #f6faff;
  color: #31567b;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 600;
}

.hero-media {
  position: relative;
  min-height: clamp(360px, 52vw, 560px);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 25, 44, 0.15), rgba(8, 25, 44, 0.45));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  color: #f3f9ff;
  max-width: 80%;
}

.hero-note b {
  display: block;
  font-size: 1.08rem;
  margin-bottom: 6px;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

.hero-note span {
  font-size: 0.9rem;
  opacity: 0.95;
}

.section {
  padding: 76px 0;
}

.section--soft {
  background: rgba(228, 237, 248, 0.6);
}

.section-title {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-title h2 {
  font-size: clamp(1.72rem, 3vw, 2.6rem);
}

.section-title p {
  margin: 14px 0 0;
  line-height: 1.75;
  color: #3f5978;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}

.copy-block h2 {
  font-size: clamp(1.52rem, 2.5vw, 2.2rem);
}

.copy-block p {
  margin: 14px 0 0;
  line-height: 1.76;
  color: #415a79;
}

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

.check-list li,
.clean-list li {
  line-height: 1.62;
  color: #375372;
}

.check-list li {
  position: relative;
  padding-left: 22px;
}

.check-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(140deg, #2f80d4, #4ea8ff);
  position: absolute;
  left: 0;
  top: 0.48rem;
}

.media-frame {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 320px;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.timeline {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.timeline-item {
  position: relative;
  padding-left: 28px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.58rem;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2f80d4;
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 1.2rem;
  bottom: -14px;
  width: 2px;
  background: #c9daed;
}

.timeline-item:last-child::after {
  display: none;
}

.timeline-item b {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #2f5f90;
}

.timeline-item h3 {
  margin: 5px 0 6px;
  font-size: 1.02rem;
  color: #12375d;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

.timeline-item p {
  margin: 0;
  color: #405b79;
  line-height: 1.62;
}

.services-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.services-list li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 18px;
}

.services-list b {
  font-size: 1rem;
  color: #12395f;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

.services-list span {
  color: #3f5a78;
  line-height: 1.65;
}

.image-band {
  border-radius: 28px;
  overflow: hidden;
  margin: 0;
  box-shadow: var(--shadow);
  min-height: 340px;
}

.image-band img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-band--blend {
  position: relative;
  min-height: clamp(320px, 42vw, 460px);
  background: #071a30;
  isolation: isolate;
}

.image-band--blend .image-band-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.78) contrast(1.02) brightness(0.82);
  transform: scale(1.03);
  z-index: 1;
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.98) 34%,
    rgba(0, 0, 0, 0.42) 58%,
    rgba(0, 0, 0, 0) 80%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0.98) 34%,
    rgba(0, 0, 0, 0.42) 58%,
    rgba(0, 0, 0, 0) 80%
  );
}

.image-band--blend .image-band-dashboard {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.98;
  z-index: 1;
  filter: saturate(1.08) contrast(1.08) brightness(0.96);
  transform: scale(1.015);
  -webkit-mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.72) 50%,
    rgba(0, 0, 0, 1) 70%
  );
  mask-image: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0) 10%,
    rgba(0, 0, 0, 0.2) 30%,
    rgba(0, 0, 0, 0.72) 50%,
    rgba(0, 0, 0, 1) 70%
  );
}

.image-band--blend::before {
  content: "";
  position: absolute;
  top: 8%;
  bottom: 8%;
  left: 56%;
  width: 1px;
  z-index: 2;
  background: linear-gradient(180deg, rgba(153, 206, 255, 0), rgba(153, 206, 255, 0.7), rgba(153, 206, 255, 0));
  box-shadow: 0 0 18px rgba(97, 175, 241, 0.42);
}

.image-band--blend::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(180deg, rgba(6, 19, 34, 0.12), rgba(6, 19, 34, 0.55)),
    linear-gradient(90deg, rgba(7, 23, 40, 0.36), rgba(7, 23, 40, 0.12) 44%, rgba(7, 23, 40, 0.38) 100%);
}

.image-band--blend figcaption {
  position: absolute;
  left: clamp(16px, 2.3vw, 28px);
  right: clamp(16px, 2.3vw, 28px);
  bottom: clamp(14px, 1.8vw, 24px);
  z-index: 4;
  color: rgba(244, 252, 255, 0.96);
  font-size: clamp(0.9rem, 1.2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.015em;
  text-shadow: 0 2px 10px rgba(4, 16, 31, 0.7);
  max-width: min(64ch, 95%);
  line-height: 1.45;
}

.image-band--blend figcaption span {
  display: block;
  margin-bottom: 4px;
  color: rgba(167, 221, 255, 0.96);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.strip {
  padding: clamp(30px, 4vw, 40px);
  border-radius: 28px;
  background:
    linear-gradient(140deg, rgba(10, 31, 55, 0.95), rgba(29, 84, 137, 0.95)),
    linear-gradient(90deg, rgba(80, 161, 240, 0.22), transparent);
  color: #edf7ff;
  box-shadow: 0 24px 45px rgba(12, 35, 59, 0.35);
}

.strip h2 {
  color: #f4faff;
  font-size: clamp(1.6rem, 2.7vw, 2.3rem);
}

.strip p {
  margin: 14px 0 0;
  color: rgba(237, 247, 255, 0.9);
  line-height: 1.72;
}

.strip .btn-secondary {
  color: #e5f3ff;
  border-color: rgba(198, 227, 252, 0.65);
  background: transparent;
}

.section--strip-full {
  padding-left: 0;
  padding-right: 0;
}

.strip--full {
  width: 100%;
  border-radius: 0;
  box-shadow: none;
}

.strip-full-inner {
  padding: clamp(32px, 4.6vw, 52px) 0;
}

.strip--full h2,
.strip--full p {
  max-width: 66ch;
}

.home-full-cta-section {
  position: relative;
  min-height: 68svh;
  margin-top: 24px;
  overflow: hidden;
}

.home-full-cta-bg {
  position: absolute;
  inset: 0;
}

.home-full-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.home-full-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      112deg,
      rgba(7, 20, 35, 0.9) 14%,
      rgba(12, 42, 73, 0.8) 48%,
      rgba(29, 101, 163, 0.56) 84%
    ),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.22), transparent 20%);
}

.home-full-cta-content {
  position: relative;
  z-index: 2;
  min-height: 68svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: clamp(52px, 7vh, 86px);
  padding-bottom: clamp(48px, 7vh, 82px);
}

.home-full-cta-content h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  color: #f3faff;
  font-size: clamp(2.06rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.home-full-cta-content p {
  margin: 18px 0 0;
  max-width: 60ch;
  color: rgba(233, 245, 255, 0.92);
  line-height: 1.75;
  font-size: clamp(1rem, 1.35vw, 1.1rem);
}

.home-full-cta-content .hero-actions {
  margin-top: 28px;
}

.home-full-cta-content .btn-secondary {
  color: #ecf8ff;
  border-color: rgba(195, 226, 253, 0.72);
  background: rgba(10, 37, 65, 0.34);
}

.home-full-cta-content .btn-secondary:hover {
  background: rgba(195, 226, 253, 0.16);
}

.contact-hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
}

.contact-hero-bg {
  position: absolute;
  inset: 0;
}

.contact-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      rgba(7, 20, 36, 0.92) 12%,
      rgba(14, 46, 79, 0.82) 46%,
      rgba(38, 105, 170, 0.5) 82%
    ),
    linear-gradient(180deg, rgba(8, 26, 45, 0.24), rgba(8, 26, 45, 0.62));
}

.contact-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 84svh;
  padding-top: clamp(90px, 11vh, 132px);
  padding-bottom: clamp(54px, 8vh, 90px);
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
}

.contact-hero-copy h1 {
  margin: 0;
  color: #66c2ff;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(2.06rem, 4.8vw, 4.25rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.contact-hero-copy .lead-light {
  margin-top: 18px;
  max-width: 56ch;
  color: rgba(240, 250, 255, 0.96);
  text-shadow: 0 7px 24px rgba(3, 15, 29, 0.62);
}

.contact-hero-keyline {
  margin: 22px 0 0;
  color: rgba(221, 242, 255, 0.92);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 62ch;
}

.contact-hero .btn-secondary {
  color: #eaf6ff;
  border-color: rgba(192, 223, 252, 0.74);
  background: rgba(11, 41, 72, 0.34);
}

.contact-hero .btn-secondary:hover {
  background: rgba(192, 223, 252, 0.16);
}

.contact-hero-aside {
  border-radius: 24px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(176, 214, 247, 0.28);
  background:
    linear-gradient(155deg, rgba(9, 31, 54, 0.72), rgba(16, 52, 86, 0.62)),
    linear-gradient(90deg, rgba(101, 176, 242, 0.16), transparent);
  box-shadow: 0 24px 44px rgba(7, 24, 41, 0.36);
  backdrop-filter: blur(6px);
}

.contact-hero-aside-kicker {
  margin: 0;
  color: #a7d9ff;
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-hero-aside h2 {
  margin: 10px 0 0;
  color: #f3faff;
  font-size: clamp(1.3rem, 2.4vw, 1.86rem);
  line-height: 1.2;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  max-width: 18ch;
}

.contact-hero-aside-lead {
  margin: 14px 0 0;
  color: rgba(221, 240, 254, 0.93);
  line-height: 1.62;
  font-size: 0.92rem;
}

.contact-hero-agenda {
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.contact-hero-agenda article {
  padding-top: 12px;
  border-top: 1px solid rgba(186, 222, 252, 0.32);
}

.contact-hero-agenda small {
  display: block;
  color: rgba(167, 219, 255, 0.96);
  font-size: 0.7rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-hero-agenda h3 {
  margin: 6px 0 0;
  color: #f2f9ff;
  font-size: 1rem;
  line-height: 1.3;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

.contact-hero-agenda p {
  margin: 6px 0 0;
  color: rgba(224, 242, 255, 0.9);
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-hero-aside-note {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px dashed rgba(186, 222, 252, 0.38);
  color: rgba(205, 232, 250, 0.95);
  font-size: 0.82rem;
  line-height: 1.56;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 34px;
}

.contact-card {
  background: #f7fbff;
  border: 1px solid #ccddf0;
  border-radius: 18px;
  padding: 18px;
}

.contact-card strong {
  display: block;
  margin-bottom: 4px;
  color: #123a60;
}

.contact-card p,
.contact-card a,
.contact-card span {
  color: #46607d;
}

.contact-brief {
  display: grid;
  grid-template-columns: 1fr 0.96fr;
  gap: clamp(22px, 3vw, 40px);
  align-items: start;
}

.contact-brief-copy h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(1.56rem, 2.7vw, 2.22rem);
  color: #11365b;
}

.contact-brief-copy p {
  margin: 14px 0 0;
  color: #405b79;
  line-height: 1.72;
  max-width: 62ch;
}

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

.contact-points li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 0;
  border-top: 1px solid #d2e1ef;
}

.contact-points b {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #eef8ff;
  background: linear-gradient(140deg, #1f5f9a, #3890ea);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
}

.contact-points span {
  color: #3e5a78;
  line-height: 1.62;
  padding-top: 8px;
}

.contact-hub {
  border-radius: 22px;
  padding: clamp(20px, 3vw, 30px);
  border: 1px solid rgba(183, 217, 246, 0.28);
  background:
    linear-gradient(145deg, rgba(9, 32, 56, 0.88), rgba(25, 78, 127, 0.84)),
    linear-gradient(90deg, rgba(104, 178, 250, 0.16), transparent);
  box-shadow: 0 22px 40px rgba(9, 30, 52, 0.28);
}

.contact-hub-kicker {
  margin: 0;
  color: #a7d9ff;
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 700;
}

.contact-hub h3 {
  margin: 10px 0 0;
  color: #f2f9ff;
  font-size: clamp(1.26rem, 2.2vw, 1.72rem);
  line-height: 1.2;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

.contact-hub-list {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
}

.contact-hub-list li {
  border-top: 1px solid rgba(191, 223, 252, 0.3);
  padding: 12px 0;
}

.contact-hub-list strong {
  display: block;
  color: #d6ecff;
  font-size: 0.83rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.contact-hub-list a,
.contact-hub-list span {
  color: #ecf8ff;
  line-height: 1.55;
  word-break: break-word;
}

.contact-hub-actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-hub .btn-secondary {
  color: #e8f5ff;
  border-color: rgba(192, 224, 253, 0.65);
  background: rgba(11, 41, 72, 0.45);
}

.contact-hub .btn-secondary:hover {
  background: rgba(192, 224, 253, 0.16);
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid #cfdeef;
  border-radius: 14px;
  background: #f7fbff;
  padding: 12px 14px;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: #163f68;
}

.faq p {
  margin: 10px 0 0;
  color: #425d7b;
  line-height: 1.65;
}

.about-hero {
  margin: 24px auto 0;
  padding: 22px 0 34px;
}

.about-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.02fr;
  gap: 32px;
  align-items: center;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(8, 28, 49, 0.95), rgba(20, 61, 100, 0.95)),
    linear-gradient(90deg, rgba(72, 145, 217, 0.18), transparent);
  box-shadow: 0 28px 52px rgba(8, 28, 49, 0.34);
}

.about-hero-copy h1 {
  margin: 0;
  color: #f4faff;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  max-width: 14ch;
}

.about-hero-copy .lead {
  max-width: 54ch;
}

.about-hero .btn-secondary {
  color: #e8f5ff;
  border-color: rgba(190, 224, 252, 0.72);
  background: rgba(16, 49, 82, 0.34);
}

.about-hero .btn-secondary:hover {
  background: rgba(190, 224, 252, 0.18);
}

.about-hero-media {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  min-height: clamp(340px, 44vw, 520px);
  position: relative;
  box-shadow: 0 18px 36px rgba(8, 28, 49, 0.3);
}

.about-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 20, 34, 0.08), rgba(5, 20, 34, 0.52));
}

.about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-media figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: rgba(242, 250, 255, 0.96);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-stats {
  margin-top: 8px;
}

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

.about-stats-grid article {
  border-top: 1px solid #bcd3eb;
  padding-top: 14px;
  display: grid;
  gap: 10px;
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #dff2ff;
  background: linear-gradient(145deg, #1e5b93, #2f85d9);
  box-shadow: 0 10px 22px rgba(19, 59, 95, 0.25);
}

.stat-icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.about-stats-grid strong {
  display: block;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(1.26rem, 2.3vw, 1.85rem);
  color: #143e67;
}

.about-stats-grid span {
  margin-top: 6px;
  display: block;
  color: #3f5d7d;
  line-height: 1.55;
  font-size: 0.9rem;
}

.about-story h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.18rem);
  color: #0f2f50;
}

.about-story p {
  margin: 14px 0 0;
  color: #3f5b79;
  line-height: 1.74;
}

.about-journey {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.about-journey-item {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid #d4e1ef;
}

.about-journey-item b {
  color: #1d5f99;
  font-size: 0.86rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding-top: 4px;
}

.about-journey-item h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
  color: #143b63;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

.about-journey-item p {
  margin: 0;
  color: #40607f;
  line-height: 1.62;
}

.about-principles-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.about-principles-copy h2 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(1.52rem, 2.8vw, 2.3rem);
  color: #123557;
}

.about-quote {
  margin: 0;
  border-radius: 24px;
  padding: clamp(22px, 3.2vw, 34px);
  background:
    linear-gradient(140deg, rgba(9, 34, 60, 0.95), rgba(26, 82, 134, 0.94)),
    linear-gradient(90deg, rgba(97, 173, 247, 0.2), transparent);
  box-shadow: 0 20px 40px rgba(10, 33, 56, 0.34);
}

.about-quote p {
  margin: 0;
  color: rgba(234, 247, 255, 0.96);
  line-height: 1.76;
  font-size: 1.03rem;
}

.about-quote span {
  display: block;
  margin-top: 14px;
  color: rgba(180, 217, 247, 0.95);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-hero {
  position: relative;
  min-height: 88svh;
  overflow: hidden;
}

.control-hero-bg {
  position: absolute;
  inset: 0;
}

.control-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.control-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      112deg,
      rgba(6, 18, 33, 0.94) 10%,
      rgba(11, 39, 68, 0.86) 44%,
      rgba(31, 96, 156, 0.54) 82%
    ),
    linear-gradient(180deg, rgba(7, 25, 43, 0.16), rgba(7, 25, 43, 0.58)),
    radial-gradient(circle at 82% 20%, rgba(255, 255, 255, 0.24), transparent 20%);
}

.control-hero-grid {
  position: relative;
  z-index: 2;
  min-height: 88svh;
  padding-top: clamp(92px, 11.5vh, 136px);
  padding-bottom: clamp(62px, 9.5vh, 102px);
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: center;
}

.control-hero-copy h1 {
  margin: 0;
  color: #66c2ff;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: clamp(2.06rem, 4.8vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 12ch;
}

.control-hero-copy .lead-light {
  margin-top: 18px;
  max-width: 56ch;
  color: rgba(241, 250, 255, 0.96);
  text-shadow: 0 8px 26px rgba(3, 14, 29, 0.62);
}

.control-keyline {
  margin: 22px 0 0;
  color: rgba(222, 241, 255, 0.92);
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 62ch;
}

.control-panel {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.control-panel-media {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: 0 24px 40px rgba(5, 18, 33, 0.44);
}

.control-panel-media img {
  width: 100%;
  height: auto;
  display: block;
}

.control-mini-metrics {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(176, 214, 247, 0.3);
  border-radius: 0;
  overflow: visible;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: transparent;
}

.control-mini-metrics article {
  padding: 0;
}

.control-mini-metrics article + article {
  border-left: 1px solid rgba(177, 215, 248, 0.3);
  padding-left: 14px;
}

.control-mini-metrics strong {
  display: block;
  color: #f7fcff;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  font-size: 1.22rem;
  letter-spacing: -0.01em;
}

.control-mini-metrics span {
  display: block;
  margin-top: 5px;
  color: rgba(216, 237, 254, 0.9);
  font-size: 0.76rem;
  line-height: 1.5;
}

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

.control-monitor-grid article {
  padding: 14px 0;
  border-top: 1px solid #cadbeb;
}

.control-monitor-grid h3 {
  margin: 0;
  font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
  color: #133e66;
  font-size: 1.06rem;
}

.control-monitor-grid p {
  margin: 8px 0 0;
  color: #3f5e7d;
  line-height: 1.63;
}

.site-footer {
  margin-top: 58px;
  border-top: 1px solid #cadced;
  padding: 30px 0;
  color: #45617f;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

@media (max-width: 980px) {
  .hero-shell,
  .split,
  .contact-grid,
  .contact-brief,
  .contact-hero-grid,
  .about-hero-grid,
  .about-principles-grid,
  .about-stats-grid,
  .control-hero-grid,
  .control-monitor-grid,
  .control-mini-metrics {
    grid-template-columns: 1fr;
  }

  .hero-slide-title {
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .hero-media {
    min-height: 360px;
  }

  .services-list li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-hero-copy h1 {
    max-width: 100%;
  }

  .about-hero-media {
    min-height: 320px;
  }

  .about-journey-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-points li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact-points span {
    padding-top: 0;
  }

  .contact-hero-copy h1,
  .contact-hero-keyline,
  .contact-hero-aside h2 {
    max-width: 100%;
  }

  .home-full-cta-content h2,
  .home-full-cta-content p {
    max-width: 100%;
  }

  .control-hero-copy h1 {
    max-width: 100%;
  }

  .control-hero,
  .control-hero-grid {
    min-height: auto;
  }

  .contact-hero,
  .contact-hero-grid {
    min-height: auto;
  }

  .control-mini-metrics article + article {
    border-left: 0;
    border-top: 1px solid rgba(177, 215, 248, 0.2);
    padding-left: 0;
    padding-top: 12px;
  }
}

@media (max-width: 780px) {
  .site-header {
    padding-top: 8px;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: min(340px, 92vw);
    background: rgba(248, 252, 255, 0.96);
    border-radius: 16px;
    border: 1px solid #bdd3ea;
    box-shadow: var(--shadow);
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    backdrop-filter: blur(8px);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-radius: 0;
    padding: 10px 2px;
  }

  .main-nav a::after {
    bottom: 1px;
  }

  body.overlay-nav .main-nav {
    background: rgba(8, 25, 44, 0.96);
    border-color: rgba(169, 204, 236, 0.35);
  }

  body.overlay-nav .main-nav a {
    color: rgba(234, 246, 255, 0.92);
  }

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

  .hero-slider {
    min-height: 72vh;
  }

  .contact-hero-grid {
    padding-top: 84px;
    padding-bottom: 48px;
    gap: 20px;
  }

  .contact-hero-aside {
    padding: 18px;
  }

  .home-full-cta-section,
  .home-full-cta-content {
    min-height: 62svh;
  }

  .home-full-cta-content {
    padding-top: 58px;
    padding-bottom: 54px;
  }

  .about-slider {
    min-height: 76vh;
  }

  .hero-arrow {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .hero-rail {
    display: none;
  }

  .hero-swipe-label {
    top: 14px;
    left: 14px;
    font-size: 0.7rem;
  }

  .image-band--blend {
    min-height: clamp(250px, 62vw, 330px);
  }

  .image-band--blend::before {
    left: 50%;
    top: 10%;
    bottom: 10%;
  }

  .image-band--blend figcaption {
    font-size: 0.88rem;
    line-height: 1.42;
  }

  .image-band--blend figcaption span {
    font-size: 0.68rem;
  }
}
