:root {
  --bg: #eef8ff;
  --bg-strong: #d8f0fb;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(17, 73, 110, 0.2);
  --text: #0e2741;
  --muted: #4f6980;
  --primary: #0b5fa5;
  --primary-strong: #083f79;
  --accent: #00b7c9;
  --accent-strong: #0098b7;
  --accent-soft: #dbfbff;
  --warm: #ff7a59;
  --warm-soft: #ffe6dd;
  --success: #23846c;
  --shadow-lg: 0 28px 64px rgba(6, 47, 86, 0.16);
  --shadow-md: 0 18px 40px rgba(6, 47, 86, 0.1);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 100%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Aptos, "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(0, 183, 201, 0.2), transparent 24%),
    radial-gradient(circle at top right, rgba(11, 95, 165, 0.2), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(255, 122, 89, 0.14), transparent 18%),
    linear-gradient(180deg, #fbfeff 0%, var(--bg) 44%, #e7f3fb 100%);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 95, 165, 0.06) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.42), transparent 90%);
  opacity: 0.5;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 122, 89, 0.12), transparent 20%),
    radial-gradient(circle at 78% 72%, rgba(0, 183, 201, 0.12), transparent 22%);
  opacity: 0.9;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 20px 0;
}

.header-shell {
  width: 100%;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 24px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(242, 251, 255, 0.88)),
    linear-gradient(135deg, rgba(219, 251, 255, 0.56), rgba(255, 230, 221, 0.24));
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 38px rgba(6, 47, 86, 0.1);
}

.logo img {
  width: min(420px, 48vw);
  height: auto;
}

.site-nav {
  margin-left: auto;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-item {
  position: relative;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 16px 15px;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-strong);
  letter-spacing: 0.01em;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.active {
  background: linear-gradient(135deg, rgba(11, 95, 165, 0.08), rgba(0, 183, 201, 0.09));
  color: var(--primary-strong);
  transform: translateY(-1px);
  box-shadow: inset 0 0 0 1px rgba(11, 95, 165, 0.08);
}

.site-nav ul > li:last-child > a {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--warm), #ff9860);
  box-shadow: 0 14px 28px rgba(255, 122, 89, 0.28);
}

.site-nav ul > li:last-child > a:hover,
.site-nav ul > li:last-child > a:focus-visible,
.site-nav ul > li:last-child > a.active {
  color: #ffffff;
  background: linear-gradient(135deg, #ff6a47, var(--warm));
  box-shadow: 0 16px 30px rgba(255, 122, 89, 0.34);
}

.has-dropdown {
  display: flex;
  align-items: center;
}

.dropdown-toggle {
  width: 34px;
  height: 34px;
  margin-left: -2px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  position: relative;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.dropdown-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translate(-50%, -62%) rotate(45deg);
  transition: transform 0.2s ease;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus-visible {
  background: rgba(11, 95, 165, 0.08);
}

.has-dropdown:hover > .dropdown-toggle::before,
.has-dropdown:focus-within > .dropdown-toggle::before,
.has-dropdown.open > .dropdown-toggle::before {
  transform: translate(-50%, -38%) rotate(-135deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 260px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 255, 0.96));
  box-shadow: 0 18px 38px rgba(6, 47, 86, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  backdrop-filter: blur(18px);
}

.dropdown-menu a {
  display: flex;
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
}

.dropdown-menu a:hover,
.dropdown-menu a:focus-visible {
  background: linear-gradient(135deg, rgba(11, 95, 165, 0.06), rgba(0, 183, 201, 0.08));
  box-shadow: inset 0 0 0 1px rgba(11, 95, 165, 0.06);
}

.has-dropdown:hover > .dropdown-menu,
.has-dropdown:focus-within > .dropdown-menu,
.has-dropdown.open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 252, 255, 0.96));
  color: transparent;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 1.4rem;
  position: relative;
  box-shadow: 0 10px 24px rgba(12, 35, 64, 0.08);
}

.menu-toggle::before {
  content: "\2630";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  border-color: rgba(18, 52, 92, 0.18);
  transform: translateY(-1px);
}

main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 12px 22px 96px;
}

section {
  margin-top: 30px;
}

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 76vh;
  padding: 86px 64px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(130deg, rgba(7, 34, 64, 0.88), rgba(8, 89, 145, 0.58)),
    linear-gradient(35deg, rgba(255, 122, 89, 0.18), rgba(0, 183, 201, 0.08)),
    var(--hero-image, linear-gradient(135deg, #0b5fa5, #00b7c9));
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-lg);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.26), transparent 68%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -80px auto auto -40px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 89, 0.28), transparent 72%);
  filter: blur(8px);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 28, 52, 0.8), rgba(8, 75, 122, 0.5)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 48%);
}

