:root {
  --primary: #003da5;
  --primary-light: #005bff;
  --secondary: #0a2e6b;
  --accent: #00a3e0;
  --bg: #f4f7fc;
  --surface: #ffffff;
  --surface-alt: #f4f7fc;
  --surface-dark: #052d6d;
  --card: #ffffff;
  --border: #e2e8f2;
  --text: #0f1f3d;
  --muted: #5a6b85;
  --white: #ffffff;
  --radius: 20px;
  --radius-sm: 16px;
  --shadow: 0 20px 50px rgba(10, 31, 61, 0.1);
  --shadow-soft: 0 12px 30px rgba(0, 61, 165, 0.1);
  --header-top: 42px;
  --header-nav: 96px;
  --transition: 0.3s ease;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --duration-fast: 0.25s;
  --duration-base: 0.45s;
  --duration-slow: 0.7s;
  --reveal-distance: 20px;
  --text-display: clamp(34px, 4.5vw, 56px);
  --text-h1: clamp(28px, 3vw, 42px);
  --text-h2: clamp(22px, 2.2vw, 32px);
  --text-h3: clamp(18px, 1.6vw, 22px);
  --text-body: 16px;
  --text-small: 14px;
  --text-eyebrow: 12px;
  --section-pad: 48px;
  --section-pad-mobile: 28px;
  --dot-color: rgba(0, 163, 224, 0.24);
  --dot-color-soft: rgba(0, 163, 224, 0.12);
  --dot-size: 26px;
  --dot-radius: 1.4px;
  --bg-dots: radial-gradient(
    circle at center,
    var(--dot-color) var(--dot-radius),
    transparent calc(var(--dot-radius) + 0.2px)
  );
  --bg-dots-soft: radial-gradient(
    circle at center,
    var(--dot-color-soft) var(--dot-radius),
    transparent calc(var(--dot-radius) + 0.2px)
  );
  --gradient-brand: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 52%, var(--accent) 100%);
  --gradient-surface: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  --shadow-card: 0 12px 32px rgba(10, 31, 61, 0.08);
  --shadow-card-hover: 0 22px 48px rgba(0, 61, 165, 0.16);
  --focus-ring: 0 0 0 3px rgba(0, 91, 255, 0.28);
  --font-serif: "Source Serif 4", "Noto Serif", "Times New Roman", serif;
  --header-compact: 84px;
}

/* Typography utilities */
.text-eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-h1 {
  margin: 0;
  font-size: var(--text-h1);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
  letter-spacing: -0.02em;
}

.text-body {
  font-size: var(--text-body);
  line-height: 1.75;
  color: var(--muted);
}

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

  .page-loader-ring-wrap {
    animation: none !important;
  }

  .page-loader-plane {
    animation: loader-plane-enter 0.95s cubic-bezier(0.4, 0.05, 0.2, 1) 0.12s both !important;
  }

  .page-loader-stack {
    animation: loader-stack-exit 0.95s cubic-bezier(0.4, 0.05, 0.2, 1) 3.65s forwards !important;
  }

  .page-loader-brand-block {
    animation: loader-brand-in 0.55s ease 1.08s forwards !important;
  }

  .page-loader-bar span {
    animation: loader-progress 2.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards !important;
  }

  .topbar-track {
    animation: topbar-marquee-rtl 32s linear infinite !important;
  }

  .reveal,
  .reveal-left,
  .reveal-right,
  .reveal-scale {
    opacity: 1;
    transform: none;
  }

  .float-btn-shine,
  .float-btn--glow,
  .float-sparkle,
  .hero-headline-line--accent,
  .hero-copy--minimal {
    animation: none !important;
  }

  .scroll-progress span {
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-top) + var(--header-nav) + 16px);
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Be Vietnam Pro", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  background-image: var(--bg-dots), var(--bg-dots-soft);
  background-size: var(--dot-size) var(--dot-size);
  background-position: 0 0, calc(var(--dot-size) / 2) calc(var(--dot-size) / 2);
  background-attachment: fixed;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Subtle dot texture on light sections */
.about-company,
.services-showcase,
.work-process,
.news-section,
.connect-hub,
.subpage-hero,
.subpage-section,
.section-alt {
  position: relative;
  isolation: isolate;
}

.about-company::after,
.services-showcase::after,
.work-process::after,
.news-section::after,
.connect-hub::after,
.subpage-hero::after,
.subpage-section::after,
.section-alt::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: var(--bg-dots), var(--bg-dots-soft);
  background-size: var(--dot-size) var(--dot-size);
  background-position: 0 0, calc(var(--dot-size) / 2) calc(var(--dot-size) / 2);
  opacity: 0.88;
}

.about-company > .container,
.services-showcase > .container,
.work-process > .container,
.news-section > .container,
.connect-hub > .container,
.subpage-hero > .container,
.subpage-section > .container,
.subpage-section > .contact-form-wrap,
.section-alt > .container {
  position: relative;
  z-index: 1;
}

body.is-loading {
  overflow: hidden;
}

body.has-mobile-call-bar {
  padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px));
}

@media (max-width: 1024px) {
  body {
    background-attachment: scroll;
  }
}

