/* =========================================================
   TradeRoute — Logistics & Transports
   Modern, youthful, business-grade design system
   ========================================================= */

:root {
  --blue-900: #0D2E5C;
  --blue-700: #1B4F9C;
  --blue-600: #1E5AA8;
  --blue-500: #2B7AC9;
  --blue-400: #3B8BD6;
  --blue-300: #6FB1E8;
  --blue-50:  #EEF5FC;

  --ink:      #0F172A;
  --ink-2:    #334155;
  --muted:    #64748B;
  --line:     #E2E8F0;
  --bg:       #F8FAFC;
  --white:    #ffffff;

  /* Semantic theme tokens */
  --page:        #ffffff;
  --surface:     #ffffff;
  --tint:        #EEF5FC;
  --header-bg:   rgba(255,255,255,.85);
  --card-bg:     rgba(255,255,255,.92);
  --topbar-bg:   #0D2E5C;
  --topbar-fg:   #cbd9ec;

  --grad: linear-gradient(135deg, #1E5AA8 0%, #3B8BD6 100%);
  --grad-soft: linear-gradient(180deg, #EEF5FC 0%, #ffffff 100%);

  --shadow-sm: 0 2px 8px rgba(13,46,92,.06);
  --shadow:    0 12px 32px rgba(13,46,92,.10);
  --shadow-lg: 0 24px 60px rgba(13,46,92,.18);

  --radius-sm: 10px;
  --radius:    16px;
  --radius-lg: 24px;

  --font-display: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;
}


* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--page);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background-color .35s ease, color .35s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 12px;
}
h1 { font-size: clamp(2.2rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
p  { color: var(--ink-2); }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue-600);
  background: var(--blue-50);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}
