:root {
  --red: #0b78b8;
  --red-dark: #073b5b;
  --ink: #102f46;
  --muted: #526b7b;
  --line: #d9e8f0;
  --paper: #ffffff;
  --soft: #f1f8fc;
  --gold: #35b7df;
  --shadow: 0 16px 42px rgba(7, 59, 91, .16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  pointer-events: auto;
  perspective: 1600px;
  isolation: isolate;
  contain: layout paint;
}

.page-loader.is-done {
  pointer-events: none;
}

.page-loader::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(ellipse at 50% 46%, transparent 30%, rgba(0,0,0,.16) 68%, rgba(0,0,0,.28)),
    linear-gradient(90deg, rgba(0,0,0,.28), transparent 22%, transparent 78%, rgba(0,0,0,.28));
  opacity: .72;
  pointer-events: none;
  animation: loaderDepthFade 7.35s ease both .85s;
}

.page-loader::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 20px);
  z-index: 4;
  width: 40px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.52), rgba(255,255,255,.08), rgba(0,0,0,.44), transparent);
  pointer-events: none;
  animation: curtainSeamFade 2.6s cubic-bezier(.22,.76,.18,1) both .75s;
}

.loader-panel {
  position: absolute;
  top: -1px;
  bottom: -1px;
  z-index: 2;
  width: calc(50% + 4px);
  background:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.11) 0 2px, transparent 2px 20px, rgba(0,0,0,.2) 20px 34px, transparent 34px 64px),
    radial-gradient(ellipse at 50% 48%, rgba(255,255,255,.07), transparent 42%),
    linear-gradient(135deg, #041827, #0a6597 58%, #041827);
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
  box-shadow: inset 0 0 90px rgba(0,0,0,.34), 0 0 48px rgba(0,0,0,.26);
  animation: curtainSlideOut 6.35s cubic-bezier(.18,.78,.2,1) both 1.05s;
  will-change: transform;
  transform: translate3d(0,0,0) scaleX(1);
  transform-style: preserve-3d;
  backface-visibility: hidden;
  contain: paint;
}

.loader-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.11), transparent 18%, rgba(0,0,0,.2) 34%, transparent 58%, rgba(255,255,255,.08) 82%, transparent),
    repeating-linear-gradient(90deg, rgba(255,255,255,.055) 0 10px, transparent 10px 52px, rgba(0,0,0,.14) 52px 70px, transparent 70px 110px);
  opacity: .9;
  pointer-events: none;
  transform: translate3d(0,0,0);
}

.loader-panel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 42px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,.38), rgba(255,255,255,.08), transparent);
  opacity: .88;
  pointer-events: none;
}

.loader-panel-left {
  left: -2px;
  --curtain-open-x: -112%;
  transform-origin: left center;
}

.loader-panel-left::after {
  right: -20px;
}

.loader-panel-right {
  right: -2px;
  --curtain-open-x: 112%;
  transform-origin: right center;
}

.loader-panel-right::after {
  left: -20px;
  transform: scaleX(-1);
}

.curtain-bow {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 7;
  width: 214px;
  height: 118px;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  transform-style: preserve-3d;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,.38));
  will-change: opacity, transform;
  animation: bowGroupFade 2.1s cubic-bezier(.22,.78,.2,1) both .18s;
}

.curtain-bow::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 48px;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(3,35,54,.76), rgba(8,109,163,.94) 26%, rgba(53,183,223,.58) 50%, rgba(8,109,163,.94) 74%, rgba(3,35,54,.76)),
    linear-gradient(#07517b, #03263c);
  box-shadow: inset 0 0 14px rgba(255,255,255,.14), 0 9px 22px rgba(0,0,0,.32);
  transform-origin: center;
  animation: bowStrapRelease 1.55s cubic-bezier(.22,.78,.2,1) both .18s;
}

.bow-loop,
.bow-tail,
.bow-knot {
  position: absolute;
  display: block;
  background:
    radial-gradient(circle at 38% 32%, rgba(255,255,255,.23), transparent 30%),
    linear-gradient(135deg, #1595ce, #08608f 54%, #032a42);
  border: 1px solid rgba(102,210,239,.42);
  box-shadow: inset 0 0 18px rgba(255,255,255,.08), inset 0 -18px 28px rgba(0,0,0,.22);
  will-change: transform, opacity;
  backface-visibility: hidden;
}

.bow-loop {
  top: 22px;
  width: 84px;
  height: 56px;
}

.bow-loop-left {
  left: 18px;
  clip-path: polygon(100% 50%, 24% 4%, 0 50%, 24% 96%);
  border-radius: 68% 40% 62% 46%;
  transform-origin: right center;
  transform: rotate(-10deg);
  animation: bowLoopLeftRelease 1.65s cubic-bezier(.22,.78,.18,1) both .24s;
}

.bow-loop-right {
  right: 18px;
  clip-path: polygon(0 50%, 76% 4%, 100% 50%, 76% 96%);
  border-radius: 40% 68% 46% 62%;
  transform-origin: left center;
  transform: rotate(10deg);
  animation: bowLoopRightRelease 1.65s cubic-bezier(.22,.78,.18,1) both .24s;
}

.bow-knot {
  left: 50%;
  top: 34px;
  z-index: 2;
  width: 46px;
  height: 42px;
  border-radius: 45% 55% 48% 52%;
  background:
    radial-gradient(circle at 42% 34%, rgba(255,255,255,.25), transparent 34%),
    linear-gradient(145deg, #21a9da, #086491 52%, #032a42);
  transform: translate3d(-50%,0,0) rotate(45deg);
  animation: bowKnotRelease 1.55s cubic-bezier(.22,.78,.18,1) both .28s;
}

.bow-tail {
  top: 65px;
  width: 38px;
  height: 52px;
  clip-path: polygon(16% 0, 84% 0, 72% 100%, 50% 76%, 28% 100%);
  border-radius: 8px 8px 4px 4px;
  transform-origin: top center;
}

.bow-tail-left {
  left: 75px;
  transform: rotate(8deg);
  animation: bowTailLeftRelease 1.62s cubic-bezier(.22,.78,.18,1) both .28s;
}

.bow-tail-right {
  right: 75px;
  transform: rotate(-8deg);
  animation: bowTailRightRelease 1.62s cubic-bezier(.22,.78,.18,1) both .28s;
}

.loader-mark {
  position: absolute;
  left: 50%;
  top: calc(50% + 118px);
  z-index: 5;
  display: grid;
  justify-items: center;
  gap: 12px;
  color: #fff;
  font: 800 15px Montserrat, Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0);
  will-change: opacity, transform;
  animation: loaderMarkOut 2.15s cubic-bezier(.22,.78,.2,1) both .35s;
}

.loader-mark img {
  width: 108px;
  filter:
    drop-shadow(0 1px 1px rgba(255,255,255,.5))
    drop-shadow(0 18px 38px rgba(0,0,0,.35));
}

.loader-mark::after {
  content: "";
  width: 132px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--red), transparent);
  animation: loaderLine 1.05s ease-in-out infinite;
}