/* ========== PAGE LOADER ========== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  background: var(--surface-alt);
  transition: opacity 0.65s ease, visibility 0.65s ease;
  overflow: hidden;
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("loader-bg.png") center / cover no-repeat;
  background-color: #f7faff;
}

.page-loader::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.22) 0%,
    rgba(247, 250, 255, 0.32) 50%,
    rgba(255, 255, 255, 0.36) 100%
  );
}

.page-loader.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader-stack {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 3vh, 28px);
  padding: 24px;
  will-change: transform, opacity;
  animation: loader-stack-exit 0.95s cubic-bezier(0.4, 0.05, 0.2, 1) 3.65s forwards;
}

.page-loader-plane {
  width: min(340px, 78vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(255, 204, 0, 0.38));
  will-change: transform, opacity;
  animation: loader-plane-enter 0.95s cubic-bezier(0.4, 0.05, 0.2, 1) 0.12s both;
}

.page-loader-brand-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: loader-brand-in 0.55s ease 1.08s forwards;
}

.page-loader-ring-wrap,
.page-loader-ring,
.page-loader-ring-arc {
  display: none;
}

.page-loader-brand {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
}

.page-loader-brand strong {
  font-size: clamp(28px, 6.5vw, 40px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #e31c23;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.06);
}

.page-loader-brand small {
  font-size: clamp(14px, 3.2vw, 18px);
  font-weight: 700;
  color: #003da5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-loader-bar {
  width: min(280px, 76vw);
  height: 5px;
  margin-top: 18px;
  border-radius: 999px;
  background: rgba(0, 61, 165, 0.12);
  overflow: hidden;
  opacity: 0;
  animation: loader-text-in 0.45s ease 1.15s forwards;
}

.page-loader-bar span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #e31c23, #ffcc00, #003da5);
  animation: loader-progress 2.2s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards !important;
}

@keyframes loader-plane-enter {
  0% {
    transform: translateX(-120vw);
    opacity: 0;
  }
  12% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes loader-stack-exit {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  100% {
    transform: translateX(120vw);
    opacity: 0;
  }
}

@keyframes loader-brand-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-text-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes loader-progress {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes loader-ring {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.container {
  width: min(1280px, 92%);
  margin-inline: auto;
}

/* ========== HEADER ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition), background var(--transition);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(10, 46, 107, 0.08);
}

.site-header.is-compact .navbar {
  min-height: var(--header-compact);
}

.site-header.is-compact .logo-image {
  width: 136px;
  height: 82px;
}

.site-header.is-scrolled .navbar {
  min-height: var(--header-nav);
}

.site-header.is-scrolled .topbar {
  max-height: var(--header-top);
  opacity: 1;
}

.topbar {
  height: var(--header-top);
  background: var(--secondary);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
}

.topbar-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.topbar-marquee {
  height: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.topbar-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  width: max-content;
  min-width: 100%;
  flex-shrink: 0;
  white-space: nowrap;
  padding-right: 18px;
  animation: topbar-marquee-rtl 32s linear infinite;
  will-change: transform;
}

.topbar-marquee:hover .topbar-track {
  animation-play-state: paused;
}

.topbar-chip,
.topbar-dot {
  display: inline-block;
  flex-shrink: 0;
  white-space: nowrap;
}

.topbar-dot {
  opacity: 0.65;
}

.topbar-gap {
  display: inline-block;
  width: 72px;
  flex-shrink: 0;
}

@keyframes topbar-marquee-rtl {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.topbar-left,
.topbar-social,
.topbar-item {
  display: none;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
}

.topbar-ico {
  width: 16px;
  height: 16px;
  color: var(--accent);
  transition: color var(--transition), transform var(--transition);
}

.topbar-ico svg {
  width: 100%;
  height: 100%;
}

.topbar-item:hover .topbar-ico,
.social-btn:hover {
  color: var(--accent);
  transform: scale(1.1);
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-btn {
  display: inline-grid;
  place-items: center;
  min-width: 32px;
  height: 28px;
  padding: 0 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  transition: color var(--transition), transform var(--transition), background var(--transition);
}

.social-btn svg {
  width: 14px;
  height: 14px;
}

.navbar {
  min-height: var(--header-nav);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  min-height: inherit;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
}

.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1px;
  padding: 2px;
  background: #eef2f8;
  border-radius: 999px;
  border: 1px solid #e2e8f2;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 6px;
  border: none;
  background: var(--white);
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  box-shadow: 0 1px 6px rgba(0, 61, 165, 0.1);
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.lang-toggle:hover {
  color: var(--primary-light);
}

.lang-options {
  display: flex;
  align-items: center;
  gap: 2px;
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: max-width 0.28s var(--ease-out), opacity 0.22s ease;
}

.lang-switcher.is-open .lang-options {
  max-width: 120px;
  opacity: 1;
  pointer-events: auto;
}

.lang-switcher.is-open .lang-toggle {
  background: transparent;
  box-shadow: none;
  color: #5a6b85;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 4px 6px;
  border: none;
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  color: #5a6b85;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.lang-btn:hover {
  color: var(--primary);
}

.lang-btn.is-active {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 1px 6px rgba(0, 61, 165, 0.1);
}

.lang-flag {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.lang-flag svg {
  width: 100%;
  height: 100%;
  display: block;
}

.lang-label {
  display: none;
  line-height: 1;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  isolation: isolate;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(0, 91, 255, 0.28);
  flex-shrink: 0;
}

.logo-image {
  width: 180px;
  height: 108px;
  object-fit: contain;
  object-position: left center;
  background: transparent;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.12));
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out);
}

.logo-text {
  display: none;
}

.logo-text strong {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--primary);
}

.logo-text small {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-wrap: nowrap;
  min-width: 0;
}

.menu > li {
  flex-shrink: 0;
}

.menu > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 11px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
  transition: color 0.35s ease;
}

.menu > li > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.menu > li > a:hover,
.menu > li:hover > a {
  color: var(--primary);
}

.menu > li > a:hover::after,
.menu > li:hover > a::after {
  transform: scaleX(1);
}

.has-dropdown {
  position: relative;
}

.has-dropdown > a.nav-parent {
  gap: 5px;
}

.nav-caret {
  font-size: 11px;
  line-height: 1;
  opacity: 0.65;
  transition: transform 0.25s ease;
}

.has-dropdown:hover .nav-caret,
.has-dropdown.is-open .nav-caret {
  transform: rotate(180deg);
}

.menu > li > a.is-active {
  color: var(--primary);
}

.menu > li > a.is-active::after {
  transform: scaleX(1);
}

.dropdown li {
  list-style: none;
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: 0.3s ease;
  z-index: 20;
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 12px 14px;
  border-radius: 12px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: background var(--transition);
}

.dropdown a:hover {
  background: rgba(0, 61, 165, 0.06);
  color: var(--primary);
  box-shadow: inset 0 3px 0 var(--accent);
}

.menu-cta {
  display: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  padding: 12px;
  flex-direction: column;
  justify-content: space-between;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--secondary);
  border-radius: 2px;
  transition: 0.25s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 28, 58, 0.45);
  z-index: 90;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease, color 0.35s ease;
}

.btn-hotline,
.btn-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  box-shadow: 0 12px 28px rgba(0, 61, 165, 0.28);
}

.btn-hotline {
  white-space: nowrap;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  animation: hotline-rung 2.6s var(--ease-out) 3;
}

.hotline-ico {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.hotline-ico svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@keyframes hotline-rung {
  0%,
  82%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    box-shadow: 0 12px 28px rgba(0, 91, 255, 0.28);
  }

  84% {
    transform: translate3d(-2px, 0, 0) rotate(-3deg);
  }

  86% {
    transform: translate3d(2px, 0, 0) rotate(3deg);
  }

  88% {
    transform: translate3d(-2px, 0, 0) rotate(-3deg);
  }

  90% {
    transform: translate3d(2px, 0, 0) rotate(3deg);
  }

  92% {
    transform: translate3d(0, 0, 0) rotate(0);
    box-shadow: 0 16px 36px rgba(0, 194, 255, 0.45);
  }

  94% {
    transform: scale(1.05);
  }
}

.btn-hotline:hover,
.btn-cta:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 36px rgba(0, 91, 255, 0.38);
}

.btn-hotline:hover {
  animation: none;
}

.btn-cta .arrow {
  display: inline-block;
  transition: transform 0.35s ease;
}

.btn-cta:hover .arrow {
  transform: translateX(6px);
}

.btn-ghost {
  background: var(--white);
  border: 1.5px solid var(--primary);
  color: var(--primary);
}

.btn-ghost:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* ========== HERO ========== */
.hero {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}

.hero-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 8;
  max-height: min(88vh, 820px);
  min-height: 420px;
  background: #e8eef8;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(8, 28, 68, 0.42) 0%,
    rgba(8, 28, 68, 0.58) 45%,
    rgba(8, 28, 68, 0.72) 100%
  );
  pointer-events: none;
}

.hero-copy-wrap {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 100%;
  padding: clamp(28px, 5vw, 56px);
  pointer-events: none;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(820px, 92%);
  text-align: center;
  pointer-events: auto;
}

.hero-copy--minimal {
  width: min(760px, 94%);
  gap: 0;
  animation: hero-copy-in 1s var(--ease-out) both;
}

@keyframes hero-copy-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-brand {
  margin: 0 0 clamp(14px, 2vw, 18px);
  font-size: clamp(11px, 1.15vw, 13px);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(175, 215, 255, 0.96);
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.35);
}

.hero-headline {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.015em;
  display: flex;
  flex-direction: column;
  gap: 0.08em;
}

.hero-headline-line {
  display: block;
  color: #ffffff;
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.38),
    0 0 48px rgba(0, 91, 255, 0.12);
}

