:root {
  --c-blue: #002855;
  --c-orange: #ff7f27;
  --c-ink: #1a1a1d;
  --c-muted: rgba(26, 26, 29, 0.72);
  --c-line: rgba(26, 26, 29, 0.12);
  --c-bg: #ffffff;
  --c-surface: rgba(255, 255, 255, 0.92);
  --c-surface-2: rgba(255, 255, 255, 0.82);
  --c-soft: rgba(0, 40, 85, 0.06);
  --c-soft-2: rgba(255, 127, 39, 0.08);
  --c-hero: #071628;
  --c-hero-2: rgba(0, 40, 85, 0.56);
  --c-hero-3: rgba(255, 127, 39, 0.32);

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;

  --shadow-sm: 0 8px 22px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 16px 38px rgba(0, 0, 0, 0.12);

  --container: 1120px;
  --gutter: 18px;

  --step--1: 0.92rem;
  --step-0: 1rem;
  --step-1: 1.25rem;
  --step-2: 1.6rem;
  --step-3: 2.1rem;
  --step-4: 2.8rem;
}

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

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

body {
  margin: 0;
  color: var(--c-ink);
  background:
    radial-gradient(1200px 600px at 15% -10%, rgba(0, 40, 85, 0.08), transparent 60%),
    radial-gradient(900px 520px at 95% 10%, rgba(255, 127, 39, 0.09), transparent 52%),
    linear-gradient(180deg, #f7f9fc, #ffffff 34%, #ffffff);
  background-size: 140% 140%;
  animation: page-bg 18s ease-in-out infinite alternate;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Montserrat, Arial, "Noto Sans",
    "Liberation Sans", sans-serif;
  line-height: 1.55;
  text-rendering: geometricPrecision;
}

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

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

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

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--c-blue);
  color: #fff;
  transform: translateY(-150%);
  z-index: 999;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--c-line);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 6px;
}

.brand-logo {
  width: 132px;
  height: auto;
}

.nav-toggle {
  border: 1px solid var(--c-line);
  background: #fff;
  border-radius: 12px;
  padding: 8px;
  display: inline-flex;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.05);
}

.nav-toggle:focus-visible {
  outline: 3px solid rgba(255, 127, 39, 0.35);
  outline-offset: 2px;
}

.nav-toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
}

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  top: 68px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--c-line);
  padding: 16px var(--gutter) 20px;
  transform: translateY(-14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

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

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

.nav-link {
  display: block;
  padding: 12px 12px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-link:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 40, 85, 0.18);
  background: rgba(0, 40, 85, 0.04);
}

.nav-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: transparent;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.nav-icon-link:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 40, 85, 0.18);
  background: rgba(0, 40, 85, 0.04);
}

.contact-icon-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  font-weight: 700;
  letter-spacing: 0.2px;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:focus-visible {
  outline: 3px solid rgba(255, 127, 39, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  background: var(--c-orange);
  color: #1b0f06;
  box-shadow: 0 12px 24px rgba(255, 127, 39, 0.28);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 30px rgba(255, 127, 39, 0.34);
}

.btn-ghost {
  background: rgba(0, 40, 85, 0.06);
  border-color: rgba(0, 40, 85, 0.18);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 40, 85, 0.3);
}

@keyframes page-bg {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 100% 40%;
  }
}

.btn-cta {
  margin-top: 12px;
  width: 100%;
}

.btn-on-dark {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.btn-on-dark:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.34);
}

.hero {
  position: relative;
  padding: 0 0 38px;
  min-height: 100svh;
  overflow: hidden;
  color: #fff;
  isolation: isolate;
  background:
    radial-gradient(1200px 560px at 20% 10%, rgba(255, 127, 39, 0.16), transparent 56%),
    radial-gradient(900px 540px at 80% 20%, rgba(0, 40, 85, 0.55), transparent 60%),
    linear-gradient(180deg, rgba(7, 22, 40, 0.96), rgba(7, 22, 40, 0.76));
}

.hero::before {
  content: "";
  position: absolute;
  inset: -180px -160px auto -160px;
  height: 640px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0, rgba(255, 255, 255, 0.12) 2px, transparent 2px, transparent 18px),
    linear-gradient(135deg, rgba(255, 127, 39, 0.22) 0, rgba(255, 127, 39, 0.22) 2px, transparent 2px, transparent 28px);
  opacity: 0.55;
  transform: rotate(-2deg);
  pointer-events: none;
  z-index: 0;
}