.hero-content,
.hero-grid,
.hero-stack {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.9fr);
  gap: 34px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 183, 201, 0.12));
  color: #edf3ff;
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1,
.page-hero h1 {
  max-width: 11ch;
  color: #ffffff;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.hero p,
.page-hero p {
  max-width: 640px;
  margin-top: 18px;
  color: rgba(236, 243, 252, 0.9);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--warm), #ff9c61);
  box-shadow: 0 14px 28px rgba(255, 122, 89, 0.28);
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 183, 201, 0.1));
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 18px 34px rgba(255, 122, 89, 0.34);
}

.btn-secondary:hover {
  box-shadow: 0 14px 28px rgba(0, 183, 201, 0.18);
}

.hero-panel,
.glass-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, rgba(0, 183, 201, 0.1), rgba(255, 122, 89, 0.08));
  backdrop-filter: blur(18px);
  color: #edf3ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hero-panel h2 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.hero-list {
  display: grid;
  gap: 12px;
  list-style: none;
}

.hero-list li {
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 183, 201, 0.08));
}

.hero-list span {
  display: block;
  color: rgba(236, 243, 252, 0.72);
  font-size: 0.92rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.stat {
  padding: 20px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
    linear-gradient(135deg, rgba(0, 183, 201, 0.12), rgba(255, 122, 89, 0.08));
  backdrop-filter: blur(16px);
  color: #ffffff;
}

.stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 2rem;
  line-height: 1;
}

.stat span,
.stat p {
  color: inherit;
}

.section-shell {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 252, 255, 0.84)),
    linear-gradient(135deg, rgba(219, 251, 255, 0.42), rgba(255, 230, 221, 0.22));
  box-shadow: var(--shadow-md);
}

.section-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 183, 201, 0.12), transparent 70%);
  transform: translate(40%, -40%);
  pointer-events: none;
}

.section-intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 26px;
}

.section-intro h2 {
  font-size: clamp(1.8rem, 2.8vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-intro p {
  max-width: 660px;
  color: var(--muted);
}

.kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--accent-strong);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.services,
.blog-posts,
.team-grid,
.feature-grid,
.contact-grid,
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 255, 0.94)),
    linear-gradient(135deg, rgba(219, 251, 255, 0.36), rgba(255, 230, 221, 0.16));
  box-shadow: 0 16px 34px rgba(6, 47, 86, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(6, 47, 86, 0.14);
  border-color: rgba(11, 95, 165, 0.2);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--accent), var(--warm));
  opacity: 0.92;
}

.card::after {
  content: "";
  position: absolute;
  inset: auto -20px -50px auto;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 183, 201, 0.12), transparent 72%);
  transition: opacity 0.2s ease;
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.card p {
  color: var(--muted);
}

.card img {
  margin-top: 18px;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  object-fit: cover;
}

.card-link,
.feature-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card-link .card,
.feature-card-link .feature-card {
  cursor: pointer;
}

.card-link .card::after,
.feature-card-link .feature-card::after {
  content: "Learn more";
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  color: var(--primary);
  font-weight: 700;
  position: static;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
}


.feature-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 255, 0.94)),
    radial-gradient(circle at top right, rgba(0, 183, 201, 0.12), transparent 34%),
    radial-gradient(circle at bottom left, rgba(255, 122, 89, 0.1), transparent 28%);
  box-shadow: 0 16px 34px rgba(6, 47, 86, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(6, 47, 86, 0.14);
  border-color: rgba(11, 95, 165, 0.2);
}

.feature-card h3 {
  margin: 10px 0 10px;
  font-size: 1.2rem;
}

.feature-card p {
  color: var(--muted);
}

.feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(11, 95, 165, 0.1), rgba(0, 183, 201, 0.12));
  color: var(--primary-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-list {
  display: grid;
  gap: 8px;
  margin-top: 16px;
  padding-left: 18px;
  color: var(--muted);
}

.feature-list li::marker {
  color: var(--accent);
}

.highlight-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  gap: 24px;
  align-items: center;
  padding: 34px 38px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(9, 52, 96, 0.98), rgba(0, 144, 174, 0.94)),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(255, 122, 89, 0.22), transparent 26%);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.highlight-band h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.3vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.highlight-metrics {
  display: grid;
  gap: 14px;
}

.highlight-metrics div {
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.highlight-metrics strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1.15rem;
}

.highlight-metrics span {
  color: rgba(240, 246, 255, 0.84);
}

.icon-chip {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary-strong);
  background: linear-gradient(135deg, rgba(11, 95, 165, 0.14), rgba(0, 183, 201, 0.18));
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.9fr);
  gap: 26px;
  align-items: center;
}

.split-image img {
  width: 100%;
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.mini-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.mini-list div {
  padding: 16px 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(11, 95, 165, 0.06), rgba(0, 183, 201, 0.08));
}

.mini-list strong {
  display: block;
  margin-bottom: 4px;
}

.page-hero {
  min-height: 48vh;
}

.dark-panel {
  padding: 34px;
  border-radius: 28px;
  color: #ffffff;
  background:
    linear-gradient(135deg, #0b4f8b, #00a4bf),
    radial-gradient(circle at bottom right, rgba(255, 122, 89, 0.28), transparent 32%);
  box-shadow: var(--shadow-lg);
}

.dark-panel p {
  color: rgba(240, 246, 255, 0.82);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.timeline-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  width: 56px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--accent-strong));
  color: #ffffff;
  font-weight: 700;
}