.section-head p { font-size: 1.05rem; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: .95rem;
  border: 1.5px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(30,90,168,.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(30,90,168,.42); }
.btn-ghost {
  background: var(--surface);
  color: var(--blue-600);
  border-color: var(--blue-300);
}
.btn-ghost:hover { background: var(--tint); }
.btn-light {
  background: var(--white);
  color: var(--blue-700);
}
.btn-light:hover { transform: translateY(-2px); }

/* ---------- TOPBAR ---------- */
.topbar {
  background: var(--topbar-bg);
  color: var(--topbar-fg);
  font-size: .85rem;
  transition: background-color .35s ease, color .35s ease;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 24px;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar-left, .topbar-right { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.topbar-link { color: var(--topbar-fg); transition: color .2s; }
.topbar-link:hover { color: #ffffff; }

.ico {
  display: inline-block;
  width: 18px;
  text-align: center;
  margin-right: 4px;
  font-size: 14px;
  line-height: 1;
}
.dot { opacity: .5; }

/* ---------- HEADER ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(180deg, rgba(238,245,252,.92) 0%, rgba(255,255,255,.92) 100%);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s ease, background-color .35s ease, border-color .35s ease;
}
.site-header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 3px;
  background: var(--grad);
  opacity: .85;
}
.site-header.scrolled { box-shadow: var(--shadow); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  transition: transform .25s ease;
}
.logo:hover { transform: scale(1.03); }
.logo img {
  height: 95px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(30,90,168,.20));
  transition: filter .25s ease;
}
.logo:hover img { filter: drop-shadow(0 14px 28px rgba(30,90,168,.35)); }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--blue-700);
  font-size: 1.05rem;
  letter-spacing: -.01em;
  position: relative;
  transition: color .2s;
}
.nav a:not(.nav-cta):hover { color: var(--blue-500); }
.nav a:not(.nav-cta)::after {
  content:''; position: absolute; left: 0; bottom: -8px; height: 2.5px; width: 0;
  background: var(--grad); border-radius: 2px;
  transition: width .3s cubic-bezier(.2,.8,.2,1);
}
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { padding: 9px 16px; font-size: .85rem; }

.burger {
  display: none; background: none; border: none; padding: 8px;
  width: 42px; height: 42px;
}
.burger span {
  display: block; height: 2px; background: var(--ink); margin: 5px 0;
  width: 24px; transition: transform .25s, opacity .25s;
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 70px;
  background: var(--grad-soft);
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(600px 300px at 85% 20%, rgba(59,139,214,.18), transparent 60%),
    radial-gradient(500px 280px at 15% 80%, rgba(30,90,168,.12), transparent 60%);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
.hero-text .lead {
  font-size: 1.15rem;
  margin: 18px 0 30px;
  max-width: 560px;
}
.lead-top {
  display: block;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--blue-700);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.lead-sub {
  display: block;
  font-style: italic;
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.55;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 28px; margin-top: 44px; flex-wrap: wrap;
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--blue-700);
}
.hero-stats span { font-size: .85rem; color: var(--muted); }

/* hero visual */
.hero-visual { position: relative; height: 460px; }
.globe {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.globe-core {
  width: 240px;
  height: 240px;
  filter: drop-shadow(0 24px 48px rgba(30,90,168,.35));
  animation: float 6s ease-in-out infinite;
  display: grid;
  place-items: center;
}
.globe-core svg { width: 100%; height: 100%; }
.globe-ring, .globe-ring.r2 {
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  border: 2px dashed rgba(30,90,168,.25);
  animation: spin 22s linear infinite;
}
.globe-ring.r2 {
  width: 460px; height: 460px;
  border-color: rgba(59,139,214,.18);
  animation: spin 32s linear infinite reverse;
}

.card-float {
  position: absolute;
  background: var(--card-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
  min-width: 175px;
  animation: float 5s ease-in-out infinite;
}
.card-float strong { display: block; font-family: var(--font-display); font-size: .95rem; }
.card-float small  { color: var(--muted); font-size: .78rem; }
.card-icon {
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--tint);
  display: grid; place-items: center;
  color: var(--blue-700);
  flex-shrink: 0;
}
.card-icon svg { width: 26px; height: 26px; }
.card-1 { top: 30px; left: 0; animation-delay: 0s; }
.card-2 { bottom: 60px; left: 20px; animation-delay: 1.5s; }
.card-3 { top: 120px; right: 0; animation-delay: 3s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-12px); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- QUICKBAR ---------- */
.quickbar { margin-top: -50px; position: relative; z-index: 5; }
.quickbar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  border: 1px solid var(--line);
}
.quickbar-item { display: flex; flex-direction: column; gap: 6px; }
.quickbar-item label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}
.quickbar-item input,
.quickbar-item select {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, background .2s;
}
.quickbar-item input:focus,
.quickbar-item select:focus { border-color: var(--blue-400); background: var(--white); }
.quickbar-btn { height: 48px; justify-content: center; }

/* ---------- SERVICES ---------- */
.services { padding: 50px 0 90px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .45s cubic-bezier(.2,.8,.2,1),
              box-shadow .45s ease,
              border-color .35s ease,
              background-color .35s ease;
}
.service > *:not(.num-badge) { position: relative; z-index: 2; }

/* Big faded number in background — uses CSS counter */
.services-grid { counter-reset: srv; }
.service { counter-increment: srv; }
.num-badge {
  position: absolute;
  top: -22px;
  right: 8px;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  opacity: 0.10;
  transition: opacity .4s ease, transform .4s ease;
}
.num-badge::before {
  content: counter(srv, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 6.5rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Soft blob bottom-right that grows on hover */
.service::after {
  content: '';
  position: absolute;
  width: 180px; height: 180px;
  bottom: -100px; right: -100px;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0;
  z-index: 0;
  transition: opacity .5s ease, transform .6s cubic-bezier(.2,.8,.2,1);
}

.service:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px -10px rgba(13,46,92,.22),
              0 18px 30px -12px rgba(30,90,168,.18);
  border-color: var(--blue-300);
}
.service:hover .num-badge { opacity: 0.22; transform: translateY(4px) scale(1.06); }
.service:hover::after { opacity: 0.08; transform: scale(1.6); }

/* Gradient icon container */
.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: var(--grad);
  display: grid; place-items: center;
  color: #ffffff;
  margin-bottom: 20px;
  box-shadow: 0 12px 22px -6px rgba(30,90,168,.45);
  transition: transform .45s cubic-bezier(.2,.8,.2,1),
              box-shadow .35s ease;
}
.service-icon svg { width: 30px; height: 30px; }
.service:hover .service-icon {
  transform: rotate(-6deg) scale(1.08);
  box-shadow: 0 18px 32px -6px rgba(30,90,168,.55);
}

.service h3 {
  transition: color .3s ease;
  margin-bottom: 10px;
}
.service:hover h3 { color: var(--blue-700); }
.service p {
  font-size: .92rem;
  margin: 0 0 16px;
  line-height: 1.55;
}

/* Animated arrow */
.more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: .88rem;
  color: var(--blue-600);
  position: relative;
  transition: gap .3s ease, color .3s ease;
}
.more::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  height: 1.5px; width: 0;
  background: var(--grad);
  transition: width .35s ease;
}
.service:hover .more { gap: 12px; color: var(--blue-700); }
.service:hover .more::after { width: 100%; }

/* ---------- ABOUT ---------- */
.about { padding: 90px 0; background: var(--grad-soft); }
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-visual { position: relative; }

/* ===== About scene illustration ===== */
.about-scene {
  position: relative;
  width: 100%;
  aspect-ratio: 480 / 580;
  max-width: 460px;
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 30px 60px -16px rgba(13,46,92,.30),
              0 12px 22px -10px rgba(30,90,168,.20);
  border: 1px solid var(--line);
  background: var(--surface);
  /* Day sky colors (default) */
  --sky-1: #A4D0F2;
  --sky-2: #6FB1E8;
  --sky-3: #3B8BD6;
  --star-opacity: 0.45;
  transition: background .8s ease;
}
/* Night palette */
.about-scene.night {
  --sky-1: #0E1B3B;
  --sky-2: #0A1733;
  --sky-3: #050D24;
  --star-opacity: 1;
}

/* SVG gradient stops driven by CSS vars */
.about-scene .sky-stop-1 { stop-color: var(--sky-1); transition: stop-color .8s ease; }
.about-scene .sky-stop-2 { stop-color: var(--sky-2); transition: stop-color .8s ease; }
.about-scene .sky-stop-3 { stop-color: var(--sky-3); transition: stop-color .8s ease; }

/* Day / night celestial toggle */
.about-scene .celestial-night { display: none; }
.about-scene.night .celestial-day   { display: none; }
.about-scene.night .celestial-night { display: block; }

/* Stars more visible at night */
.about-scene .scene-stars {
  opacity: var(--star-opacity);
  transition: opacity .8s ease;
}
.about-scene.night .scene-stars circle {
  animation: twinkle 3.5s ease-in-out infinite;
}
.about-scene.night .scene-stars circle:nth-child(2n) { animation-delay: -1.2s; }
.about-scene.night .scene-stars circle:nth-child(3n) { animation-delay: -2.4s; }
@keyframes twinkle {
  0%, 100% { opacity: 1; }
  50%      { opacity: .35; }
}
.about-scene > svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Logo overlay on the white card inside the scene */
.scene-logo {
  position: absolute;
  top: 51.7%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62%;
  max-width: 270px;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 2px 4px rgba(13,46,92,.08));
  z-index: 2;
}