.hero--image::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(1.05) contrast(1.02);
  pointer-events: none;
  z-index: 0;
  transform: translateY(calc(var(--hero-shift, 0px) * -1)) scale(1.06);
  will-change: transform;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.26;
  filter: saturate(1.05) contrast(1.02);
  pointer-events: none;
  z-index: 0;
}

.hero-grid {
  display: grid;
  gap: 28px;
  grid-template-rows: 1fr auto;
  min-height: calc(100svh - 38px);
  align-content: stretch;
  padding-top: 92px;
  padding-bottom: 72px;
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  gap: 22px;
  align-content: start;
  max-width: 70ch;
  align-self: center;
}

.hero-bottom {
  align-self: end;
}

.hero-logo {
  width: clamp(190px, 44vw, 300px);
  height: auto;
  filter: drop-shadow(0 22px 50px rgba(0, 0, 0, 0.55));
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--c-blue);
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.kicker-on-dark {
  color: rgba(255, 255, 255, 0.82);
}

.hero-title {
  margin: 0;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.hero-title-on-dark {
  color: rgba(255, 255, 255, 0.98);
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  margin: 0;
  color: var(--c-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  max-width: 60ch;
}

.hero-subtitle-on-dark {
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
}

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

.hero-strip {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 80ch;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 900;
  font-size: 0.9rem;
}

.hero-aside {
  display: grid;
  align-content: start;
}

.hero-aside-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(255, 127, 39, 0.14), rgba(0, 40, 85, 0.14)),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
  padding: 18px 18px 16px;
  backdrop-filter: blur(10px);
}

.hero-aside-title {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.2px;
  color: rgba(255, 255, 255, 0.96);
}

.hero-aside-text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.74);
}

.hero-aside-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  color: rgba(255, 127, 39, 0.92);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-aside-link:hover {
  color: rgba(255, 255, 255, 0.92);
}

.hero-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 127, 39, 0.12), rgba(0, 40, 85, 0.12)),
    rgba(255, 255, 255, 0.06);
  padding: 16px 16px 14px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.hero-card-k {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 0.78rem;
}

.hero-card-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 800;
  display: grid;
  gap: 8px;
}

.hero-card-metrics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hero-chips {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  max-width: 62ch;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.85);
  font-weight: 800;
  font-size: 0.88rem;
}

.hero-highlights {
  display: grid;
  gap: 12px;
}

.highlight-card {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 127, 39, 0.12), rgba(0, 40, 85, 0.12)),
    rgba(255, 255, 255, 0.06);
  padding: 16px 16px 14px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.highlight-kicker {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 0.78rem;
}

.highlight-title {
  margin: 10px 0 0;
  font-weight: 950;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.2px;
  font-size: 1.1rem;
}

.highlight-text {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.76);
}

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

.metric {
  padding: 12px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
}

.metric-k {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 900;
  font-size: 0.82rem;
}

.metric-v {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 950;
  letter-spacing: -0.2px;
}

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

.stat {
  padding: 12px 12px;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.stat dt {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin: 0;
}

.stat dd {
  margin: 3px 0 0;
  font-weight: 900;
  color: var(--c-blue);
}

.hero-panel {
  display: grid;
  place-items: stretch;
}

.hero-panel-card {
  border-radius: 18px;
  border: 1px solid rgba(0, 40, 85, 0.18);
  background:
    linear-gradient(135deg, rgba(0, 40, 85, 0.06), rgba(255, 127, 39, 0.06)),
    #fff;
  padding: 18px 18px 16px;
  box-shadow: var(--shadow-md);
}

.hero-panel-title {
  margin: 0;
  font-weight: 900;
  color: var(--c-blue);
  font-size: 1.05rem;
}

.hero-panel-text {
  margin: 10px 0 0;
  color: var(--c-muted);
}

.hero-panel-badges {
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 40, 85, 0.16);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 800;
  font-size: 0.85rem;
}

.section-divider {
  height: 26px;
  background:
    linear-gradient(135deg, transparent 0 30%, rgba(0, 40, 85, 0.18) 30% 32%, transparent 32% 62%, rgba(255, 127, 39, 0.22) 62% 64%, transparent 64% 100%),
    linear-gradient(90deg, rgba(0, 40, 85, 0.12), rgba(255, 127, 39, 0.14));
}