.hero-headline-line--accent {
  font-weight: 700;
  background: linear-gradient(
    105deg,
    #ffffff 0%,
    #d4ecff 38%,
    #ffffff 62%,
    #a8d4ff 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: hero-text-shimmer 7s ease-in-out infinite;
}

@keyframes hero-text-shimmer {
  0%,
  100% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
}

.hero-lead {
  position: relative;
  margin: clamp(18px, 2.8vw, 26px) auto 0;
  max-width: 46ch;
  font-size: clamp(15px, 1.75vw, 18px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.3);
}

.hero-lead::before {
  content: "";
  display: block;
  width: 52px;
  height: 2px;
  margin: 0 auto clamp(14px, 2vw, 18px);
  background: linear-gradient(90deg, transparent, rgba(175, 215, 255, 0.95), transparent);
  border-radius: 2px;
  opacity: 0.9;
}

.hero-copy--minimal .hero-actions {
  margin-top: clamp(24px, 3.5vw, 36px);
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: center;
}

.hero-copy--minimal .btn-cta {
  min-width: 0;
  padding: 14px 28px;
  font-size: 15px;
  white-space: nowrap;
}

.hero-copy--minimal .btn-ghost-light {
  min-width: 0;
  padding: 14px 24px;
  font-size: 15px;
  white-space: nowrap;
}

.hero-kicker {
  margin: 0 0 14px;
  color: #9fd0ff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.14;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
  text-align: center;
  width: 100%;
}

.hero-sub {
  margin: 14px 0 0;
  font-size: clamp(17px, 2.2vw, 20px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
  text-align: center;
  width: 100%;
}

.hero-desc {
  margin: 14px 0 0;
  max-width: 52ch;
  font-size: clamp(15px, 1.6vw, 17px);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 24px;
}

.btn-ghost-light {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.btn-ghost-light:hover {
  background: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

.slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slides {
  position: absolute;
  inset: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.85s var(--ease-out);
  pointer-events: none;
}

.slide.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.slide-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--primary);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(10, 31, 61, 0.14);
  backdrop-filter: blur(10px);
  transition: transform var(--duration-fast), background var(--duration-fast), box-shadow var(--duration-fast);
}

.slide-nav span {
  font-size: 30px;
  line-height: 1;
  margin-top: -2px;
}

.slide-nav:hover {
  transform: translateY(-50%) scale(1.06);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(10, 31, 61, 0.18);
}

.slide-nav.prev {
  left: 16px;
}

.slide-nav.next {
  right: 16px;
}

.slide-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 8px;
}

.slide-dots button {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: width var(--duration-base) var(--ease-out), background var(--duration-fast);
}

.slide-dots button.is-active {
  width: 28px;
  background: var(--accent);
}

.glass-grid {
  display: none;
}

.glass-card {
  pointer-events: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(18px);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}

.glass-card strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
}

.glass-ico {
  font-size: 14px;
  transition: transform 0.35s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0, 91, 255, 0.22);
}

.glass-card:hover .glass-ico {
  transform: rotate(12deg) scale(1.08);
}

/* ========== ABOUT COMPANY ========== */
.about-company {
  background: var(--surface);
  padding-top: 40px;
  padding-bottom: 48px;
}

.about-company .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-copy h2,
.about-title {
  font-family: "Source Serif 4", "Noto Serif", "Times New Roman", serif;
  font-size: clamp(28px, 2.8vw, 38px);
  font-weight: 600;
  line-height: 1.32;
  letter-spacing: -0.015em;
  color: #0c2247;
}

.about-copy .about-title {
  margin: 0 0 16px;
  max-width: none;
}

.about-copy .section-text {
  max-width: 52ch;
  font-size: var(--text-body);
}

.about-points li.reveal:nth-child(1) { transition-delay: 0.08s; }
.about-points li.reveal:nth-child(2) { transition-delay: 0.16s; }
.about-points li.reveal:nth-child(3) { transition-delay: 0.24s; }
.about-points li.reveal:nth-child(4) { transition-delay: 0.32s; }

.hero + .about-company {
  margin-top: 0;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.about-image-single {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 18px 44px rgba(10, 50, 120, 0.12);
  aspect-ratio: 16 / 11;
  min-height: 0;
}

.about-image-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.about-image-single:hover img {
  transform: scale(1.04);
}

.about-section-head {
  max-width: none;
  margin-bottom: clamp(16px, 2.5vw, 24px);
}

.about-section-head h2 {
  max-width: none;
}

.about-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.about-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
}

.point-icon {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--primary-light), #00c2ff);
  color: #fff;
  font-size: 13px;
  box-shadow: 0 6px 14px rgba(0, 91, 255, 0.25);
}

.about-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ========== SERVICES SHOWCASE ========== */
.services-showcase {
  background: var(--surface-alt);
  padding-top: 36px;
  padding-bottom: 0;
}

.services-showcase .section-head {
  margin-bottom: 18px;
}

.center-head {
  text-align: center;
  margin-inline: auto;
}

.center-head h2 {
  max-width: 22ch;
  margin-inline: auto;
  font-family: var(--font-serif);
  font-size: var(--text-h1);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.22;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary);
}

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

.service-cover-card {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transform: translateY(0);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.service-cover-card:focus-within {
  box-shadow: var(--shadow-card-hover);
  outline: none;
}

.service-cover-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 46, 107, 0.12) 10%, rgba(10, 46, 107, 0.78) 100%);
  transition: background var(--duration-base) var(--ease-out);
}

.service-content {
  position: absolute;
  inset: auto 18px 18px 18px;
  display: flex;
  align-items: flex-end;
  gap: 12px;
}

.service-content h3 {
  margin: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.3;
  flex: 1;
}

.service-glass-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  color: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-glass-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-arrow {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(10px);
  font-size: 20px;
  transition: transform 0.35s ease, background 0.35s ease;
}

.service-cover-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

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

.service-cover-card:hover .service-overlay {
  background: linear-gradient(180deg, rgba(0, 32, 92, 0.2) 5%, rgba(0, 72, 198, 0.88) 100%);
}

.service-cover-card:hover .service-glass-icon {
  box-shadow: 0 14px 28px rgba(0, 194, 255, 0.32);
  transform: scale(1.06);
}

.service-cover-card:hover .service-arrow {
  background: rgba(255, 255, 255, 0.35);
  transform: translateX(6px);
}

/* ========== SECTIONS ========== */
.section {
  padding: var(--section-pad) 0;
}

.section-alt {
  background: var(--bg);
}

.section-head {
  max-width: 720px;
  margin-bottom: 16px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--primary);
  font-size: var(--text-eyebrow);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2 {
  margin: 0;
  font-size: clamp(26px, 2.6vw, 38px);
  font-weight: 800;
  line-height: 1.25;
}

.section-text {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
  max-width: 70ch;
}

.grid-4,
.grid-2 {
  display: grid;
  gap: 18px;
}

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

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

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 24px rgba(13, 71, 161, 0.04);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.icon-box {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eaf2ff, var(--surface-alt));
  color: var(--primary);
  margin-bottom: 14px;
}

.icon-box svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

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

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.tag {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 91, 255, 0.08);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--primary);
  font-weight: 700;
  text-decoration: none;
}

/* ========== SECTION 05: WHY CHOOSE (radial hub) ========== */
.why-choose {
  position: relative;
  isolation: isolate;
  background: var(--primary);
  color: #fff;
  padding-top: 36px;
  padding-bottom: 40px;
  overflow: hidden;
}

.why-choose-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(155deg, rgba(0, 45, 120, 0.9) 0%, rgba(0, 91, 255, 0.78) 55%, rgba(0, 61, 165, 0.88) 100%),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1920&q=80");
  background-size: cover;
  background-position: center;
}

.why-choose-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(0, 194, 255, 0.22), transparent 36%),
    radial-gradient(circle at 82% 78%, rgba(255, 255, 255, 0.08), transparent 32%);
}

.why-choose > .container {
  position: relative;
  z-index: 1;
}

.why-choose-head {
  margin-bottom: 20px;
}

.why-choose .center-head h2 {
  max-width: none;
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: #fff;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.18);
}

.why-radial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 260px) minmax(0, 1fr);
  align-items: center;
  gap: 0 12px;
  min-height: 440px;
  max-width: 1080px;
  margin-inline: auto;
}

.why-radial-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(500px, 78vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  color: rgba(255, 255, 255, 0.38);
}