/* Location pin badge */
.scene-pin {
  position: absolute;
  top: 18px; left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 7px 13px 7px 11px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  color: var(--blue-700);
  box-shadow: 0 6px 14px rgba(13,46,92,.18);
  z-index: 3;
}
.pin-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #EF4444;
  box-shadow: 0 0 0 0 rgba(239,68,68,.6);
  animation: pin-pulse 2s ease-out infinite;
}
@keyframes pin-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,.6); }
  70%  { box-shadow: 0 0 0 10px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

/* Animations for scene elements */
.about-scene .plane {
  transform-origin: 410px 160px;
  transform-box: fill-box;
  animation: plane-float 5.5s ease-in-out infinite;
}
@keyframes plane-float {
  0%, 100% { transform: translate(410px, 160px) rotate(0deg); }
  50%      { transform: translate(404px, 152px) rotate(2deg); }
}

.about-scene .ship {
  animation: ship-bob 4.5s ease-in-out infinite;
}
@keyframes ship-bob {
  0%, 100% { transform: translate(330px, 408px) rotate(0deg); }
  25%      { transform: translate(330px, 404px) rotate(-1.2deg); }
  75%      { transform: translate(330px, 412px) rotate(1.2deg); }
}

.about-scene .truck {
  animation: truck-drive 6s ease-in-out infinite;
}
@keyframes truck-drive {
  0%   { transform: translate(80px, 530px); }
  50%  { transform: translate(180px, 530px); }
  100% { transform: translate(80px, 530px); }
}

.about-scene .logo-card {
  animation: card-pulse 4s ease-in-out infinite;
  transform-box: fill-box;
}
@keyframes card-pulse {
  0%, 100% { transform: translate(80px, 260px); }
  50%      { transform: translate(80px, 256px); }
}

.about-scene .plane-trail {
  stroke-dashoffset: 0;
  animation: trail-draw 12s linear infinite;
}
@keyframes trail-draw {
  to { stroke-dashoffset: -200; }
}

@media (prefers-reduced-motion: reduce) {
  .about-scene * { animation: none !important; }
}

/* ===== About bento collage ===== */
.about-bento {
  position: relative;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 14px;
  padding: 4px;
}

.about-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: .35;
  pointer-events: none;
  z-index: 0;
}
.about-blob.b1 {
  width: 260px; height: 260px;
  background: var(--blue-400);
  top: -40px; left: -50px;
}
.about-blob.b2 {
  width: 200px; height: 200px;
  background: #6FB1E8;
  bottom: -40px; right: -40px;
}