.section-divider-hero {
  height: 38px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0) 0 18%, rgba(255, 255, 255, 0.22) 18% 20%, rgba(255, 255, 255, 0) 20% 48%, rgba(255, 127, 39, 0.32) 48% 50%, rgba(255, 255, 255, 0) 50% 100%),
    linear-gradient(90deg, rgba(0, 40, 85, 0.7), rgba(255, 127, 39, 0.34));
}

.band {
  padding: 20px 0;
  background:
    linear-gradient(135deg, rgba(0, 40, 85, 0.06), rgba(255, 127, 39, 0.06)),
    #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.band-highlight {
  background:
    linear-gradient(135deg, rgba(0, 40, 85, 0.06), rgba(255, 127, 39, 0.06)),
    linear-gradient(90deg, rgba(0, 40, 85, 0.06), rgba(255, 127, 39, 0.06));
}

.band-inner {
  display: grid;
  gap: 12px;
  align-items: center;
}

.band-copy {
  display: grid;
  gap: 6px;
}

.band-kicker {
  margin: 0;
  color: var(--c-blue);
  font-weight: 950;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.band-text {
  margin: 0;
  color: var(--c-muted);
}

.band-cta {
  justify-self: start;
}

@media (min-width: 860px) {
  .band-inner {
    grid-template-columns: 1fr auto;
  }
}

.section-divider-soft {
  height: 22px;
  background:
    linear-gradient(135deg, rgba(0, 40, 85, 0) 0 22%, rgba(0, 40, 85, 0.18) 22% 24%, rgba(0, 40, 85, 0) 24% 62%, rgba(255, 127, 39, 0.22) 62% 64%, rgba(0, 40, 85, 0) 64% 100%),
    linear-gradient(90deg, rgba(0, 40, 85, 0.08), rgba(255, 127, 39, 0.1));
}

.section-divider-dark {
  height: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0) 0 16%, rgba(255, 255, 255, 0.16) 16% 18%, rgba(255, 255, 255, 0) 18% 56%, rgba(255, 127, 39, 0.26) 56% 58%, rgba(255, 255, 255, 0) 58% 100%),
    linear-gradient(90deg, rgba(7, 22, 40, 0.95), rgba(0, 40, 85, 0.72));
}

.section {
  padding: 48px 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(255, 127, 39, 0.18), transparent 56%),
    radial-gradient(900px 520px at 85% 10%, rgba(0, 40, 85, 0.6), transparent 60%),
    linear-gradient(180deg, rgba(7, 22, 40, 0.96), rgba(7, 22, 40, 0.78));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: -220px -180px auto -180px;
  height: 520px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0, rgba(255, 255, 255, 0.14) 2px, transparent 2px, transparent 18px),
    linear-gradient(135deg, rgba(255, 127, 39, 0.22) 0, rgba(255, 127, 39, 0.22) 2px, transparent 2px, transparent 28px);
  opacity: 0.25;
  transform: rotate(-2deg);
  pointer-events: none;
}

.section-dark .container {
  position: relative;
  z-index: 1;
}

.section-about {
  position: relative;
  overflow: hidden;
}

.section-about::before {
  content: "";
  position: absolute;
  inset: -220px -180px auto -180px;
  height: 520px;
  background:
    linear-gradient(135deg, rgba(0, 40, 85, 0.14) 0, rgba(0, 40, 85, 0.14) 2px, transparent 2px, transparent 18px),
    linear-gradient(135deg, rgba(255, 127, 39, 0.16) 0, rgba(255, 127, 39, 0.16) 2px, transparent 2px, transparent 26px);
  opacity: 0.28;
  transform: rotate(-2deg);
  pointer-events: none;
}

.section-muted {
  background:
    linear-gradient(135deg, rgba(0, 40, 85, 0.04), rgba(255, 127, 39, 0.035)),
    #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section-solutions {
  position: relative;
  overflow: hidden;
}