.why-radial-ring {
  display: block;
  width: 100%;
  height: 100%;
}

.why-radial-center {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  align-self: center;
  justify-self: center;
}

.why-radial-center-inner {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.1),
    0 18px 40px rgba(0, 0, 0, 0.22);
}

.why-radial-center-inner .why-radial-logo,
.why-radial-center-inner .logo-image {
  width: 140px;
  height: 140px;
  margin: 0;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.12));
}

.why-radial-side {
  display: grid;
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 28px;
  position: relative;
  z-index: 1;
}

.why-radial-side--left {
  grid-column: 1;
  padding-right: 4px;
}

.why-radial-side--right {
  grid-column: 3;
  padding-left: 4px;
}

.why-radial-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.why-radial-item--left {
  justify-content: flex-end;
}

.why-radial-item--right {
  justify-content: flex-start;
}

.why-radial-label {
  margin: 0;
  padding: 11px 16px;
  max-width: min(240px, 34vw);
  border-radius: 12px;
  background: rgba(0, 35, 95, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.why-radial-icon {
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(91, 155, 213, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  color: #fff;
}

.why-radial-icon--accent {
  background: #fff;
  color: #1a9b5c;
  border-color: rgba(26, 155, 92, 0.35);
}

.why-radial-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-radial-side--left .why-radial-item.reveal-left {
  transform: translateX(-64px);
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.why-radial-side--left .why-radial-item.reveal-left.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.why-radial-side--right .why-radial-item.reveal-right {
  transform: translateX(64px);
  opacity: 0;
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.why-radial-side--right .why-radial-item.reveal-right.is-visible {
  transform: translateX(0);
  opacity: 1;
}

.why-radial-item.reveal:nth-child(1) { transition-delay: 0.05s; }
.why-radial-item.reveal:nth-child(2) { transition-delay: 0.12s; }
.why-radial-item.reveal:nth-child(3) { transition-delay: 0.19s; }

.why-radial-side--right .why-radial-item.reveal:nth-child(1) { transition-delay: 0.08s; }
.why-radial-side--right .why-radial-item.reveal:nth-child(2) { transition-delay: 0.15s; }
.why-radial-side--right .why-radial-item.reveal:nth-child(3) { transition-delay: 0.22s; }

.why-radial-item:hover .why-radial-icon {
  transform: scale(1.06);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
}

.why-radial-item:hover .why-radial-label {
  background: rgba(0, 35, 95, 0.78);
  border-color: rgba(255, 255, 255, 0.28);
}

.why-radial-icon {
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.why-radial-label {
  transition: background 0.28s ease, border-color 0.28s ease;
}

/* ========== SECTION 06: WORK PROCESS ========== */
.work-process {
  position: relative;
  background: var(--surface);
  overflow: hidden;
}

.work-process::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1200' height='600' viewBox='0 0 1200 600'%3E%3Cg fill='none' stroke='%23003DA5' stroke-opacity='0.12' stroke-width='1.2'%3E%3Cpath d='M100 180c120-90 260-90 390 0s270 92 420 18 220-80 290-24'/%3E%3Cpath d='M50 360c110-60 230-68 340-8s260 68 390 12 250-76 370-40'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.38;
  pointer-events: none;
}

.work-process::after {
  z-index: 0;
  opacity: 0.75;
}

.work-process .section-text {
  max-width: 60ch;
  margin-inline: auto;
  text-align: center;
}

.work-process > .container {
  position: relative;
  z-index: 1;
}

.work-process .center-head h2 {
  max-width: none;
  white-space: nowrap;
}

.work-process .timeline-grid::before {
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.15s;
}

.work-process.is-active .timeline-grid::before {
  transform: scaleX(1);
}

.work-process .timeline-step.reveal:nth-child(1) { transition-delay: 0.12s; }
.work-process .timeline-step.reveal:nth-child(2) { transition-delay: 0.24s; }
.work-process .timeline-step.reveal:nth-child(3) { transition-delay: 0.36s; }
.work-process .timeline-step.reveal:nth-child(4) { transition-delay: 0.48s; }
.work-process .timeline-step.reveal:nth-child(5) { transition-delay: 0.6s; }
.work-process .timeline-step.reveal:nth-child(6) { transition-delay: 0.72s; }

.work-process .timeline-step.reveal {
  transform: translateY(24px) scale(0.96);
}

.work-process .timeline-step.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.timeline-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 7%;
  right: 7%;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  box-shadow: 0 0 16px rgba(0, 163, 224, 0.35);
  z-index: 0;
}

.timeline-step {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 18px 20px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(10, 50, 120, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.timeline-index {
  position: absolute;
  top: 6px;
  right: 10px;
  font-size: 34px;
  font-weight: 800;
  color: rgba(0, 91, 255, 0.14);
  line-height: 1;
  transition: color 0.3s ease;
}

.timeline-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, var(--primary-light), #00c2ff);
  color: #fff;
  box-shadow: 0 14px 26px rgba(0, 91, 255, 0.26);
  transition: transform 0.3s ease;
}

.timeline-icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-step h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.35;
}

.timeline-step p {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.timeline-step:hover {
  transform: translateY(-8px);
  border-color: var(--primary-light);
  box-shadow: 0 18px 36px rgba(0, 91, 255, 0.18);
}

.timeline-step:hover .timeline-icon {
  transform: scale(1.07);
}

.timeline-step:hover .timeline-index {
  color: rgba(0, 91, 255, 0.28);
}

.timeline-step:hover::after {
  content: "";
  position: absolute;
  top: 50px;
  left: -8px;
  right: -8px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(0, 91, 255, 0), rgba(0, 194, 255, 0.9), rgba(0, 91, 255, 0));
  box-shadow: 0 0 14px rgba(0, 91, 255, 0.34);
  z-index: -1;
}

/* ========== PARTNERS + STATS ========== */
.partners-section {
  background: #fff;
  padding-top: 34px;
  padding-bottom: 24px;
}

.partners-title {
  text-align: center;
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 800;
}

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

.partner-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  min-height: 54px;
  display: grid;
  place-items: center;
  font-weight: 700;
  color: #4b5d78;
  font-size: 13px;
}

.stats-band {
  background: linear-gradient(180deg, var(--surface-dark), #042a5c);
  color: #fff;
  padding-top: 36px;
  padding-bottom: 36px;
}

.stats-title {
  text-align: center;
  margin: 0 0 24px;
  font-size: var(--text-h2);
  font-weight: 800;
}

.stat-item strong {
  display: block;
  font-size: clamp(40px, 4vw, 56px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  min-height: 1.2em;
}

.stat-item span {
  font-size: var(--text-small);
  opacity: 0.85;
}

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

.stat-item {
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  padding: 20px 10px;
  background: rgba(255, 255, 255, 0.06);
  transition: transform var(--duration-base) var(--ease-out);
}

.stat-item:hover {
  transform: translateY(-4px);
}

/* ========== SECTION 10: TESTIMONIALS ========== */
.testimonials {
  position: relative;
  background: var(--surface-alt);
  overflow: hidden;
}

.testimonial-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 18%, rgba(0, 91, 255, 0.08), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(0, 194, 255, 0.1), transparent 32%),
    radial-gradient(circle at 70% 20%, rgba(13, 71, 161, 0.04), transparent 24%);
}

.testimonial-decor::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--bg-dots), var(--bg-dots-soft);
  background-size: var(--dot-size) var(--dot-size);
  background-position: 0 0, calc(var(--dot-size) / 2) calc(var(--dot-size) / 2);
  opacity: 0.95;
}

.testimonials > .container {
  position: relative;
  z-index: 1;
}

.testimonials .center-head h2 {
  max-width: none;
  white-space: nowrap;
}

.testimonial-slider {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease;
  will-change: transform;
}

.testimonial-card {
  position: relative;
  flex: 0 0 calc((100% - 40px) / 3);
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px;
  box-shadow: 0 12px 30px rgba(13, 71, 161, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.quote-icon {
  position: absolute;
  top: 16px;
  right: 22px;
  font-size: 64px;
  line-height: 1;
  color: rgba(0, 91, 255, 0.18);
  font-family: Georgia, serif;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}

.testimonial-user img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
  transition: transform var(--duration-base) var(--ease-out);
}

.testimonial-user strong {
  display: block;
  font-size: 17px;
}

.testimonial-user span {
  color: var(--muted);
  font-size: 13px;
}

.stars {
  color: #f5b301;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.testimonial-card p {
  margin: 0;
  color: var(--muted);
  font-size: var(--text-body);
  line-height: 1.75;
  font-style: italic;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-light);
  box-shadow: 0 14px 30px rgba(0, 91, 255, 0.12);
}

.testimonial-card:hover .testimonial-user img {
  transform: scale(1.05);
}

.testimonial-card:hover .quote-icon {
  color: rgba(0, 91, 255, 0.42);
  text-shadow: 0 0 18px rgba(0, 194, 255, 0.45);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}

.testimonial-dots button {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: rgba(0, 91, 255, 0.25);
  cursor: pointer;
  transition: width var(--duration-base) var(--ease-out), background var(--duration-fast);
}

.testimonial-dots button.is-active {
  width: 28px;
  background: var(--primary-light);
}

/* ========== SECTION 11: NEWS ========== */
.news-section {
  background: var(--surface);
}

.section.news-section {
  padding-top: 36px;
  padding-bottom: 24px;
}

.section.connect-hub {
  padding-top: 24px;
  padding-bottom: 36px;
}

.section.testimonials {
  padding-top: 40px;
  padding-bottom: 20px;
}

.section.work-process {
  padding-top: 40px;
  padding-bottom: 24px;
}

.news-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 16px;
}