.bento {
  position: relative;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 22px 22px;
  box-shadow: var(--shadow-sm);
  z-index: 1;
  transition: transform .35s cubic-bezier(.2,.8,.2,1),
              box-shadow .35s ease;
}
.bento:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* MAIN gradient card — spans 3 rows on left */
.bento-main {
  grid-row: 1 / 4;
  background: var(--grad);
  color: #ffffff;
  border: 0;
  padding: 28px 26px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px;
  box-shadow: 0 20px 40px -10px rgba(30,90,168,.45);
}
.bento-main::before {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  top: -110px; right: -110px;
  pointer-events: none;
}
.bento-main::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  bottom: -70px; left: -60px;
  pointer-events: none;
}
.bento-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.18);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
  width: fit-content;
}
.bento-headline {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 2.6vw, 2.2rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 14px 0 8px;
}
.bento-headline em {
  font-style: italic;
  background: linear-gradient(135deg, #FFE08A 0%, #FFC247 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.bento-sub {
  font-size: .85rem;
  opacity: .85;
  margin-bottom: 12px;
}
.bento-route {
  width: 100%;
  height: 60px;
  margin-top: auto;
}

/* Value cards (right column) */
.bento-value {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 22px;
}
.bento-icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--tint);
  color: var(--blue-700);
  display: grid; place-items: center;
  margin-bottom: 8px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.bento-icon svg { width: 22px; height: 22px; }
.bento-value:hover .bento-icon { transform: rotate(-8deg) scale(1.08); }
.bento-value strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.1;
}
.bento-value span {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Licensed badge — spans full width at bottom */
.bento-badge {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
}
.badge-check {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: var(--grad);
  color: #ffffff;
  display: grid; place-items: center;
  box-shadow: 0 12px 22px -6px rgba(30,90,168,.45);
  flex-shrink: 0;
}
.badge-check svg { width: 22px; height: 22px; }
.bento-badge strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 2px;
}
.bento-badge span {
  display: block;
  font-size: .82rem;
  color: var(--muted);
}

.checks { list-style: none; padding: 0; margin: 18px 0 28px; }
.checks li {
  padding: 10px 0;
  font-weight: 500;
  color: var(--ink-2);
  border-bottom: 1px dashed var(--line);
}
.checks li:last-child { border-bottom: 0; }

/* ---------- WHY ---------- */
.why { padding: 100px 0; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform .45s cubic-bezier(.2,.8,.2,1),
              box-shadow .45s ease,
              border-color .35s ease,
              background-color .35s ease;
}
.why-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 50px -14px rgba(13,46,92,.20),
              0 14px 24px -12px rgba(30,90,168,.16);
  border-color: var(--blue-300);
}

/* Top gradient visual area */
.why-visual {
  height: 140px;
  background: var(--grad);
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #ffffff;
}
.why-icon {
  width: 56px;
  height: 56px;
  z-index: 4;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.22));
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.why-card:hover .why-icon { transform: scale(1.12) rotate(-6deg); }

/* Decorative blobs (one per card variant) */
.why-blob {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  top: -110px; right: -100px;
  transition: transform .8s ease;
}
.why-card:hover .why-blob { transform: scale(1.15) translate(-10px, 10px); }
.why-blob.b2 { background: rgba(255,255,255,.20); top: auto; bottom: -110px; right: auto; left: -100px; }
.why-blob.b3 { background: rgba(255,255,255,.18); top: -90px; right: auto; left: -90px; }
.why-blob.b4 { background: rgba(255,255,255,.20); bottom: -90px; right: -90px; top: auto; }