.section-solutions::before {
  content: "";
  position: absolute;
  inset: auto -180px -240px -180px;
  height: 580px;
  background:
    radial-gradient(520px 360px at 12% 35%, rgba(255, 127, 39, 0.18), transparent 60%),
    radial-gradient(620px 420px at 86% 45%, rgba(0, 40, 85, 0.16), transparent 62%),
    linear-gradient(135deg, rgba(0, 40, 85, 0.12) 0, rgba(0, 40, 85, 0.12) 2px, transparent 2px, transparent 18px);
  opacity: 0.7;
  pointer-events: none;
}

.section-solutions .container {
  position: relative;
  z-index: 1;
}

.tabs {
  margin-top: 18px;
}

.tabs-nav {
  display: flex;
  gap: 10px;
  overflow: auto;
  padding-bottom: 6px;
  scroll-snap-type: x mandatory;
}

.tabs-tab {
  border: 1px solid rgba(26, 26, 29, 0.14);
  background: rgba(255, 255, 255, 0.78);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 950;
  cursor: pointer;
  white-space: nowrap;
  scroll-snap-align: start;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.tabs-tab:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 40, 85, 0.24);
  box-shadow: var(--shadow-sm);
}

.tabs-tab[aria-selected="true"] {
  background:
    linear-gradient(135deg, rgba(255, 127, 39, 0.18), rgba(0, 40, 85, 0.14)),
    rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 127, 39, 0.4);
}

.tabs-panels {
  margin-top: 14px;
}

.tabs-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 29, 0.1);
  background:
    radial-gradient(900px 420px at 0% 0%, rgba(255, 127, 39, 0.14), transparent 55%),
    radial-gradient(900px 420px at 100% 10%, rgba(0, 40, 85, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.tabs-content {
  padding: 18px 18px 20px;
}

.tabs-content h3 {
  margin: 0;
  color: var(--c-blue);
  font-weight: 950;
  letter-spacing: -0.2px;
}

.tabs-content p {
  margin: 10px 0 0;
  color: rgba(26, 26, 29, 0.78);
  max-width: 76ch;
}

.tabs-note {
  color: rgba(0, 40, 85, 0.86);
  font-weight: 900;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  letter-spacing: -0.3px;
  position: relative;
  padding-left: 14px;
}

.section-head h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  bottom: 0.22em;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 127, 39, 0.95), rgba(0, 40, 85, 0.95));
}

.lead {
  margin: 0;
  color: var(--c-muted);
  font-size: var(--step-1);
  max-width: 70ch;
}

.section-head-on-dark h2 {
  color: rgba(255, 255, 255, 0.96);
}

.lead-on-dark {
  color: rgba(255, 255, 255, 0.74);
}

.card {
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  backdrop-filter: blur(10px);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 40, 85, 0.22);
}

.tile {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  padding: 18px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  isolation: isolate;
  color: rgba(255, 255, 255, 0.92);
  transform: translateZ(0);
}

.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--tile-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  opacity: 0.92;
  transform: scale(1.04);
  transition: transform 520ms ease;
  z-index: 0;
}

.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 40, 0.22), rgba(7, 22, 40, 0.82)),
    radial-gradient(700px 320px at 15% 0%, rgba(255, 127, 39, 0.34), transparent 56%),
    radial-gradient(700px 360px at 90% 20%, rgba(0, 40, 85, 0.45), transparent 62%);
  z-index: 0;
}

.tile > * {
  position: relative;
  z-index: 1;
}

.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.28);
}

.tile:hover::before {
  transform: scale(1.1);
}

.tile h3 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -0.2px;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.5);
}

.tile p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.tile-service {
  min-height: 240px;
}

.tile-solution {
  min-height: 210px;
}

.card-head {
  padding: 16px 16px 0;
}

.card-kicker {
  margin: 0 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(0, 40, 85, 0.14);
  background: rgba(0, 40, 85, 0.06);
  color: var(--c-blue);
  font-weight: 950;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.card-accent {
  position: relative;
  border-color: rgba(0, 40, 85, 0.16);
  isolation: isolate;
  background:
    radial-gradient(700px 360px at 10% 0%, rgba(255, 127, 39, 0.12), transparent 58%),
    radial-gradient(780px 360px at 110% 30%, rgba(0, 40, 85, 0.12), transparent 55%),
    var(--c-surface);
}

.card-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 40, 85, 0.16) 0, rgba(0, 40, 85, 0.16) 2px, transparent 2px, transparent 16px),
    linear-gradient(135deg, rgba(255, 127, 39, 0.18) 0, rgba(255, 127, 39, 0.18) 2px, transparent 2px, transparent 22px);
  opacity: 0.18;
  pointer-events: none;
  z-index: 0;
}