.page-loader.is-done {
  animation: loaderRemove .18s ease both;
}

@keyframes curtainSlideOut {
  from { transform: translate3d(0,0,0) scaleX(1); }
  to { transform: translate3d(var(--curtain-open-x),0,0) scaleX(.92); }
}

@keyframes loaderDepthFade {
  0%, 70% { opacity: .72; }
  100% { opacity: 0; }
}

@keyframes bowGroupFade {
  0%, 58% {
    opacity: 1;
    transform: translate3d(-50%, -50%, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(-50%, -50%, 0) scale(.96);
  }
}

@keyframes bowStrapRelease {
  0% { opacity: 1; transform: scaleX(1); }
  64% { opacity: .74; transform: scaleX(.62); }
  100% { opacity: 0; transform: scaleX(.18); }
}

@keyframes bowLoopLeftRelease {
  0% { opacity: 1; transform: rotate(-10deg) scale(1); }
  56% { opacity: .94; transform: translate3d(-18px,-2px,0) rotate(-22deg) scale(.96); }
  100% { opacity: 0; transform: translate3d(-82px,-10px,0) rotate(-34deg) scale(.78); }
}

@keyframes bowLoopRightRelease {
  0% { opacity: 1; transform: rotate(10deg) scale(1); }
  56% { opacity: .94; transform: translate3d(18px,-2px,0) rotate(22deg) scale(.96); }
  100% { opacity: 0; transform: translate3d(82px,-10px,0) rotate(34deg) scale(.78); }
}

@keyframes bowKnotRelease {
  0% { opacity: 1; transform: translate3d(-50%,0,0) rotate(45deg) scale(1); }
  60% { opacity: .82; transform: translate3d(-50%,0,0) rotate(45deg) scale(.78); }
  100% { opacity: 0; transform: translate3d(-50%,-12px,0) rotate(45deg) scale(.35); }
}

@keyframes bowTailLeftRelease {
  0% { opacity: 1; transform: rotate(8deg) translate3d(0,0,0); }
  62% { opacity: .9; transform: rotate(18deg) translate3d(-16px,12px,0); }
  100% { opacity: 0; transform: rotate(30deg) translate3d(-42px,34px,0) scale(.72); }
}

@keyframes bowTailRightRelease {
  0% { opacity: 1; transform: rotate(-8deg) translate3d(0,0,0); }
  62% { opacity: .9; transform: rotate(-18deg) translate3d(16px,12px,0); }
  100% { opacity: 0; transform: rotate(-30deg) translate3d(42px,34px,0) scale(.72); }
}

@keyframes curtainSeamFade {
  0%, 18% { opacity: .9; transform: scaleX(1); }
  100% { opacity: 0; transform: scaleX(.08); }
}

@keyframes loaderMarkOut {
  0% { opacity: 0; transform: translate3d(-50%, calc(-50% + 16px), 0) scale(.92); }
  28% { opacity: 1; transform: translate3d(-50%, -50%, 0) scale(1); }
  58% { opacity: 1; transform: translate3d(-50%, -50%, 0) scale(1); }
  100% { opacity: 0; transform: translate3d(-50%, calc(-50% - 10px), 0) scale(.96); }
}

@keyframes loaderLine {
  0%, 100% { transform: scaleX(.35); opacity: .45; }
  50% { transform: scaleX(1); opacity: 1; }
}

@keyframes loaderRemove {
  to { visibility: hidden; opacity: 0; }
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 64px);
  background:
    linear-gradient(180deg, rgba(3, 37, 58, .84), rgba(5, 61, 91, .62));
  border-bottom: 1px solid rgba(255, 255, 255, .16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .12);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, height .2s ease, background .2s ease, border-color .2s ease;
}

.site-header.is-scrolled {
  height: 66px;
  background:
    linear-gradient(180deg, rgba(3, 37, 58, .96), rgba(5, 55, 84, .91));
  border-bottom-color: rgba(255, 255, 255, .12);
  box-shadow: 0 16px 34px rgba(0, 0, 0, .2);
}

.brand {
  height: 100%;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 96px;
}