/* Decorative lines (Speed card — motion lines behind lightning) */
.why-line {
  position: absolute;
  height: 2px;
  background: rgba(255,255,255,.55);
  border-radius: 2px;
}
.why-line.l1 { width: 36px; top: 38px; right: 28px; }
.why-line.l2 { width: 22px; top: 60px; right: 18px; }
.why-line.l3 { width: 28px; bottom: 38px; left: 28px; }

/* Decorative dots (Transparency card) */
.why-dot {
  position: absolute;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
}
.why-dot.d1 { top: 28px; left: 30px; }
.why-dot.d2 { bottom: 30px; right: 32px; }

/* Decorative rings (Tracking card — radar pulses) */
.why-ring {
  position: absolute;
  width: 110px; height: 110px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,.45);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  animation: ring-pulse 3s ease-out infinite;
}
.why-ring.r2 {
  width: 160px; height: 160px;
  animation-delay: -1.5s;
  border-style: solid;
  border-color: rgba(255,255,255,.25);
}
@keyframes ring-pulse {
  0%   { transform: translate(-50%, -50%) scale(.55); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.15); opacity: 0; }
}

/* Decorative waves (Support card — sound waves) */
.why-wave {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
}
.why-wave.w1 {
  width: 80px; height: 80px;
  left: 12px; top: 50%;
  transform: translateY(-50%);
  border-right-color: transparent;
  border-bottom-color: transparent;
  animation: wave-pulse 2.4s ease-in-out infinite;
}
.why-wave.w2 {
  width: 80px; height: 80px;
  right: 12px; top: 50%;
  transform: translateY(-50%) rotate(180deg);
  border-right-color: transparent;
  border-bottom-color: transparent;
  animation: wave-pulse 2.4s ease-in-out infinite .6s;
}
@keyframes wave-pulse {
  0%, 100% { opacity: .25; }
  50%      { opacity: .75; }
}

/* Content area */
.why-content {
  padding: 22px 26px 28px;
}
.why-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
}
.why-content h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
.why-content p {
  font-size: .92rem;
  line-height: 1.55;
  margin: 0;
}

/* ---------- COVERAGE ---------- */
.coverage { padding: 90px 0; background: var(--blue-900); color: #ffffff; position: relative; overflow: hidden; }
.coverage::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 80% 30%, rgba(59,139,214,.18), transparent 60%);
}
.coverage h2 { color: #ffffff; }
.coverage p  { color: #ffffff; }
.coverage .eyebrow { background: rgba(255,255,255,.08); color: var(--blue-300); }
.coverage-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.coverage-map {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px;
}
.coverage-map svg { width: 100%; height: auto; display: block; }

/* Network visualization */
.coverage-network .routes path {
  stroke-dashoffset: 0;
  animation: route-flow 6s linear infinite;
}
.coverage-network .routes path:nth-child(2n) { animation-duration: 7s; animation-direction: reverse; }
.coverage-network .routes path:nth-child(3n) { animation-duration: 8s; }
@keyframes route-flow {
  to { stroke-dashoffset: -120; }
}

.coverage-network .athens-hub .hub-glow {
  transform-origin: 280px 240px;
  transform-box: fill-box;
  animation: athens-pulse 2.6s ease-in-out infinite;
}
@keyframes athens-pulse {
  0%, 100% { transform: scale(.85); opacity: .85; }
  50%      { transform: scale(1.15); opacity: 1; }
}

.coverage-network .dest circle:first-child {
  transform-origin: center;
  transform-box: fill-box;
  animation: dest-pulse 3s ease-in-out infinite;
}
.coverage-network .dest:nth-child(2n) circle:first-child { animation-delay: -.6s; }
.coverage-network .dest:nth-child(3n) circle:first-child { animation-delay: -1.2s; }
.coverage-network .dest:nth-child(5n) circle:first-child { animation-delay: -1.8s; }
@keyframes dest-pulse {
  0%, 100% { transform: scale(.7); opacity: .55; }
  50%      { transform: scale(1.15); opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  .coverage-network * { animation: none !important; }
}

/* ---------- PROCESS ---------- */
.process { padding: 100px 0; background: var(--bg); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  position: relative;
}
.step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--line);
  position: relative;
  transition: background-color .35s ease, border-color .35s ease;
}
.step-num {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--grad);
  color: var(--white);
  display: grid; place-items: center;
  font-weight: 800;
  font-family: var(--font-display);
  margin-bottom: 14px;
  box-shadow: 0 8px 18px rgba(30,90,168,.25);
}

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 100px 0; }
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.t-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  transition: transform .3s, box-shadow .3s, background-color .35s ease;
}
.t-card::before {
  content: '“';
  position: absolute;
  top: -10px; left: 18px;
  font-size: 90px;
  font-family: Georgia, serif;
  color: var(--blue-300);
  line-height: 1;
}
.t-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.t-card blockquote {
  margin: 12px 0 18px;
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.6;
}
.t-card figcaption strong { display: block; font-family: var(--font-display); color: var(--ink); }
.t-card figcaption span { font-size: .82rem; color: var(--muted); }