.card-accent > * {
  position: relative;
  z-index: 1;
}

.card-surface {
  background: var(--c-surface-2);
}

.card-head h3 {
  margin: 0;
  color: var(--c-blue);
  font-weight: 900;
  letter-spacing: -0.2px;
}

.card-body {
  padding: 12px 16px 16px;
  color: var(--c-muted);
}

.card-body p {
  margin: 0;
}

.card-body p + p {
  margin-top: 10px;
}

.card-compact {
  padding: 16px;
}

.card-compact h3 {
  margin: 0 0 8px;
  color: var(--c-blue);
  font-weight: 900;
}

.cards-3 {
  display: grid;
  gap: 14px;
}

.about-wrap {
  display: grid;
  gap: 14px;
}

.about-top {
  display: grid;
  gap: 14px;
  align-items: start;
}

.about-text {
  position: relative;
  padding: 0;
}

.about-text::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  bottom: 0.35rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 127, 39, 0.95), rgba(0, 40, 85, 0.95));
  pointer-events: none;
}

.about-title {
  margin: 14px 0 0;
  font-weight: 950;
  letter-spacing: -0.3px;
  color: var(--c-blue);
  position: relative;
  z-index: 1;
}

.about-intro {
  margin: 0;
  color: rgba(26, 26, 29, 0.78);
  position: relative;
  z-index: 1;
}

.about-prose {
  margin-top: 12px;
  color: rgba(26, 26, 29, 0.78);
  position: relative;
  z-index: 1;
}

.about-text > * {
  padding-left: 16px;
}

.about-list {
  margin: 12px 0 0;
  padding-left: 34px;
  color: rgba(26, 26, 29, 0.78);
  display: grid;
  gap: 10px;
}

.about-list li {
  margin: 0;
}

.about-prose p {
  margin: 0;
}

.about-prose p + p {
  margin-top: 10px;
}

.about-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 29, 0.1);
  box-shadow: var(--shadow-sm);
  position: relative;
  background: rgba(0, 40, 85, 0.06);
  isolation: isolate;
}

.about-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--about-src);
  background-size: cover;
  background-position: center;
  filter: blur(16px) saturate(1.05) contrast(1.02);
  transform: scale(1.12);
  opacity: 0.55;
  z-index: 0;
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 22, 40, 0.12), rgba(7, 22, 40, 0.55));
  z-index: 0;
}

.about-media img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: opacity 220ms ease, transform 520ms ease;
  position: relative;
  z-index: 1;
  transform: scale(1.06);
}

.about-media-right img {
  height: 300px;
}

.about-rotate.is-fading {
  opacity: 0;
  transform: scale(1.02);
}

.about-bottom {
  display: grid;
  gap: 12px;
}

.about-panel {
  border-radius: 18px;
  padding: 16px 16px;
  background:
    linear-gradient(135deg, rgba(0, 40, 85, 0.08), rgba(255, 127, 39, 0.06)),
    rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(26, 26, 29, 0.1);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
}

.about-panel-k {
  margin: 0;
  color: var(--c-blue);
  font-weight: 950;
  letter-spacing: -0.2px;
}

.about-panel-v {
  margin: 10px 0 0;
  color: rgba(26, 26, 29, 0.74);
}

.feature-grid {
  display: grid;
  gap: 12px;
}

.feature {
  padding: 16px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
  background:
    radial-gradient(620px 280px at 0% 0%, rgba(255, 127, 39, 0.14), transparent 55%),
    radial-gradient(700px 320px at 100% 10%, rgba(0, 40, 85, 0.12), transparent 60%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-sm);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.feature:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 40, 85, 0.22);
}

.feature::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 40, 85, 0.16) 0, rgba(0, 40, 85, 0.16) 2px, transparent 2px, transparent 18px),
    linear-gradient(135deg, rgba(255, 127, 39, 0.18) 0, rgba(255, 127, 39, 0.18) 2px, transparent 2px, transparent 26px);
  opacity: 0.1;
  pointer-events: none;
}