.news-head h2 {
  margin: 0;
  font-size: var(--text-h1);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: var(--font-serif);
  font-weight: 700;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--primary);
}

.news-view-all {
  flex: 0 0 auto;
  color: var(--primary);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.25s ease;
}

.news-view-all:hover {
  color: var(--primary-light);
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.news-featured {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(10, 31, 61, 0.12);
}

.news-featured-link {
  display: block;
  position: relative;
  min-height: 400px;
  height: 100%;
  text-decoration: none;
  color: #fff;
}

.news-featured-link img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.news-featured-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 30px 30px;
  background: linear-gradient(180deg, rgba(8, 24, 58, 0) 0%, rgba(8, 24, 58, 0.55) 38%, rgba(8, 24, 58, 0.88) 100%);
}

.news-featured-overlay h3 {
  margin: 12px 0 0;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  transition: color 0.25s ease;
}

.news-date {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.news-date--light {
  color: rgba(255, 255, 255, 0.95);
}

.news-date-ico {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: 0 0 auto;
}

.news-feed {
  position: relative;
  padding-left: 30px;
}

.news-feed::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: #d5deea;
}

.news-feed-item {
  position: relative;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px dotted #c8d3e3;
}

.news-feed-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.news-feed-dot {
  position: absolute;
  left: -30px;
  top: 20px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary-light);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px #d5deea;
  z-index: 1;
}

.news-feed-link {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  text-decoration: none;
  color: inherit;
}

.news-feed-thumb {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #e8eef7;
}

.news-feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-feed-body .news-date {
  margin-bottom: 8px;
  color: #6b7d96;
}

.news-feed-body .news-date-ico {
  color: var(--primary-light);
}

.news-feed-body h3 {
  margin: 0;
  font-size: clamp(13px, 1.2vw, 15px);
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.news-featured-link:hover img {
  transform: scale(1.04);
}

.news-featured-link:hover h3 {
  color: #b8d4ff;
}

.news-feed-link:hover .news-feed-thumb img {
  transform: scale(1.06);
}

.news-feed-link:hover h3 {
  color: var(--primary-light);
}

/* ========== CONNECT HUB ========== */
.connect-hub {
  background: var(--surface-alt);
}

.connect-hub .center-head h2 {
  max-width: none;
  white-space: normal;
}

.connect-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.connect-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 480px;
  height: 100%;
  align-self: stretch;
  box-shadow: 0 18px 44px rgba(10, 50, 120, 0.14);
}

.connect-banner > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.connect-banner-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 28px 24px 24px;
  background: linear-gradient(180deg, transparent, rgba(10, 46, 107, 0.88));
  color: #fff;
}

.connect-banner-overlay h3 {
  margin: 0 0 8px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.2;
  color: #fff;
}

.connect-banner-overlay p {
  margin: 0 0 18px;
  font-size: 15px;
  opacity: 0.92;
}

.connect-side-pills {
  display: none;
}

.connect-pill {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  padding: 14px 10px;
  border-radius: 0 14px 14px 0;
  background: rgba(255, 255, 255, 0.94);
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 91, 255, 0.16);
  transition: background 0.25s ease, color 0.25s ease;
}

.connect-pill:hover {
  background: var(--primary);
  color: #fff;
}

.connect-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 480px;
  min-width: 0;
}

.connect-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  padding: 16px 18px 16px 16px;
  border-radius: 18px;
  border: 1px solid var(--border);
  background: #ffffff;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 8px 22px rgba(13, 71, 161, 0.06);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.connect-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(0, 61, 165, 0.12);
}

.connect-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(0, 91, 255, 0.08);
  color: var(--primary);
  flex-shrink: 0;
}

.connect-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.connect-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.connect-info strong {
  font-size: 16px;
  line-height: 1.35;
  color: var(--text);
}

.connect-info small {
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

.connect-arrow {
  font-size: 24px;
  line-height: 1;
  color: #b8c4d8;
  transition: color 0.25s ease, transform 0.25s ease;
}

.connect-card:hover .connect-arrow {
  color: var(--primary);
  transform: translateX(3px);
}

/* ========== SECTION 12: HERO CTA ========== */
.hero-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, var(--surface-dark), var(--secondary));
  color: #ffffff;
  padding-bottom: 40px;
}

.hero-cta-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(145deg, rgba(0, 91, 255, 0.72), rgba(13, 71, 161, 0.82)),
    url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  animation: none;
}

.hero-cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(0, 194, 255, 0.35), transparent 30%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1000' height='500' viewBox='0 0 1000 500'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.12'%3E%3Cpath d='M40 220c120-80 240-70 360 10s250 60 380-10 180-40 220 20'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
}

@keyframes ctaBgMove {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.05);
  }
}

.hero-cta-grid,
.contact-form-wrap {
  position: relative;
  z-index: 1;
}

.hero-cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: center;
  padding-top: 20px;
}

.cta-badge {
  display: inline-flex;
  margin: 0 0 14px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-cta-copy h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  max-width: 14ch;
}

.hero-cta-copy p {
  max-width: 48ch;
  opacity: 0.95;
  font-size: 16px;
  line-height: 1.75;
}

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

.btn-cta-light {
  background: linear-gradient(135deg, #3d8bff, #00c2ff);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(0, 194, 255, 0.32);
}

.btn-cta-light:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 16px 36px rgba(0, 194, 255, 0.45);
}

.btn-white {
  background: #ffffff;
  color: var(--primary-light);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(255, 255, 255, 0.25);
}

.hero-cta-media {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  isolation: isolate;
}

.hero-cta-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.cta-float {
  position: absolute;
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  color: #0d47a1;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.14);
  animation: none;
}

.cta-float.one {
  top: 18px;
  left: 16px;
}

.cta-float.two {
  top: 48%;
  right: 14px;
  animation-delay: 0.6s;
}