.team-member {
  text-align: center;
}

.team-member img {
  width: 100%;
  max-width: 210px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 18px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 34px rgba(18, 35, 62, 0.16);
}

.team-member .role {
  color: var(--accent);
  font-weight: 700;
  margin: 6px 0 10px;
}

.logo-grid {
  align-items: center;
}

.logo-grid .card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
  padding: 24px;
}

.logo-grid img {
  max-height: 54px;
  width: auto;
  object-fit: contain;
  filter: saturate(0.85);
}

.contact-card {
  padding: 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 250, 255, 0.94)),
    linear-gradient(135deg, rgba(219, 251, 255, 0.32), rgba(255, 230, 221, 0.14));
  box-shadow: var(--shadow-md);
}

.contact-card h3 {
  margin-bottom: 12px;
}

form {
  display: grid;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(17, 73, 110, 0.16);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: rgba(0, 183, 201, 0.5);
  box-shadow: 0 0 0 4px rgba(0, 183, 201, 0.12);
}

textarea {
  min-height: 150px;
  resize: vertical;
}

button[type="submit"] {
  border: 0;
  min-height: 52px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  color: #ffffff;
  background: linear-gradient(135deg, var(--warm), #ff9860);
  box-shadow: 0 14px 28px rgba(255, 122, 89, 0.26);
}

#formMessage {
  min-height: 24px;
  color: var(--success);
  font-weight: 600;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 30px 34px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, #0c4f8c, #00a4bf),
    radial-gradient(circle at right, rgba(255, 122, 89, 0.24), transparent 30%);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.cta-band p {
  color: rgba(237, 244, 255, 0.84);
}

footer {
  margin: 0 22px 22px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, #082c50, #0a73a7),
    radial-gradient(circle at top right, rgba(255, 122, 89, 0.22), transparent 24%);
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}

.footer-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 40px 28px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 26px;
}

.footer-grid h3 {
  margin-bottom: 12px;
}

.footer-grid p,
.footer-grid li {
  color: rgba(233, 245, 252, 0.82);
}

.footer-grid ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-grid a {
  color: rgba(248, 251, 255, 0.92);
}

.footer-grid a:hover {
  color: #ffffff;
}

.social-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-icons a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(233, 240, 250, 0.62);
  font-size: 0.95rem;
  text-align: center;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: rise 0.7s ease forwards;
}

.reveal.delay-1 {
  animation-delay: 0.08s;
}

.reveal.delay-2 {
  animation-delay: 0.16s;
}

.reveal.delay-3 {
  animation-delay: 0.24s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .header-shell {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 18px;
  }

  .logo {
    flex: 0 1 auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    flex: 0 0 auto;
  }

  .site-nav {
    width: 100%;
    order: 3;
    margin-left: 0;
  }

  .site-nav ul {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    margin-top: 10px;
    padding: 14px;
    border: 1px solid rgba(17, 73, 110, 0.08);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(251, 254, 255, 0.98), rgba(245, 252, 255, 0.96));
    box-shadow: 0 18px 34px rgba(6, 47, 86, 0.08);
  }

  .site-nav ul.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(11, 95, 165, 0.04);
  }

  .site-nav ul > li:last-child > a {
    justify-content: center;
    min-height: 48px;
    margin-top: 4px;
  }

  .has-dropdown {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 6px;
  }

  .has-dropdown > a {
    width: 100%;
  }

  .dropdown-toggle {
    width: 40px;
    height: 40px;
    margin-left: 0;
    border-radius: 12px;
    background: rgba(11, 95, 165, 0.04);
  }

  .dropdown-menu {
    position: static;
    grid-column: 1 / -1;
    min-width: 0;
    padding: 8px 0 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    backdrop-filter: none;
  }

  .has-dropdown.open > .dropdown-menu {
    display: block;
  }

  .dropdown-menu a {
    padding: 12px 15px;
    margin-top: 6px;
    border-radius: 12px;
    font-size: 0.94rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.92);
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 68px 28px;
  }

  .hero-grid,
  .split,
  .contact-grid,
  .cta-band,
  .highlight-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-shell {
    padding: 30px 22px;
  }
}

@media (max-width: 640px) {
  .site-header,
  main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .header-shell {
    padding: 12px 14px;
  }

  .logo img {
    width: 210px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: none;
  }

  .stats {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 24px;
  }

  footer {
    margin-left: 14px;
    margin-right: 14px;
  }
}


/* --- NEW DYNAMIC SPA TRANTISIONS & NAVBAR --- */
.site-header {
  transition: padding 0.3s ease;
}
.site-header.scrolled {
  padding: 0 20px;
}
.site-header.scrolled .header-shell {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px rgba(6, 47, 86, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

main {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
main.fade-out {
  opacity: 0;
  transform: translateY(10px);
}
main.fade-in {
  opacity: 1;
  transform: translateY(0);
}