.brand img {
  width: 96px;
  height: 58px;
  max-height: calc(100% - 14px);
  object-fit: contain;
  filter:
    drop-shadow(0 1px 1px rgba(255,255,255,.48))
    drop-shadow(0 7px 14px rgba(0,0,0,.24));
}

.brand span {
  display: none;
}
.desktop-nav {
  display: flex;
  gap: 18px;
  align-items: center;
  color: rgba(255, 255, 255, .86);
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
}

.desktop-nav a { padding: 8px 0; border-bottom: 2px solid transparent; }
.desktop-nav a:hover { color: #fff; border-color: var(--gold); transform: translateY(-1px); }

.desktop-nav .law-library-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 6px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.desktop-nav .law-library-link svg {
  width: 17px;
  height: 17px;
  stroke-width: 2.4;
}

.desktop-nav .law-library-link:hover {
  border-color: rgba(83,198,230,.66);
  background: rgba(53,183,223,.2);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .18);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, .86);
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.nav-dropdown > button:hover {
  color: #fff;
}

.nav-dropdown > button svg {
  width: 15px;
  height: 15px;
}

.utility-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  width: 360px;
  max-height: min(72vh, 640px);
  overflow: auto;
  display: grid;
  gap: 4px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition: opacity .18s ease, transform .18s ease;
}

.office-menu {
  width: 330px;
}

.nav-dropdown:hover .utility-menu,
.nav-dropdown.is-open .utility-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.modal-open .utility-menu {
  opacity: 0;
  pointer-events: none;
}

.utility-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  border-left: 1px solid var(--line);
  border-top: 1px solid var(--line);
  transform: translateX(-50%) rotate(45deg);
}

.utility-menu a,
.utility-menu button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.utility-menu a:hover,
.utility-menu button:hover {
  background: #edf8fd;
  color: var(--red);
}

.utility-menu svg {
  width: 18px;
  height: 18px;
  color: var(--red);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(0,0,0,.12);
}

.language-switcher button {
  width: 30px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  opacity: .62;
  filter: grayscale(.28);
  transition: opacity .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.language-switcher button:hover,
.language-switcher button.is-active {
  opacity: 1;
  filter: none;
  border-color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.15);
  transform: translateY(-1px);
}

.language-switcher button:focus-visible {
  outline: 2px solid #6ed6f1;
  outline-offset: 2px;
}

.flag-icon {
  width: 22px;
  height: 15px;
  display: block;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.38), 0 2px 5px rgba(0,0,0,.22);
}

.phone-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.phone-link svg {
  width: 19px;
  height: 19px;
  animation: phoneRing 2.8s ease-in-out infinite;
}

.phone-link::after {
  content: "";
  position: absolute;
  left: -8px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(83,198,230,.52);
  border-radius: 999px;
  opacity: 0;
  transform: scale(.72);
}

.phone-link:hover::after {
  animation: phonePulse .9s ease-out;
}

@keyframes phoneRing {
  0%, 70%, 100% { transform: rotate(0); }
  76% { transform: rotate(-13deg); }
  82% { transform: rotate(12deg); }
  88% { transform: rotate(-9deg); }
  94% { transform: rotate(7deg); }
}

@keyframes phonePulse {
  0% { opacity: .55; transform: scale(.72); }
  100% { opacity: 0; transform: scale(1.35); }
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 6px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  align-items: center;
  justify-content: center;
}

.menu-toggle svg, .btn svg, .service-card svg, .check-list svg, .contact-methods svg, .quick-actions svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

.mobile-nav {
  position: fixed;
  top: 78px;
  left: 0;
  right: 0;
  z-index: 29;
  display: none;
  grid-template-columns: 1fr;
  background: rgba(3, 37, 58, .96);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  box-shadow: 0 18px 38px rgba(0, 0, 0, .24);
  backdrop-filter: blur(16px);
}

.mobile-nav a {
  padding: 14px 22px;
  border-top: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .88);
  font-weight: 700;
}

.mobile-nav a:hover {
  color: #fff;
  background: rgba(53,183,223,.18);
}

.mobile-nav.is-open { display: grid; }

.hero {
  min-height: 92vh;
  position: relative;
  display: grid;
  align-items: end;
  padding: 150px clamp(20px, 6vw, 84px) 46px;
  overflow: hidden;
}

.hero-media,
.hero-bg-static,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
}

.hero-bg-static {
  object-fit: cover;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.018);
  transition: opacity 1s ease, transform 7.2s ease;
}

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

.hero-overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(4, 31, 48, .9) 0%, rgba(7, 46, 67, .68) 42%, rgba(7, 46, 67, .06) 72%),
    linear-gradient(0deg, rgba(13, 25, 33, .34), transparent 40%);
}

.hero-wave {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: -2px;
  height: clamp(92px, 12vw, 168px);
  pointer-events: none;
  overflow: hidden;
}

.wave-layer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 200%;
  height: 100%;
  overflow: visible;
  will-change: transform;
  backface-visibility: hidden;
}

.wave-layer path {
  vector-effect: non-scaling-stroke;
}

.wave-layer-fill {
  z-index: 1;
  fill: #fff;
  animation: seaWaveTravel 8.4s linear infinite;
}

.wave-layer-red {
  z-index: 4;
  fill: none;
  stroke: #0b78b8;
  stroke-width: 7px;
  stroke-linecap: round;
  filter: drop-shadow(0 -6px 12px rgba(7, 84, 126, .2));
  animation: seaWaveTravel 8.4s linear infinite;
}

.wave-layer-black {
  z-index: 3;
  fill: none;
  stroke: #35b7df;
  stroke-width: 3px;
  stroke-linecap: round;
  opacity: .9;
  animation: seaWaveTravel 12.6s linear infinite;
}