/* ---------- CTA BAND ---------- */
.cta-band {
  background: var(--grad);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content:''; position: absolute; inset: 0;
  background: radial-gradient(500px 300px at 100% 0%, rgba(255,255,255,.18), transparent 60%);
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 56px 24px;
  position: relative;
}
.cta-band h2 { color: var(--white); margin: 0 0 6px; }
.cta-band p  { color: rgba(255,255,255,.85); margin: 0; }

/* ---------- CONTACT ---------- */
.contact { padding: 100px 0; background: var(--bg); }
.contact-header { margin-bottom: 50px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px 24px 24px;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform .45s cubic-bezier(.2,.8,.2,1),
              box-shadow .45s ease,
              border-color .35s ease,
              background-color .35s ease;
}
.contact-card-static { cursor: default; }
.contact-card::after {
  content: '';
  position: absolute;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--grad);
  opacity: 0;
  bottom: -100px; right: -100px;
  z-index: 0;
  transition: opacity .45s ease, transform .55s ease;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 50px -14px rgba(13,46,92,.20),
              0 14px 24px -12px rgba(30,90,168,.16);
  border-color: var(--blue-300);
}
.contact-card:hover::after {
  opacity: .08;
  transform: scale(1.4);
}

.contact-icon {
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--grad);
  color: #ffffff;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  box-shadow: 0 12px 22px -6px rgba(30,90,168,.45);
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.contact-icon svg { width: 26px; height: 26px; }
.contact-card:hover .contact-icon { transform: rotate(-6deg) scale(1.08); }

.contact-label {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--blue-600);
  margin-bottom: 6px;
}
.contact-card strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  letter-spacing: -.01em;
  word-break: break-word;
}
.contact-meta {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.45;
  margin-top: 4px;
}
.contact-action {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.contact-list { list-style: none; padding: 0; margin: 24px 0 0; }
.contact-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.ci-icon {
  width: 40px; height: 40px;
  background: var(--tint);
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
}
.contact-list strong { display: block; font-family: var(--font-display); }
.contact-list a, .contact-list span { color: var(--ink-2); font-size: .95rem; }

.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  padding: 30px;
  box-shadow: var(--shadow);
  transition: background-color .35s ease;
}
.contact-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.contact-form label {
  display: flex; flex-direction: column; gap: 6px;
  font-size: .82rem; font-weight: 600; color: var(--muted);
  text-transform: uppercase; letter-spacing: .08em;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--line);
  background: var(--bg);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  outline: none;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  transition: border-color .2s, background .2s, color .2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue-400);
  background: var(--surface);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 8px; }
.thanks {
  display: none;
  margin-top: 14px;
  background: #DCFCE7;
  color: #166534;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: .9rem;
}

/* ---------- FOOTER ---------- */
.site-footer { background: var(--blue-900); color: #cbd9ec; padding: 70px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.f-brand img {
  height: 52px; width: auto;
  background: var(--white);
  border-radius: 10px;
  padding: 6px 10px;
  margin-bottom: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,.20);
}
.f-brand p { color: #9fb3d0; font-size: .9rem; max-width: 330px; }
.f-col h4 {
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}
.f-col a, .f-col span {
  display: block;
  color: #9fb3d0;
  padding: 5px 0;
  font-size: .92rem;
  transition: color .2s;
}
.f-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: .85rem;
}
.fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: #9fb3d0;
}
.fb-inner a { color: #9fb3d0; }
.fb-inner a:hover { color: var(--white); }

/* ---------- SERVICE MODAL ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
}
.modal[aria-hidden="false"] { pointer-events: auto; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 46, 92, .55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity .35s ease;
  cursor: pointer;
}
.modal[aria-hidden="false"] .modal-backdrop { opacity: 1; }

.modal-panel {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 780px;
  max-height: 88vh;
  overflow-y: auto;
  padding: 40px 44px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  opacity: 0;
  transform: translateY(40px) scale(.94);
  transition: transform .55s cubic-bezier(.2,.85,.25,1),
              opacity .35s ease;
}
.modal[aria-hidden="false"] .modal-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* gradient accent bar at top */
.modal-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--tint);
  border: 0;
  display: grid;
  place-items: center;
  color: var(--blue-700);
  cursor: pointer;
  transition: background .25s ease, color .25s ease, transform .35s ease;
  z-index: 2;
}
.modal-close svg { width: 18px; height: 18px; }
.modal-close:hover {
  background: var(--blue-700);
  color: #ffffff;
  transform: rotate(90deg);
}