.feature > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 127, 39, 0.28), rgba(0, 40, 85, 0.22)),
    rgba(255, 255, 255, 0.82);
  color: var(--c-blue);
  border: 1px solid rgba(0, 40, 85, 0.12);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.feature h3 {
  margin: 12px 0 6px;
  font-weight: 900;
}

.feature p {
  margin: 0;
  color: var(--c-muted);
}

.scroller {
  margin-top: 18px;
}

.scroller-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 12px;
}

.scroller-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.scroller-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.scroller-viewport {
  overflow: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(10px);
}

.scroller-viewport:focus-visible {
  outline: 3px solid rgba(255, 127, 39, 0.35);
  outline-offset: 2px;
}

.scroller-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 12px;
  padding: 12px;
}

.media-card {
  scroll-snap-align: start;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  padding: 18px 16px 16px;
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.media-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--media);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.08) brightness(0.82);
  transform: scale(1.06);
  transition: transform 520ms ease;
  z-index: 0;
}

.media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 40, 0.18), rgba(7, 22, 40, 0.92)),
    radial-gradient(700px 320px at 15% 0%, rgba(255, 127, 39, 0.32), transparent 56%),
    radial-gradient(700px 360px at 90% 20%, rgba(0, 40, 85, 0.48), transparent 62%);
  z-index: 0;
}

.media-card:hover::before {
  transform: scale(1.12);
}

.media-card > * {
  position: relative;
  z-index: 1;
}

.media-card h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 950;
  letter-spacing: -0.2px;
  text-shadow: 0 18px 46px rgba(0, 0, 0, 0.5);
}

.media-card p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 44ch;
}

.services-grid {
  display: grid;
  gap: 12px;
}

.services-grid-full {
  margin-top: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.26);
  text-align: center;
  backdrop-filter: blur(10px);
  height: 320px;
}

.service-card-media {
  position: relative;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.18);
}

.service-card-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(1.05) contrast(1.08) brightness(0.88);
}

.service-card-body {
  padding: 14px 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.service-card-body h3 {
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-weight: 950;
  letter-spacing: -0.2px;
}

.service-card-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (min-width: 640px) {
  .services-grid.services-grid-full {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    height: 330px;
  }
}

@media (min-width: 980px) {
  .services-grid.services-grid-full {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }

  .services-grid.services-grid-full > .service-card {
    flex: 0 0 calc((100% - 36px) / 4);
  }

  .service-card-media img {
    height: 170px;
  }

  .service-card {
    height: 320px;
  }
}

.services-layout {
  display: grid;
  gap: 14px;
  align-items: start;
}

.services-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.services-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(26, 26, 29, 0.1);
  box-shadow: var(--shadow-sm);
}

.service p {
  margin: 0;
  color: var(--c-muted);
}

.tile.service p {
  color: rgba(255, 255, 255, 0.8);
}

.tile-solution .solution-h {
  color: rgba(255, 255, 255, 0.96);
}

.tile-solution .solution-tag {
  color: rgba(255, 255, 255, 0.78);
}

.tile-solution .solution-desc {
  color: rgba(255, 255, 255, 0.78);
}

.tile-solution .solution-ex {
  color: rgba(255, 255, 255, 0.86);
}

.tile-solution .solution-icon {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(255, 127, 39, 0.28), rgba(0, 40, 85, 0.28)),
    rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.solution-grid {
  display: grid;
  gap: 12px;
}

.solution-grid-modern {
  gap: 14px;
}

.solution-card {
  border: 1px solid var(--c-line);
  border-radius: var(--radius-lg);
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  backdrop-filter: blur(10px);
}

.solution-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 40, 85, 0.22);
}

.solution-top {
  width: 100%;
  border: 0;
  background: transparent;
  text-align: left;
  padding: 16px 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title chev"
    "meta chev";
  gap: 4px 10px;
  cursor: pointer;
}

.solution-top:focus-visible {
  outline: 3px solid rgba(255, 127, 39, 0.35);
  outline-offset: 0;
}

.solution-title {
  grid-area: title;
  font-weight: 900;
  color: var(--c-blue);
  letter-spacing: -0.2px;
}

.solution-meta {
  grid-area: meta;
  color: var(--c-muted);
  font-size: 0.92rem;
}

.chev {
  grid-area: chev;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(0, 40, 85, 0.14);
  background: rgba(0, 40, 85, 0.06);
  position: relative;
  align-self: center;
}