.wave-layer-blue {
  z-index: 2;
  fill: none;
  stroke: rgba(178, 184, 194, .52);
  stroke-width: 5.5px;
  stroke-linecap: round;
  opacity: .42;
  animation: seaWaveTravelReverse 16.8s linear infinite;
}

.hero-pagination {
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  bottom: clamp(112px, 11vw, 158px);
  z-index: 6;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-pagination button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.74);
  border-radius: 999px;
  background: rgba(255,255,255,.36);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  cursor: pointer;
  transition: width .24s ease, background .24s ease, border-color .24s ease;
}

.hero-pagination button.is-active {
  width: 30px;
  border-color: #67d0eb;
  background: #087dbb;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 810px;
  color: #fff;
  padding-bottom: 64px;
}

.hero-content .eyebrow {
  animation: heroTextIn .8s cubic-bezier(.2,.8,.2,1) both .08s;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 800;
  text-transform: uppercase;
}

h1, h2, h3 {
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.12;
  margin: 0;
  color: inherit;
  letter-spacing: 0;
}

h1 {
  max-width: 780px;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 800;
}

.hero-content h1 {
  max-width: 900px;
  font-size: clamp(42px, 5vw, 64px);
}

.hero h1 {
  animation: heroTextIn .9s cubic-bezier(.2,.8,.2,1) both .22s;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: 18px;
  animation: heroTextIn .9s cubic-bezier(.2,.8,.2,1) both .38s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
  animation: heroTextIn .9s cubic-bezier(.2,.8,.2,1) both .52s;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}

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

.btn.primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 26px rgba(7, 94, 145, .3);
}

.btn.primary:hover {
  background: var(--red-dark);
  box-shadow: 0 15px 34px rgba(7, 78, 119, .38);
}

.hero-actions .btn.primary:hover svg {
  animation: sendIconFly .72s cubic-bezier(.22,.8,.2,1);
}

.btn.secondary {
  background: rgba(255, 255, 255, .13);
  color: #fff;
  border-color: rgba(255, 255, 255, .36);
}

.btn.secondary:hover {
  border-color: rgba(255, 255, 255, .7);
  background: rgba(255, 255, 255, .2);
}

.hero-actions .btn.secondary {
  position: relative;
  overflow: hidden;
}

.hero-actions .btn.secondary::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 999px;
  opacity: 0;
  transform: translate(-50%, -50%) scale(.2);
}

.hero-actions .btn.secondary:hover::before {
  animation: serviceButtonPulse .85s ease;
}

.hero-actions .btn.secondary:hover svg {
  animation: boxesOpen .82s cubic-bezier(.2,.8,.2,1);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .75s ease, transform .75s ease;
}

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

.hero-facts {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 720px;
  margin-bottom: clamp(30px, 4vw, 54px);
  border: 1px solid rgba(255,255,255,.26);
  background: rgba(255,255,255,.11);
  backdrop-filter: blur(10px);
  overflow: hidden;
  isolation: isolate;
  animation: heroTextIn .9s cubic-bezier(.2,.8,.2,1) both .66s;
}

.hero-facts::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 0;
  width: 42%;
  background: linear-gradient(100deg, transparent 0%, rgba(255,255,255,.08) 25%, rgba(255,255,255,.2) 46%, rgba(53,183,223,.34) 55%, rgba(255,255,255,.16) 66%, transparent 100%);
  transform: translateX(-120%) skewX(-14deg);
  animation: factsLightLoop 2.85s linear infinite;
}

.hero-facts::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 22%, rgba(255,255,255,.72) 44%, var(--gold) 66%, transparent 100%);
  transform: translateX(-100%);
  animation: factsLineLoop 2.85s linear infinite;
}

.hero-facts div {
  position: relative;
  overflow: hidden;
  padding: 18px 22px;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.22);
  z-index: 1;
  transition: background .25s ease, border-color .25s ease;
}

.hero-facts div::before {
  content: none;
}

.hero-facts div::after {
  content: none;
}

.hero-facts strong,
.hero-facts span {
  position: relative;
  z-index: 1;
}

.hero-facts div:last-child { border-right: 0; }
.hero-facts strong { display: block; font-size: 24px; line-height: 1; font-family: Montserrat, Arial, sans-serif; }
.hero-facts span { display: block; margin-top: 8px; color: rgba(255,255,255,.76); }