.modal-head {
  display: flex;
  align-items: center;
  gap: 22px;
  padding-bottom: 26px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.modal-icon {
  width: 68px;
  height: 68px;
  border-radius: 18px;
  background: var(--grad);
  display: grid;
  place-items: center;
  color: #ffffff;
  flex-shrink: 0;
  box-shadow: 0 14px 26px -8px rgba(30,90,168,.5);
}
.modal-icon svg { width: 34px; height: 34px; }
.modal-head h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
}
.modal-head .eyebrow { margin-bottom: 6px; }

.modal-body p {
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--ink-2);
  font-size: .98rem;
}
.modal-body .lead-stat {
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--tint);
  padding: 16px 20px;
  border-radius: 12px;
  border-left: 4px solid var(--blue-500);
  margin: 0 0 22px;
}
.modal-section-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin: 26px 0 10px;
  padding-top: 6px;
  letter-spacing: -0.01em;
}
.modal-body .sub-service {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  margin: 14px 0;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.modal-body .sub-service:hover {
  transform: translateX(4px);
  border-color: var(--blue-300);
  box-shadow: var(--shadow-sm);
}
.modal-body .sub-service h4 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--blue-700);
}
.modal-body .sub-service p {
  margin: 0;
  font-size: .94rem;
}
.modal-cta {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.modal-cta .btn { flex: 0 1 auto; }

/* lock body scroll when modal open */
body.modal-open { overflow: hidden; }

@media (max-width: 720px) {
  .modal { padding: 12px; }
  .modal-panel { padding: 32px 22px 28px; max-height: 92vh; }
  .modal-head { gap: 16px; padding-bottom: 20px; margin-bottom: 20px; }
  .modal-icon { width: 56px; height: 56px; }
  .modal-icon svg { width: 28px; height: 28px; }
}

/* ---------- FLOATING CTA ---------- */
.float-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: var(--grad);
  color: var(--white);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 12px 24px rgba(30,90,168,.4);
  z-index: 90;
  transition: transform .25s;
}
.float-cta:hover { transform: scale(1.1); }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid      { grid-template-columns: repeat(2, 1fr); }
  .process-grid  { grid-template-columns: repeat(2, 1fr); }
  .t-grid        { grid-template-columns: 1fr; }
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-visual   { height: 380px; margin-top: 20px; }
  .about-inner   { grid-template-columns: 1fr; }
  .coverage-inner{ grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .quickbar-card { grid-template-columns: 1fr 1fr; }
  .quickbar-btn  { grid-column: 1 / -1; }
  .contact-grid  { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  h1 { font-size: 2rem; }
  .topbar { display: none; }

  /* About bento → single column stack */
  .about-bento {
    grid-template-columns: 1fr 1fr;
  }
  .bento-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 240px;
  }
  .bento-badge { grid-column: 1 / -1; }
  .logo img { height: 70px; }
  .nav {
    position: fixed; top: 96px; left: 0; right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform .35s ease;
    box-shadow: var(--shadow);
  }
  .nav a { padding: 12px 8px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .nav.open { transform: translateY(0); }
  .nav-cta { margin-top: 10px; text-align: center; }
  .burger { display: block; }

  .hero { padding: 50px 0 70px; }
  .hero-stats { gap: 18px; }
  .services-grid, .why-grid, .process-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .quickbar-card { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .contact-form .row { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; padding: 44px 24px; }
  .globe-core { width: 180px; height: 180px; }
  .globe-ring  { width: 280px; height: 280px; }
  .globe-ring.r2 { width: 360px; height: 360px; }
}