.chev::before,
.chev::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 2px;
  background: var(--c-blue);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 160ms ease;
}

.chev::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.chev::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

[data-open="true"] .chev::before {
  transform: translate(-50%, -50%) rotate(-45deg);
}

[data-open="true"] .chev::after {
  transform: translate(-50%, -50%) rotate(45deg);
}

.solution-body {
  padding: 0 16px 16px;
  color: var(--c-muted);
  display: grid;
  gap: 10px;
}

.solution-body[hidden] {
  display: none;
}

.solution-card-modern {
  position: relative;
  padding: 16px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(760px 360px at 0% 0%, rgba(0, 40, 85, 0.09), transparent 55%),
    radial-gradient(700px 340px at 100% 10%, rgba(255, 127, 39, 0.08), transparent 58%),
    var(--c-surface);
}

.solution-card-modern::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(0, 40, 85, 0.12) 0, rgba(0, 40, 85, 0.12) 2px, transparent 2px, transparent 20px),
    linear-gradient(135deg, rgba(255, 127, 39, 0.14) 0, rgba(255, 127, 39, 0.14) 2px, transparent 2px, transparent 30px);
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.solution-card-modern.tile {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.solution-card-modern.tile::before {
  background-image: var(--tile-image);
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) contrast(1.02);
  opacity: 0.92;
  transform: scale(1.04);
  transition: transform 520ms ease;
}

.solution-card-modern.tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 22, 40, 0.22), rgba(7, 22, 40, 0.82)),
    radial-gradient(700px 320px at 15% 0%, rgba(255, 127, 39, 0.34), transparent 56%),
    radial-gradient(700px 360px at 90% 20%, rgba(0, 40, 85, 0.45), transparent 62%);
  z-index: 0;
}

.solution-card-modern > * {
  position: relative;
  z-index: 1;
}

.solution-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.solution-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(0, 40, 85, 0.16);
  background:
    linear-gradient(135deg, rgba(0, 40, 85, 0.16), rgba(255, 127, 39, 0.18)),
    rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.solution-h {
  margin: 0;
  color: var(--c-blue);
  font-weight: 950;
  letter-spacing: -0.2px;
}

.solution-tag {
  margin: 6px 0 0;
  color: rgba(26, 26, 29, 0.68);
  font-weight: 800;
  font-size: 0.9rem;
}

.solution-desc {
  margin: 12px 0 0;
  color: var(--c-muted);
}

.solution-ex {
  margin: 10px 0 0;
  color: rgba(0, 40, 85, 0.82);
  font-weight: 800;
}

.solutions-banner {
  margin: 0 0 16px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 29, 0.1);
  box-shadow: var(--shadow-sm);
}

.solutions-banner img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.section-gallery {
  color: rgba(255, 255, 255, 0.9);
  background:
    radial-gradient(900px 520px at 15% 0%, rgba(255, 127, 39, 0.18), transparent 56%),
    radial-gradient(900px 520px at 85% 10%, rgba(0, 40, 85, 0.6), transparent 60%),
    linear-gradient(180deg, rgba(7, 22, 40, 0.96), rgba(7, 22, 40, 0.78));
  background-size: 140% 140%;
  animation: bg-shift 14s ease-in-out infinite alternate;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.carousel {
  margin-top: 18px;
  --carousel-per-view: 1;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.36);
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.carousel-viewport {
  outline: none;
}

.carousel-viewport:focus-visible {
  outline: 3px solid rgba(255, 127, 39, 0.35);
  outline-offset: -3px;
}

.carousel-track {
  display: flex;
  transition: transform 520ms ease;
}

.carousel-slide {
  margin: 0;
  flex: 0 0 calc(100% / var(--carousel-per-view));
  position: relative;
  padding: 10px;
}

.carousel-slide img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.22);
  border-radius: 14px;
  display: block;
}

.carousel-slide figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 900;
  letter-spacing: -0.2px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.58));
}

.carousel-controls {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.carousel-counter {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 900;
}

.carousel-counter span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.carousel-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.carousel-btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  padding: 0;
}

.carousel-dot[aria-current="true"] {
  background: rgba(255, 127, 39, 0.85);
  border-color: rgba(255, 127, 39, 0.95);
}