@keyframes heroTextIn {
  from {
    opacity: 0;
    transform: translateY(24px);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes sendIconFly {
  0% { transform: translate(0, 0) rotate(0); opacity: 1; }
  45% { transform: translate(28px, -20px) rotate(18deg); opacity: .15; }
  55% { transform: translate(-18px, 14px) rotate(-14deg); opacity: .3; }
  100% { transform: translate(0, 0) rotate(0); opacity: 1; }
}

@keyframes serviceButtonPulse {
  0% { opacity: 0; transform: translate(-50%, -50%) scale(.2); }
  22% { opacity: .55; }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(18); }
}

@keyframes boxesOpen {
  0% { transform: scale(1) rotate(0); }
  35% { transform: scale(1.22) rotate(-8deg); }
  70% { transform: scale(.9) rotate(6deg); }
  100% { transform: scale(1) rotate(0); }
}

@keyframes factsLightLoop {
  from { transform: translateX(-120%) skewX(-14deg); }
  to { transform: translateX(340%) skewX(-14deg); }
}

@keyframes factsLineLoop {
  from { transform: translateX(-100%); }
  to { transform: translateX(100%); }
}

@keyframes seaWaveTravel {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

@keyframes seaWaveTravelReverse {
  from { transform: translate3d(-50%, 0, 0); }
  to { transform: translate3d(0, 0, 0); }
}

.section {
  padding: clamp(56px, 8vw, 100px) clamp(20px, 6vw, 84px);
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section-head h2, .proof h2, .contact h2 {
  font-size: clamp(30px, 4vw, 48px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 42px;
  background: var(--paper);
  align-items: start;
}

.intro-panel {
  margin-top: 24px;
}

.intro-panel > p {
  margin: 0;
  font-size: 18px;
  color: var(--muted);
}

.intro-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.intro-metrics div {
  position: relative;
  overflow: hidden;
  min-height: 112px;
  padding: 18px;
  border: 1px solid rgba(11, 120, 184, .18);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(11,120,184,.09), transparent 55%),
    #fff;
}

.intro-metrics div::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -28px;
  width: 82px;
  height: 82px;
  border-radius: 999px;
  border: 18px solid rgba(53,183,223,.2);
}

.intro-metrics strong {
  display: block;
  color: var(--red-dark);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.15;
}

.intro-metrics span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.services { background: var(--soft); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 276px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease, background .28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -18px;
  width: 172px;
  height: 118px;
  background-image: var(--service-image);
  background-size: cover;
  background-position: center;
  border-radius: 8px 0 8px 0;
  opacity: .24;
  filter: saturate(.85);
  transform: translate(18px, 18px) scale(.96);
  transition: opacity .28s ease, transform .28s ease, filter .28s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(0deg, rgba(255,255,255,.9), rgba(255,255,255,0));
  pointer-events: none;
}

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

.service-card[data-service="air"] { --service-image: url("assets/flatworld/dich-vu-khai-hai-quan-5-e1724338427331.webp"); }
.service-card[data-service="sea"] { --service-image: url("assets/flatworld/pexels-dibert-1117210-scaled.jpg"); }
.service-card[data-service="customs"] { --service-image: url("assets/flatworld/DLHQ.jpg"); }
.service-card[data-service="auto"] { --service-image: url("assets/flatworld/pexels-mikebirdy-112460-scaled.jpg"); }
.service-card[data-service="project"] { --service-image: url("assets/flatworld/monsoon-5-3243.jpg"); }
.service-card[data-service="machine"] { --service-image: url("assets/flatworld/pexels-asadphoto-24245278-scaled.jpg"); }

.service-tag {
  align-self: flex-start;
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 5px 10px;
  border: 1px solid rgba(11,120,184,.18);
  border-radius: 999px;
  background: #edf8fd;
  color: var(--red);
  font: 800 11px/1 Inter, Arial, sans-serif;
  text-transform: uppercase;
}

.services.reveal.is-visible .service-card:hover,
.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 120, 184, .34);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fff 0%, #eef8fd 100%);
}

.service-card:hover::before {
  opacity: .38;
  filter: saturate(1.04);
  transform: translate(0, 0) scale(1.04);
}

.service-card:hover svg {
  transform: scale(1.12) rotate(-4deg);
}

.service-card svg { color: var(--red); width: 30px; height: 30px; transition: transform .28s ease; }
.service-card h3 { margin-top: 18px; font-size: 20px; color: var(--red-dark); }
.service-card p { margin: 12px 0 0; color: var(--muted); }

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--red);
  font-weight: 800;
  cursor: pointer;
}

.card-link svg {
  width: 17px;
  height: 17px;
  transition: transform .2s ease;
}

.service-card:hover .card-link svg {
  transform: translateX(4px);
}

.service-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  padding: 0;
  overflow: hidden;
}

.service-card.featured img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

.service-card.featured div { padding: 30px; align-self: center; }

.services.reveal .service-card {
  opacity: 0;
  transform: translateY(34px);
}

.services.reveal.is-visible .service-card {
  animation: serviceCardIn .72s cubic-bezier(.2,.8,.2,1) both;
}

.services.reveal.is-visible .service-card > svg {
  animation: serviceIconIn .72s cubic-bezier(.2,.8,.2,1) both;
}

.services.reveal.is-visible .service-card:nth-child(1),
.services.reveal.is-visible .service-card:nth-child(1) > svg { animation-delay: .04s; }
.services.reveal.is-visible .service-card:nth-child(2),
.services.reveal.is-visible .service-card:nth-child(2) > svg { animation-delay: .12s; }
.services.reveal.is-visible .service-card:nth-child(3),
.services.reveal.is-visible .service-card:nth-child(3) > svg { animation-delay: .20s; }
.services.reveal.is-visible .service-card:nth-child(4),
.services.reveal.is-visible .service-card:nth-child(4) > svg { animation-delay: .28s; }
.services.reveal.is-visible .service-card:nth-child(5),
.services.reveal.is-visible .service-card:nth-child(5) > svg { animation-delay: .36s; }
.services.reveal.is-visible .service-card:nth-child(6),
.services.reveal.is-visible .service-card:nth-child(6) > svg { animation-delay: .44s; }

.reveal.is-visible .check-list svg,
.reveal.is-visible .contact-methods svg,
.reveal.is-visible .source-link svg {
  animation: serviceIconIn .68s cubic-bezier(.2,.8,.2,1) both;
}

.reveal.is-visible .check-list li:nth-child(2) svg,
.reveal.is-visible .contact-methods a:nth-child(2) svg { animation-delay: .12s; }

.reveal.is-visible .check-list li:nth-child(3) svg,
.reveal.is-visible .contact-methods a:nth-child(3) svg { animation-delay: .22s; }