.cta-float.three {
  bottom: 18px;
  left: 24px;
  animation-delay: 1.1s;
}

@keyframes floatSoft {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.contact-form-wrap {
  margin-top: 28px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.cta-form {
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  box-shadow: var(--shadow);
}

.form-head h3 {
  margin: 0 0 4px;
  font-size: 22px;
}

.form-head p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: var(--text-small);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--text);
  background: var(--surface-alt);
  outline: none;
  transition: border-color var(--duration-fast), box-shadow var(--duration-fast);
}

.form-group select {
  appearance: none;
  background-color: var(--surface-alt);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235a6b85' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 163, 224, 0.25);
}

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
  border-color: #e35d6a;
}

.form-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.form-note {
  margin: 12px 0 0;
  font-size: 14px;
  font-weight: 500;
}

.form-note.success {
  color: #0f7a45;
}

.form-note.error {
  color: #c0392b;
}

.footer {
  background: var(--secondary);
  color: var(--white);
  padding: 56px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1.2fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-col-brand {
  text-align: left;
}

.footer-col-brand .footer-brand {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer-col-brand .footer-logo-image {
  width: 148px;
  height: auto;
  max-height: 96px;
  object-fit: contain;
  object-position: left center;
}

.footer-col-brand .footer-desc {
  max-width: 36ch;
}

.footer-col-contact {
  text-align: center;
  justify-self: center;
}

.footer-col-contact h4 {
  text-align: center;
}

.footer-col-services {
  text-align: right;
  justify-self: end;
}

.footer-col-services h4 {
  text-align: right;
}

.footer-col-services ul {
  text-align: right;
}

.footer-brand {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 12px;
  isolation: isolate;
}

.footer-logo-image {
  width: 112px;
  height: 66px;
}

.footer h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.footer h4 {
  margin: 0 0 14px;
  font-size: 16px;
}

.footer-desc {
  margin: 0 0 16px;
  opacity: 0.92;
  line-height: 1.7;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  transition: transform var(--duration-fast) var(--ease-out), background var(--duration-fast), border-color var(--duration-fast);
}

.footer-social a:hover {
  transform: translateY(-2px);
  background: var(--accent);
  border-color: var(--accent);
}

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

.footer-col li + li {
  margin-top: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-contact {
  text-align: center;
}

.footer-contact li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
  white-space: nowrap;
  text-align: center;
}

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

.footer-contact strong {
  display: inline;
  font-size: 14px;
  font-weight: 700;
  opacity: 0.95;
  flex-shrink: 0;
}

.footer-contact span {
  display: inline;
  opacity: 0.92;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

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

/* ========== SUB PAGES ========== */
.subpage-hero {
  padding: 56px 0 40px;
  background: linear-gradient(180deg, var(--surface-alt) 0%, var(--surface) 100%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 16px;
  font-size: var(--text-small);
  color: var(--muted);
}

.breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.breadcrumb a:hover {
  color: var(--accent);
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.5;
}

.subpage-hero h1 {
  margin: 0 0 12px;
  font-size: var(--text-h1);
  font-weight: 800;
  color: var(--text);
}

.subpage-hero p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.subpage-section {
  padding: var(--section-pad-mobile) 0 72px;
}

@media (min-width: 641px) {
  .subpage-section {
    padding: 72px 0;
  }
}

.subpage-section + .subpage-section {
  padding-top: 0;
}

.subpage-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(13, 71, 161, 0.08);
}

.subpage-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.subpage-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

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

.subpage-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.subpage-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

@media (max-width: 1024px) {
  .subpage-grid,
  .subpage-gallery {
    grid-template-columns: 1fr;
  }
}

.floating-contact {
  position: fixed;
  right: max(16px, env(safe-area-inset-right, 0px));
  bottom: max(16px, env(safe-area-inset-bottom, 0px));
  z-index: 80;
  display: flex;
  flex-direction: column;
  gap: 12px;
  pointer-events: none;
}

.floating-contact > * {
  pointer-events: auto;
}

.float-sparkle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, rgba(0, 194, 255, 0.9) 45%, transparent 72%);
  opacity: 0;
  animation: float-sparkle 3.6s ease-in-out infinite;
  pointer-events: none;
}

.float-sparkle--1 {
  top: 8px;
  right: 2px;
  animation-delay: 0s;
}

.float-sparkle--2 {
  top: 46%;
  right: -4px;
  animation-delay: 1.1s;
}

.float-sparkle--3 {
  bottom: 18%;
  right: 6px;
  animation-delay: 2.2s;
}

@keyframes float-sparkle {
  0%,
  70%,
  100% {
    opacity: 0;
    transform: scale(0.4);
  }
  78% {
    opacity: 1;
    transform: scale(1);
  }
  90% {
    opacity: 0.2;
    transform: scale(1.35);
  }
}

.float-btn {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 10px 22px rgba(0, 35, 95, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition: transform 0.28s var(--ease-out), box-shadow 0.28s var(--ease-out);
}

.float-btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    transparent 28%,
    rgba(255, 255, 255, 0.2) 42%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.2) 58%,
    transparent 72%
  );
  transform: translateX(-130%) skewX(-18deg);
  animation: float-shimmer 3.2s ease-in-out infinite;
  pointer-events: none;
}

.float-btn:nth-child(4) .float-btn-shine { animation-delay: 0.4s; }
.float-btn:nth-child(5) .float-btn-shine { animation-delay: 0.8s; }
.float-btn:nth-child(6) .float-btn-shine { animation-delay: 1.2s; }
.float-btn:nth-child(7) .float-btn-shine { animation-delay: 1.6s; }
.float-btn:nth-child(8) .float-btn-shine { animation-delay: 2s; }

@keyframes float-shimmer {
  0%,
  72%,
  100% {
    transform: translateX(-130%) skewX(-18deg);
  }
  36% {
    transform: translateX(130%) skewX(-18deg);
  }
}

.float-btn--glow {
  animation: float-pulse 2.8s ease-in-out infinite;
}

.float-btn--glow:nth-child(4) { animation-delay: 0s; }
.float-btn--glow:nth-child(5) { animation-delay: 0.35s; }
.float-btn--glow:nth-child(6) { animation-delay: 0.7s; }
.float-btn--glow:nth-child(7) { animation-delay: 1.05s; }