@media (min-width: 640px) {
  .carousel {
    --carousel-per-view: 2;
  }

  .carousel-slide img {
    height: 240px;
  }
}

@media (min-width: 980px) {
  .carousel {
    --carousel-per-view: 3;
  }

  .carousel-slide img {
    height: 260px;
  }
}

@media (min-width: 1200px) {
  .carousel {
    --carousel-per-view: 4;
  }
}

.carousel-progress {
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.carousel-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, rgba(255, 127, 39, 0.95), rgba(0, 40, 85, 0.95));
}

@keyframes bg-shift {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 100% 40%;
  }
}

.contact-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 29, 0.1);
  box-shadow: var(--shadow-sm);
}

.contact-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.contact-grid {
  display: grid;
  gap: 12px;
}

.form {
  padding: 16px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field > span {
  font-weight: 800;
  color: var(--c-blue);
  font-size: 0.95rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(26, 26, 29, 0.18);
  background: rgba(255, 255, 255, 0.92);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(255, 127, 39, 0.6);
  box-shadow: 0 0 0 4px rgba(255, 127, 39, 0.18);
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
  flex-wrap: wrap;
}

.form-note {
  margin: 0;
  color: var(--c-muted);
  font-weight: 700;
}

.contact-aside {
  display: grid;
  gap: 12px;
}

.contact-card {
  padding: 16px;
}

.contact-card h3 {
  margin: 0;
  color: var(--c-blue);
  font-weight: 950;
}

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

.contact-list li {
  display: grid;
  gap: 4px;
}

.contact-k {
  font-weight: 900;
  color: var(--c-blue);
}

.contact-v {
  color: var(--c-muted);
}

.link {
  color: var(--c-blue);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.link:hover {
  color: var(--c-orange);
}

.signature {
  padding: 16px;
}

.signature p {
  margin: 0;
  color: var(--c-muted);
}

.signature-name {
  margin-top: 8px;
  font-weight: 900;
  color: var(--c-ink);
}

.signature-role,
.signature-org {
  font-weight: 800;
}

.map {
  margin-top: 14px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 29, 0.12);
  box-shadow: var(--shadow-sm);
}

.map iframe {
  width: 100%;
  height: 320px;
  border: 0;
  display: block;
}

.whatsapp-fab {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.28);
  z-index: 80;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  filter: saturate(1.05);
}

.whatsapp-fab:focus-visible {
  outline: 3px solid rgba(37, 211, 102, 0.35);
  outline-offset: 3px;
}

.footer {
  padding: 34px 0 18px;
  background: #0c1a2c;
  color: rgba(255, 255, 255, 0.86);
}

.footer-grid {
  display: grid;
  gap: 18px;
}

.footer-logo {
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.footer-title {
  margin: 0 0 10px;
  font-size: 1.05rem;
  color: #fff;
}

.footer-text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-bottom {
  margin-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 14px;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

[data-animate] {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

[data-stagger-item] {
  opacity: 0;
  transform: translateY(12px);
}

[data-animate].is-visible [data-stagger-item] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms ease, transform 520ms ease;
  transition-delay: var(--stagger-delay, 0ms);
}

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

  * {
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  body {
    animation: none;
  }

  .section-gallery {
    animation: none;
  }

  .carousel-track {
    transition: none;
  }

  .hero-video {
    display: none;
  }
}

@media (min-width: 860px) {
  html {
    scroll-padding-top: 80px;
  }

  .nav-toggle {
    display: none;
  }

  .nav {
    position: static;
    inset: auto;
    top: auto;
    padding: 0;
    background: transparent;
    border-top: 0;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 14px;
  }

  .nav-list {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .nav-link {
    padding: 10px 10px;
    background: transparent;
    border-color: transparent;
  }

  .nav-link:hover {
    border-color: rgba(0, 40, 85, 0.2);
    background: rgba(0, 40, 85, 0.04);
  }

  .btn-cta {
    margin-top: 0;
    width: auto;
  }

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

  .about-top {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 18px;
    align-items: start;
  }

  .about-bottom {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

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

  .tabs-nav {
    overflow: visible;
    flex-wrap: wrap;
  }

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

  .services-layout {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 16px;
  }

  .services-media img {
    height: 260px;
  }

  .about-media img {
    height: 340px;
  }


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

  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }

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

  .field-span {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 1fr;
    align-items: start;
  }
}