@keyframes serviceCardIn {
  from {
    opacity: 0;
    transform: translateY(34px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes serviceIconIn {
  0% {
    opacity: 0;
    transform: translate(-24px, 18px) rotate(-10deg) scale(.7);
  }
  70% {
    opacity: 1;
    transform: translate(3px, -2px) rotate(3deg) scale(1.08);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(0) scale(1);
  }
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.proof img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.proof p { color: var(--muted); }
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.check-list svg { color: var(--red); }

.pain-points {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(53,183,223,.2), transparent 26%),
    linear-gradient(135deg, #041827, #0a3550 58%, #041827);
  color: #fff;
}

.pain-points::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.pain-points .section-head,
.pain-grid {
  position: relative;
  z-index: 1;
}

.pain-points .section-head h2 {
  color: #fff;
}

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

.pain-grid article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.pain-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(83,198,230,.58);
  background: rgba(255,255,255,.09);
}

.pain-grid svg {
  width: 30px;
  height: 30px;
  color: var(--gold);
}

.pain-grid h3 {
  margin-top: 22px;
  font-size: 19px;
}

.pain-grid p {
  margin-bottom: 0;
  color: rgba(255,255,255,.7);
}

.process { background: #06283e; color: #fff; }
.process .section-head h2 { color: #fff; }
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.16);
}

.steps div {
  min-height: 250px;
  padding: 28px;
  background: #06283e;
  transition: transform .28s ease, background .28s ease;
}

.steps div:hover {
  background: #0a2c42;
  transform: translateY(-5px);
}

.steps span {
  color: var(--gold);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 34px;
  font-weight: 800;
}

.steps h3 { margin-top: 24px; font-size: 20px; }
.steps p { color: rgba(255,255,255,.72); margin-bottom: 0; }

.clients {
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(22,134,168,.11), transparent 30%),
    linear-gradient(180deg, #fff, #f4f8fb);
}

.client-marquee {
  overflow: hidden;
  padding: 22px 0;
  border-block: 1px solid rgba(18,50,77,.1);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.client-track {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: clientMarquee 42s linear infinite;
}

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

.client-track img {
  width: 190px;
  height: 124px;
  flex: 0 0 auto;
  object-fit: contain;
  padding: 14px;
  border: 1px solid rgba(18,50,77,.09);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(18,50,77,.08);
}

@keyframes clientMarquee {
  to { transform: translateX(calc(-50% - 9px)); }
}

.proud-gallery { background: #f4f7f8; }
.proud-gallery .section-head h2 { color: var(--ink); }
.proud-gallery .eyebrow { color: var(--red); }

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

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  padding: 0;
  border: 1px solid rgba(16, 47, 70, .12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(16, 47, 70, .1);
  cursor: zoom-in;
  text-align: left;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .42s ease, filter .42s ease;
}

.gallery-item span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  background: rgba(3,37,58,.78);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  backdrop-filter: blur(8px);
  transform: translateY(6px);
  opacity: .82;
  transition: transform .28s ease, opacity .28s ease, background .28s ease;
}

.gallery-item span svg { width: 16px; height: 16px; }
.gallery-item:hover img { transform: scale(1.045); filter: saturate(1.08); }
.gallery-item:hover span { transform: translateY(0); opacity: 1; background: rgba(11,120,184,.9); }
.gallery-item:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

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

.news-grid a,
.news-grid button {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 800;
  color: var(--ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.news-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin: -8px 0 20px;
  color: var(--muted);
  font-weight: 700;
}

.source-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-weight: 800;
}

.source-link svg {
  width: 18px;
  height: 18px;
}

.news-filters {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-filters button {
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(11,120,184,.2);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.news-filters button:hover,
.news-filters button.is-active {
  border-color: rgba(11,120,184,.46);
  background: var(--red);
  color: #fff;
}

.customs-news {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.customs-news a,
.customs-news button {
  min-height: 254px;
  padding: 18px;
  font-size: 15px;
  gap: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,248,248,.92)),
    linear-gradient(135deg, rgba(11,120,184,.09), transparent 52%);
}

.news-grid a:hover,
.news-grid button:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.news-grid button:focus-visible {
  outline: 3px solid rgba(11, 120, 184, .26);
  outline-offset: 3px;
}

.news-grid span {
  color: var(--red);
  font: 800 12px Inter, Arial, sans-serif;
  text-transform: uppercase;
}

.news-grid strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.35;
}

.news-grid p {
  margin: 0;
  color: var(--muted);
  font: 500 13px/1.5 Inter, Arial, sans-serif;
}

.news-grid small {
  color: var(--red-dark);
  font: 800 12px Inter, Arial, sans-serif;
}

.news-empty {
  grid-column: 1 / -1;
  min-height: 160px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border: 1px dashed rgba(11,120,184,.3);
  border-radius: 8px;
  background: #eef8fd;
  color: var(--muted);
}

.news-empty strong {
  color: var(--red-dark);
  font-size: 18px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
  gap: clamp(28px, 5vw, 64px);
  background: var(--soft);
}

.contact-copy p { color: var(--muted); }
.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-methods a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--red-dark);
}

.contact-form {
  display: grid;
  gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: #303846;
  font-weight: 800;
  font-size: 14px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #d7dce2;
  border-radius: 6px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(11, 120, 184, .13);
}

textarea { resize: vertical; }

.site-footer {
  position: relative;
  overflow: hidden;
  display: block;
  padding: 0 clamp(20px, 6vw, 84px) 28px;
  background:
    radial-gradient(circle at 10% 0%, rgba(53,183,223,.2), transparent 26%),
    radial-gradient(circle at 86% 18%, rgba(11,120,184,.3), transparent 28%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px),
    #041827;
  background-size: auto, auto, 36px 36px, 36px 36px, auto;
  color: rgba(255,255,255,.8);
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold), var(--red));
}