@keyframes float-pulse {
  0%,
  100% {
    box-shadow:
      0 10px 22px rgba(0, 35, 95, 0.28),
      0 0 0 0 rgba(0, 194, 255, 0.42),
      inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
  50% {
    box-shadow:
      0 14px 28px rgba(0, 61, 165, 0.36),
      0 0 0 10px rgba(0, 194, 255, 0),
      inset 0 1px 0 rgba(255, 255, 255, 0.35);
  }
}

.float-btn-ico {
  position: relative;
  z-index: 1;
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.float-btn-ico .float-btn-ico-fill,
.float-btn-ico-fill {
  fill: currentColor;
  stroke: none;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow:
    0 16px 30px rgba(0, 61, 165, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.float-btn.call {
  background: linear-gradient(145deg, #0046b8 0%, #0077e6 55%, #00b4ff 100%);
}

.float-btn.zalo {
  background: linear-gradient(145deg, #0050d4 0%, #0068ff 100%);
}

.float-btn.messenger {
  background: linear-gradient(145deg, #0069e0 0%, #00b2ff 100%);
}

.float-btn.chat {
  background: linear-gradient(145deg, #0070d9 0%, #00c2ff 100%);
}

.float-btn.top {
  background: linear-gradient(145deg, #0a2e6b 0%, #0d47a1 100%);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  animation: none;
}

.float-btn.top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

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

.reveal-fade {
  transform: none;
}

.reveal-scale {
  transform: scale(0.97);
}

.reveal-scale.is-visible {
  transform: scale(1);
}

.reveal-left {
  transform: translateX(calc(var(--reveal-distance) * -1));
}

.reveal-left.is-visible {
  transform: translateX(0);
}

.reveal-right {
  transform: translateX(var(--reveal-distance));
}

.reveal-right.is-visible {
  transform: translateX(0);
}

.reveal-group > .reveal:nth-child(1) { transition-delay: 0.04s; }
.reveal-group > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-group > .reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal-group > .reveal:nth-child(4) { transition-delay: 0.22s; }
.reveal-group > .reveal:nth-child(5) { transition-delay: 0.28s; }
.reveal-group > .reveal:nth-child(6) { transition-delay: 0.34s; }

.section-lazy {
  content-visibility: auto;
  contain-intrinsic-size: auto 520px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: var(--gradient-brand);
  transform-origin: left center;
  transition: width 0.08s linear;
  box-shadow: 0 0 12px rgba(0, 163, 224, 0.45);
}

.mobile-call-bar {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-call-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(14px);
    box-shadow: 0 -8px 28px rgba(10, 31, 61, 0.1);
  }

  .mobile-call-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(0, 91, 255, 0.28);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .mobile-call-bar a:active {
    transform: scale(0.98);
  }

  .mobile-call-bar small {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
  }

  .mobile-call-bar strong {
    display: block;
    color: var(--primary);
    font-size: 14px;
    line-height: 1.3;
  }

  .floating-contact {
    bottom: calc(76px + env(safe-area-inset-bottom, 0px));
  }
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn:active,
.float-btn:active,
.lang-btn:active {
  transform: scale(0.98);
}

img[loading="lazy"] {
  background: linear-gradient(110deg, #eef2f8 8%, #f8fafc 18%, #eef2f8 33%);
  background-size: 200% 100%;
}

img.is-loaded {
  background: none;
}

@media (min-width: 1025px) and (max-width: 1320px) {
  .nav-inner {
    gap: 10px;
  }

  .logo-image {
    width: 156px;
    height: 94px;
  }

  .logo-text strong {
    font-size: 18px;
  }

  .logo-text small {
    font-size: 12px;
  }

  .menu > li > a {
    font-size: 13px;
    padding: 10px 7px;
  }

  .nav-cta {
    padding: 10px 14px;
    font-size: 13px;
  }
}

@media (min-width: 1025px) and (max-width: 1180px) {
  .logo-text {
    display: none;
  }

  .menu > li > a {
    font-size: 12px;
    padding: 10px 5px;
  }
}

@media (min-width: 1025px) {
  .hero-banner {
    aspect-ratio: 2.15 / 1;
    max-height: min(92vh, 900px);
    min-height: 520px;
  }

  .slide-nav {
    width: 52px;
    height: 52px;
  }

  .slide-nav span {
    font-size: 34px;
  }

  .slide-nav.prev {
    left: 28px;
  }

  .slide-nav.next {
    right: 28px;
  }

  .slide-dots {
    bottom: 24px;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .hero-headline {
    font-size: clamp(28px, 4.5vw, 44px);
  }

  .hero-lead {
    font-size: clamp(15px, 2vw, 17px);
  }
}

@media (max-width: 1024px) {
  .topbar {
    height: 34px;
    font-size: 12px;
  }

  .topbar-gap {
    width: 48px;
  }

  .topbar-track {
    gap: 14px;
    animation-duration: 22s;
  }

  .site-header {
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.08);
  }

  .navbar {
    min-height: 88px;
  }

  .logo-image {
    width: 152px;
    height: 92px;
  }

  .hero-banner {
    aspect-ratio: 16 / 9;
    max-height: 620px;
    min-height: 380px;
  }

  .hero-copy-wrap {
    place-items: center;
    padding: clamp(24px, 6vw, 48px);
    padding-bottom: clamp(48px, 10vw, 72px);
  }

  .hero-headline {
    font-size: clamp(24px, 6.5vw, 34px);
    line-height: 1.24;
  }

  .hero-brand {
    letter-spacing: 0.18em;
    font-size: 10px;
  }

  .hero-lead {
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.7;
    letter-spacing: 0.02em;
  }

  .hero-copy--minimal .hero-actions {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    width: auto;
    max-width: none;
    gap: 10px;
  }

  .hero-copy--minimal .btn-cta,
  .hero-copy--minimal .btn-ghost-light {
    width: auto;
    padding: 12px 18px;
    font-size: 14px;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(8, 28, 68, 0.35) 0%,
      rgba(8, 28, 68, 0.58) 50%,
      rgba(8, 28, 68, 0.82) 100%
    );
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  .nav-inner {
    grid-template-columns: 1fr auto auto;
  }

  .lang-switcher {
    order: 2;
    margin-right: 4px;
  }

  .lang-switcher.is-open .lang-options {
    max-width: 96px;
  }

  .lang-toggle,
  .lang-btn {
    padding: 3px 5px;
  }

  .menu-toggle {
    order: 3;
  }

  .lang-label {
    display: none;
  }

  .lang-flag {
    width: 15px;
    height: 15px;
  }

  .menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 86vw);
    background: var(--white);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 96px 20px 24px;
    box-shadow: -10px 0 30px rgba(15, 35, 70, 0.15);
    transform: translateX(105%);
    transition: transform 0.28s ease;
    z-index: 110;
  }

  .menu.is-open {
    transform: translateX(0);
  }

  .menu > li {
    border-bottom: 1px solid #edf2fb;
  }

  .menu > li > a {
    width: 100%;
    padding: 14px 4px;
  }

  .menu > li > a::after {
    display: none;
  }

  .dropdown {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--surface-alt);
    margin-top: 0;
    padding: 4px 0 10px 8px;
    border-radius: 0 0 12px 12px;
  }

  .has-dropdown.is-open .dropdown {
    display: block;
  }

  .menu-cta {
    display: block;
    border-bottom: none;
    margin-top: 16px;
  }

  .menu-cta .btn {
    width: 100%;
  }

  .about-layout,
  .grid-4,
  .connect-layout,
  .hero-cta-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .connect-banner {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  .connect-links {
    min-height: 0;
  }

  .connect-card {
    flex: none;
  }

  .connect-hub .center-head h2 {
    white-space: normal;
  }

  .about-image-single { aspect-ratio: 16 / 10; }

  .why-radial {
    grid-template-columns: minmax(0, 1fr) minmax(170px, 220px) minmax(0, 1fr);
    min-height: 440px;
    gap: 0 8px;
  }

  .why-radial-label {
    font-size: 13px;
    padding: 10px 12px;
    max-width: min(200px, 30vw);
  }

  .why-radial-icon {
    width: 58px;
    height: 58px;
  }

  .why-radial-icon svg {
    width: 26px;
    height: 26px;
  }

  .why-radial-center-inner {
    width: 156px;
    height: 156px;
    padding: 14px;
  }

  .why-radial-center-inner .why-radial-logo,
  .why-radial-center-inner .logo-image {
    width: 118px;
    height: 118px;
  }

  .news-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .news-featured-link {
    min-height: 320px;
  }

  .news-featured-link img {
    min-height: 320px;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 20px) / 2);
  }

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

  .timeline-grid::before {
    display: none;
  }

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

  .work-process .center-head h2 {
    white-space: normal;
  }

  .testimonials .center-head h2 {
    white-space: normal;
  }

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

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

  .grid-2 {
    grid-template-columns: 1fr;
  }

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

  .topbar-left {
    gap: 14px;
  }
}

@media (max-width: 390px), (max-width: 640px) {
  .hero-banner {
    aspect-ratio: 4 / 5;
    max-height: min(78vh, 560px);
    min-height: 360px;
  }

  .hero-copy-wrap {
    padding-bottom: 52px;
  }

  .hero-copy--minimal .hero-actions {
    gap: 8px;
  }

  .hero-copy--minimal .btn-cta,
  .hero-copy--minimal .btn-ghost-light {
    padding: 11px 14px;
    font-size: 13px;
  }

  .about-image-single { aspect-ratio: 16 / 10; }

  .about-points {
    grid-template-columns: 1fr;
  }

  .services-slider-mobile {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 86%;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: thin;
  }

  .services-slider-mobile .service-cover-card {
    scroll-snap-align: start;
    aspect-ratio: 4 / 3;
  }

  .btn {
    width: 100%;
  }

  .glass-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    inset: auto 10px 10px 10px;
    gap: 6px;
  }

  .glass-card {
    padding: 12px;
  }

  .glass-card strong {
    font-size: 12px;
  }

  .about-company {
    padding-top: 28px;
    padding-bottom: 36px;
  }

  .section {
    padding: var(--section-pad-mobile) 0;
  }

  .section.services-showcase {
    padding-top: 28px;
    padding-bottom: 0;
  }

  .section.why-choose {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section.news-section {
    padding-top: 28px;
    padding-bottom: 20px;
  }

  .section.connect-hub {
    padding-top: 16px;
    padding-bottom: 28px;
  }

  .section.testimonials,
  .section.work-process {
    padding-top: 28px;
    padding-bottom: 16px;
  }

  .why-radial {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 20px;
  }

  .why-radial-orbit {
    display: none;
  }

  .why-radial-center {
    grid-column: 1;
    order: -1;
    margin-bottom: 8px;
  }

  .why-radial-side--left,
  .why-radial-side--right {
    grid-column: 1;
    gap: 12px;
  }

  .why-radial-item--left,
  .why-radial-item--right {
    justify-content: flex-start;
  }

  .why-radial-item--left {
    flex-direction: row-reverse;
  }

  .why-radial-label {
    max-width: none;
    flex: 1;
  }

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

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .news-head {
    flex-wrap: wrap;
    gap: 12px;
  }

  .news-head h2 {
    font-size: clamp(22px, 6vw, 28px);
  }

  .news-feed-link {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 12px;
  }

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

  .footer-col-contact {
    justify-self: stretch;
    text-align: left;
  }

  .footer-col-contact h4 {
    text-align: left;
  }

  .footer-contact {
    text-align: left;
  }

  .footer-contact li {
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }

  .footer-contact span {
    white-space: normal;
  }

  .footer-col-services,
  .footer-col-services h4,
  .footer-col-services ul {
    text-align: left;
    justify-self: stretch;
  }

  .testimonial-card {
    flex: 0 0 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }


  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .timeline-step {
    text-align: left;
    padding: 20px 18px 18px 74px;
  }

  .timeline-icon {
    position: absolute;
    left: 12px;
    top: 14px;
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .timeline-icon svg {
    width: 22px;
    height: 22px;
  }

  .timeline-index {
    font-size: 30px;
  }

  .timeline-step::before {
    content: "";
    position: absolute;
    left: 34px;
    top: -14px;
    bottom: -14px;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(0, 91, 255, 0.2), rgba(0, 194, 255, 0.9), rgba(0, 91, 255, 0.2));
    z-index: -1;
  }

  .timeline-step:last-child::before {
    display: none;
  }

  .timeline-step:hover::after {
    display: none;
  }
}

/* Booking quote popup */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}

.booking-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal.is-open[hidden] {
  display: grid;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 28, 68, 0.58);
  backdrop-filter: blur(4px);
}

.booking-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  max-height: min(92vh, 760px);
  overflow: auto;
  padding: 28px 26px 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 28px 64px rgba(8, 28, 68, 0.28);
  transform: translateY(18px) scale(0.97);
  transition: transform 0.4s var(--ease-out);
}

.booking-modal.is-open .booking-modal-dialog {
  transform: translateY(0) scale(1);
}

.booking-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #fff;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.booking-modal-close svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}

.booking-modal-close:hover {
  background: var(--surface-alt);
  color: var(--primary);
  border-color: rgba(0, 61, 165, 0.25);
}

.booking-modal-head {
  margin-bottom: 18px;
  padding-right: 36px;
}

.booking-modal-kicker {
  margin: 0 0 8px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.booking-modal-head h2 {
  margin: 0 0 8px;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text);
}

.booking-modal-head p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.booking-form .form-actions {
  margin-top: 4px;
}

.booking-form .btn-ghost {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--primary);
}

.booking-form .btn-ghost:hover {
  background: var(--surface-alt);
}

body.booking-open {
  overflow: hidden;
}

/* News keyword articles */
.news-count {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 600;
}

.news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.news-filters input,
.news-filters select {
  flex: 1 1 180px;
  min-height: 46px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 10px 14px;
  font: inherit;
  background: #fff;
}

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

.news-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.news-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-card-media {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #0a2e6b;
}

.news-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 61, 165, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
}

.news-card-media .news-card-tag {
  position: absolute;
  left: 12px;
  top: 12px;
  background: rgba(255, 255, 255, 0.92);
}

.news-card-body {
  padding: 16px;
}

.news-card-body time {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 13px;
}

.news-card-body h3,
.news-card-body h2.news-card-title {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.35;
}

.news-card-body p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.news-card-more {
  color: var(--primary-light);
  font-weight: 700;
  font-size: 14px;
}

.article-section {
  padding-top: 28px;
}

.article-detail h1 {
  margin: 14px 0 18px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.25;
}

.article-hero,
.article-photo {
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  background: #0a2e6b;
}

.article-hero img,
.article-photo img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

.article-keyword {
  font-weight: 600;
  color: var(--primary);
}

.article-lead {
  margin: 0 0 20px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
}

.article-content h2 {
  margin: 28px 0 12px;
  font-size: 22px;
  line-height: 1.35;
  color: var(--primary, #003da5);
}

.article-content p {
  margin: 0 0 16px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.news-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  align-items: center;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 61, 165, 0.1);
}

.news-page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  color: var(--primary, #003da5);
  background: #fff;
  border: 1px solid rgba(0, 61, 165, 0.15);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.news-page:hover {
  background: var(--primary, #003da5);
  color: #fff;
}

.news-page.is-active {
  background: var(--primary, #003da5);
  color: #fff;
  border-color: var(--primary, #003da5);
}

.news-page-ellipsis {
  padding: 0 4px;
  color: var(--muted);
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 8px;
}

.article-related {
  margin-top: 40px;
}

.article-related h2 {
  margin: 0 0 16px;
  font-size: 24px;
}

.article-missing {
  text-align: center;
  padding: 48px 16px;
}

@media (max-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .news-grid {
    grid-template-columns: 1fr;
  }

  .form-row-3 {
    grid-template-columns: 1fr;
  }

  .booking-modal {
    padding: 12px;
    align-items: end;
  }

  .booking-modal-dialog {
    width: 100%;
    max-height: 90vh;
    padding: 22px 18px 18px;
    border-radius: 22px 22px 16px 16px;
  }

  .booking-form .form-actions {
    flex-direction: column;
  }

  .booking-form .form-actions .btn {
    width: 100%;
  }
}

/* FAQ section — SEO featured snippets */
.faq-section {
  background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
}

.faq-section .section-head h2,
.faq-section > .container > h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--primary, #003da5);
  margin-bottom: 24px;
  text-align: center;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 61, 165, 0.1);
  border-radius: 12px;
  padding: 0 20px;
  box-shadow: 0 2px 12px rgba(0, 30, 80, 0.04);
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: #0a2e6b;
  padding: 18px 0;
  list-style: none;
  position: relative;
  padding-right: 28px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: #003da5;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--muted, #555);
  line-height: 1.75;
  border-top: 1px solid rgba(0, 61, 165, 0.08);
  padding-top: 14px;
}