.footer-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.footer-cta h2 {
  max-width: 820px;
  color: #fff;
  font-size: clamp(26px, 3.5vw, 42px);
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr .75fr .95fr 1.05fr;
  gap: 18px;
  padding: 28px 0;
}

.footer-brand,
.footer-card {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  backdrop-filter: blur(10px);
}

.footer-brand {
  background:
    linear-gradient(135deg, rgba(11,120,184,.22), rgba(255,255,255,.055) 48%),
    rgba(255,255,255,.055);
}

.footer-brand img {
  width: 118px;
  height: 100px;
  object-fit: contain;
  margin-bottom: 16px;
  filter:
    drop-shadow(0 1px 1px rgba(255,255,255,.4))
    drop-shadow(0 10px 22px rgba(0,0,0,.22));
}

.site-footer strong {
  display: block;
  color: #fff;
  margin-bottom: 10px;
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.28;
}

.site-footer p { margin: 0; }

.footer-brand p,
.footer-address {
  color: rgba(255,255,255,.68);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.footer-badges span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(83,198,230,.3);
  border-radius: 999px;
  background: rgba(53,183,223,.12);
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,.72);
  font-weight: 800;
  transition: color .2s ease, transform .2s ease;
}

.footer-links a:hover {
  color: var(--gold);
  transform: translateX(4px);
}

.footer-contact-list {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  color: #fff;
  font-weight: 800;
  line-height: 1.35;
}

.map-link svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--gold);
}

.footer-map {
  width: 100%;
  min-height: 170px;
  border: 0;
  border-radius: 8px;
  filter: grayscale(.18) contrast(.98);
  background: #0b3048;
}

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 700;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 22px;
}

.image-viewer[hidden] { display: none; }

.image-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 18, 29, .94);
  backdrop-filter: blur(12px);
}

.image-viewer-panel {
  position: relative;
  z-index: 1;
  width: min(1480px, 96vw);
  height: min(900px, 92vh);
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(4,37,58,.96), rgba(2,22,35,.98));
  box-shadow: 0 34px 100px rgba(0,0,0,.5);
  overflow: hidden;
}

.image-viewer-toolbar {
  position: absolute;
  z-index: 3;
  top: 14px;
  left: 18px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  font-weight: 800;
}

.image-viewer-toolbar button,
.image-viewer-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: #fff;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.image-viewer-toolbar button {
  width: 42px;
  height: 42px;
  border-radius: 999px;
}

.image-viewer-nav {
  width: 50px;
  height: 64px;
  margin: auto;
  border-radius: 10px;
}

.image-viewer-toolbar button:hover,
.image-viewer-nav:hover {
  border-color: rgba(83,198,230,.72);
  background: rgba(11,120,184,.72);
  transform: translateY(-2px);
}

.image-viewer figure {
  grid-column: 2;
  min-width: 0;
  max-height: 100%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  margin: 0;
  padding: 72px 14px 24px;
}

.image-viewer figure img {
  max-width: 100%;
  max-height: calc(92vh - 130px);
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0,0,0,.42);
}

.image-viewer figcaption {
  min-height: 24px;
  color: rgba(255,255,255,.82);
  font-weight: 700;
  text-align: center;
}

.image-viewer-prev { grid-column: 1; grid-row: 1; }
.image-viewer-next { grid-column: 3; grid-row: 1; }
body.image-viewer-open { overflow: hidden; }

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

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

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 20, .64);
  backdrop-filter: blur(4px);
}

.modal-panel {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
  max-height: min(86vh, 780px);
  overflow: auto;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(10, 14, 20, .28);
}

.modal-close {
  position: sticky;
  top: 14px;
  float: right;
  z-index: 2;
  width: 42px;
  height: 42px;
  margin: 14px 14px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
}

.modal-body {
  padding: 34px;
}

.modal-kicker {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.modal-body h2 {
  margin-top: 8px;
  color: var(--red-dark);
  font-size: clamp(28px, 4vw, 42px);
}

.modal-body p {
  color: var(--muted);
}

.modal-lead {
  max-width: 820px;
  margin: 14px 0 0;
  font-size: 17px;
}

.process-map {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff 0%, #eef8fd 100%);
}

.process-map::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(11,120,184,.18), rgba(53,183,223,.76), rgba(11,120,184,.18));
}

.process-node {
  position: relative;
  z-index: 1;
  min-height: 124px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  padding: 12px 10px;
  border: 1px solid rgba(11,120,184,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  text-align: center;
  box-shadow: 0 8px 20px rgba(24,32,42,.06);
}

.process-node span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 900;
}

.process-node strong {
  color: var(--red-dark);
  font-size: 13px;
  line-height: 1.32;
}

.process-explain {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.process-detail {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.process-detail > span {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: #eaf7fc;
  color: var(--red);
  font-family: Montserrat, Arial, sans-serif;
  font-weight: 900;
}

.process-detail h3 {
  margin: 0 0 8px;
  font-size: 18px;
  color: var(--ink);
}

.process-detail p {
  margin: 0;
}

.service-support-grid {
  margin-top: 20px;
}

.flatworld-promo {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 22px;
  padding: 24px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  color: #fff;
}

.flatworld-promo h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.flatworld-promo p {
  color: rgba(255,255,255,.82);
}

.flatworld-promo .modal-kicker {
  color: var(--gold);
}

.flatworld-promo .btn.primary {
  background: #fff;
  color: var(--red);
  box-shadow: none;
  white-space: nowrap;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.modal-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.modal-box h3 {
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--ink);
}

.modal-box ul,
.modal-box ol {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.modal-box li + li {
  margin-top: 7px;
}

.service-coordination-box {
  grid-column: 1 / -1;
}

.service-coordination-box ul {
  columns: 2;
  column-gap: 24px;
}

.service-coordination-box li {
  break-inside: avoid;
}

.utility-form {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.utility-result {
  margin-top: 18px;
  padding: 16px;
  border-radius: 8px;
  background: #eaf7fc;
  color: var(--red-dark);
  font-weight: 900;
}

.office-tool .btn {
  width: auto;
}

.office-textarea {
  width: 100%;
  min-height: 150px;
  margin-top: 18px;
  border: 1px solid #d7dce2;
  border-radius: 8px;
  padding: 13px;
  resize: vertical;
  color: var(--ink);
  background: #fff;
}

.office-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.office-secondary {
  background: #fff;
  color: var(--red);
  border-color: rgba(11,120,184,.28);
  box-shadow: none;
}

.office-output {
  min-height: 170px;
  margin: 16px 0 0;
  padding: 14px;
  overflow: auto;
  border-radius: 8px;
  background: #041827;
  color: #fff;
  white-space: pre-wrap;
}

.office-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.office-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.office-stats strong {
  display: block;
  color: var(--red);
  font-family: Montserrat, Arial, sans-serif;
  font-size: 28px;
}

.office-stats span {
  color: var(--muted);
  font-weight: 800;
}

.office-file {
  width: 100%;
  margin: 18px 0 14px;
  border: 1px dashed rgba(11,120,184,.34);
  border-radius: 8px;
  padding: 16px;
  background: #eef8fd;
}

.qr-output {
  display: inline-grid;
  place-items: center;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.utility-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.utility-list div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  color: var(--muted);
}

.quick-actions {
  position: fixed;
  z-index: 25;
  right: 18px;
  bottom: 22px;
  display: grid;
  gap: 10px;
}

.quick-actions a {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 26px rgba(24, 32, 42, .2);
  transition: transform .22s ease, background .22s ease;
}

.quick-actions a:hover {
  transform: translateY(-3px);
  background: var(--red-dark);
}

@media (max-width: 1420px) {
  .brand { min-width: 96px; }
  .desktop-nav { gap: 11px; font-size: 12px; }
}

@media (max-width: 1240px) {
  .phone-link { display: none; }
}

@media (max-width: 980px) {
  .desktop-nav, .phone-link { display: none; }
  .menu-toggle { display: flex; }
  .brand { min-width: 0; }
  .brand img { width: 86px; height: 50px; }
  .intro, .proof, .contact { grid-template-columns: 1fr; }
  .intro > p { margin-top: 0; }
  .intro-panel { margin-top: 0; }
  .service-grid, .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pain-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .modal-grid, .utility-list { grid-template-columns: 1fr; }
  .service-coordination-box ul { columns: 1; }
  .utility-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-map { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .process-map::before { display: none; }
  .process-explain { grid-template-columns: 1fr; }
  .flatworld-promo { grid-template-columns: 1fr; }
  .flatworld-promo .btn.primary { width: 100%; }
  .footer-main { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .footer-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .site-header { height: 66px; padding: 0 16px; }
  .brand img { width: 70px; height: 46px; }
  .language-switcher { gap: 2px; padding: 2px; }
  .language-switcher button { width: 27px; height: 27px; font-size: 16px; }
  .mobile-nav { top: 66px; }
  .hero {
    min-height: 94vh;
    padding: 120px 18px 28px;
  }
  .hero-wave { height: 88px; }
  .hero-pagination { right: 18px; bottom: 98px; gap: 6px; }
  .hero-content { padding-bottom: 28px; }
  .hero-content h1 { font-size: 38px; }
  .hero-copy { font-size: 16px; }
  .btn { width: 100%; }
  .hero-facts { grid-template-columns: 1fr; }
  .hero-facts div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.22); }
  .section { padding: 52px 18px; }
  .intro-metrics, .service-grid, .news-grid, .pain-grid, .steps, .footer-main { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: auto; grid-template-columns: 1fr; }
  .service-card.featured img { min-height: 220px; }
  .pain-grid article { min-height: auto; }
  .news-toolbar { align-items: flex-start; }
  .news-filters { width: 100%; }
  .contact { grid-template-columns: 1fr; }
  .contact-form { padding: 18px; }
  .site-footer { padding: 0 18px 24px; }
  .footer-cta,
  .footer-main { padding: 24px 0; }
  .footer-brand,
  .footer-card { padding: 18px; }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
  }
  .modal-shell { padding: 14px; }
  .modal-body { padding: 24px 18px; }
  .image-viewer { padding: 8px; }
  .image-viewer-panel {
    width: 100%;
    height: 96vh;
    grid-template-columns: 48px minmax(0, 1fr) 48px;
  }
  .image-viewer-toolbar { top: 10px; left: 12px; right: 10px; }
  .image-viewer-toolbar button { width: 38px; height: 38px; }
  .image-viewer-nav { width: 40px; height: 54px; }
  .image-viewer figure { padding: 62px 4px 18px; }
  .image-viewer figure img { max-height: calc(96vh - 122px); }
  .image-viewer figcaption { font-size: 13px; }
  .process-map { grid-template-columns: 1fr; }
  .process-node {
    min-height: auto;
    grid-template-columns: 38px minmax(0, 1fr);
    justify-items: start;
    text-align: left;
  }
  .process-detail {
    grid-template-columns: 1fr;
  }
  .utility-form { grid-template-columns: 1fr; }
  .quick-actions { right: 12px; bottom: 14px; }
  .quick-actions a { width: 44px; height: 44px; }
  .client-track img { width: 154px; height: 106px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}

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