/* ==========================================================================
   RESET & TOKENS
   ========================================================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue: #004F9F;
  --blue-dark: #003B78;
  --blue-hover: #0060BF;
  --blue-light: rgba(0, 79, 159, 0.07);
  --blue-muted: rgba(0, 79, 159, 0.04);

  --dark: #0B1929;
  --dark-2: #101F33;
  --dark-3: #060E1A;

  --light: #FFFFFF;
  --light-2: #F4F6FA;
  --light-3: #E8ECF2;

  --text: #1A1A2E;
  --text-2: #5A6B7D;
  --text-3: #8A95A3;
  --text-inv: rgba(255, 255, 255, 0.92);
  --text-inv-2: rgba(255, 255, 255, 0.58);
  --text-inv-3: rgba(255, 255, 255, 0.55);

  --border: rgba(0, 79, 159, 0.10);
  --border-hover: rgba(0, 79, 159, 0.28);
  --border-inv: rgba(255, 255, 255, 0.08);
  --border-inv-hover: rgba(255, 255, 255, 0.18);

  --nav-bg: rgba(11, 25, 41, 0.95);
  --nav-border: rgba(255, 255, 255, 0.08);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 9999px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* Inline SVG icon */
.icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  fill: currentColor;
  vertical-align: -0.125em;
  flex-shrink: 0;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.5rem;
  display: block;
}
.label--inv { color: var(--text-inv-2); }

/* ==========================================================================
   SCROLL PROGRESS
   ========================================================================== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  width: 0%;
  z-index: 9999;
  transition: width 0.1s linear;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.hdr {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 1200px;
  z-index: 200;
  padding: 0.35rem 0.5rem 0.35rem 0.5rem;
  border-radius: var(--radius-lg);
  background: transparent;
  border: 1px solid transparent;
  transition:
    max-width 0.5s var(--ease),
    border-radius 0.5s var(--ease),
    background 0.45s var(--ease),
    border-color 0.35s ease-out,
    padding 0.35s ease-out;
}

.hdr.scrolled {
  max-width: 860px;
  border-radius: var(--radius-pill);
  background: linear-gradient(
    135deg,
    rgba(15, 25, 45, 0.78) 0%,
    rgba(10, 18, 35, 0.85) 50%,
    rgba(15, 25, 45, 0.80) 100%
  );
  -webkit-backdrop-filter: blur(32px) saturate(1.8) brightness(0.95);
  backdrop-filter: blur(32px) saturate(1.8) brightness(0.95);
  border-color: rgba(255, 255, 255, 0.12);
  border-top-color: rgba(255, 255, 255, 0.20);
  border-bottom-color: rgba(255, 255, 255, 0.05);
  padding: 0.3rem 1rem;
}

.hdr.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.06) 0%,
    transparent 40%
  );
  pointer-events: none;
}

.hdr.scrolled::after {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
  border-radius: var(--radius-pill);
  pointer-events: none;
}

.hdr__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

/* SVG Logo */
.logo { display: block; fill: currentColor; }
.logo--white { color: #fff; }
.logo--blue { color: var(--blue); }
.logo--inv { color: var(--text-inv-2); }

.hdr__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.hdr__logo .logo {
  height: 30px;
  width: auto;
}

/* Nav */
.hdr__nav { display: none; gap: 2px; position: relative; }
.hdr__nav a {
  color: var(--text-inv);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-pill);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.hdr__nav a:hover { color: #fff; }
.hdr__nav a.active { color: #fff; font-weight: 600; }

/* iOS 26 Liquid Glass indicator */
.hdr__glass {
  position: absolute;
  top: 50%;
  left: 0;
  height: 34px;
  transform: translateY(-50%);
  border-radius: var(--radius-pill);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.05) 40%,
    rgba(255, 255, 255, 0.08) 100%
  );
  -webkit-backdrop-filter: blur(28px) saturate(1.8) brightness(1.1);
  backdrop-filter: blur(28px) saturate(1.8) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-top-color: rgba(255, 255, 255, 0.32);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  will-change: left, width, opacity;
}
.hdr__glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    transparent 70%
  );
}
.hdr__glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.35), transparent);
  border-radius: var(--radius-pill);
}
.hdr__right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hdr__lang {
  display: flex;
  gap: 1px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-pill);
  padding: 2px;
  position: relative;
}
.hdr__lang a {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-inv-2);
  padding: 0.25rem 0.5rem;
  border-radius: var(--radius-pill);
  transition: color 0.3s var(--ease);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.hdr__lang a:hover { color: #fff; }
.hdr__lang a.active { color: var(--text-inv); font-weight: 700; }
.hdr__lang-glass {
  position: absolute;
  top: 50%;
  left: 0;
  height: calc(100% - 4px);
  transform: translateY(-50%);
  border-radius: var(--radius-pill);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.14) 0%,
    rgba(255, 255, 255, 0.06) 40%,
    rgba(255, 255, 255, 0.10) 100%
  );
  -webkit-backdrop-filter: blur(28px) saturate(1.8) brightness(1.1);
  backdrop-filter: blur(28px) saturate(1.8) brightness(1.1);
  border: 1px solid rgba(255, 255, 255, 0.20);
  border-top-color: rgba(255, 255, 255, 0.35);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  pointer-events: none;
  z-index: 0;
  will-change: left, width;
}
.hdr__lang-glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.04) 35%,
    transparent 70%
  );
}
.hdr__lang-glass::after {
  content: '';
  position: absolute;
  top: 0;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  border-radius: var(--radius-pill);
}

.hdr__burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  color: var(--text-inv);
  font-size: 1rem;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: background 0.15s var(--ease);
}
.hdr__burger:hover { background: rgba(255,255,255,0.08); }

/* Mobile menu */
.mob-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 299;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease-out;
}
.mob-overlay.on { opacity: 1; pointer-events: auto; }

.mob-menu {
  position: fixed;
  top: 0; right: -100%;
  width: 80%; max-width: 300px;
  height: 100dvh;
  background: var(--dark);
  z-index: 300;
  padding: 4.5rem 1.5rem 2rem;
  transition: right 0.35s var(--ease);
  border-left: 1px solid var(--border-inv);
}
.mob-menu.on { right: 0; }

.mob-menu__close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  color: var(--text-inv);
  font-size: 1.2rem;
  cursor: pointer;
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-pill);
  transition: background 0.15s var(--ease);
}
.mob-menu__close:hover { background: rgba(255,255,255,0.06); }

.mob-menu__nav { display: flex; flex-direction: column; gap: 4px; }
.mob-menu__nav a {
  color: var(--text-inv);
  font-size: 1rem;
  font-weight: 400;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius-md);
  transition: background 0.15s var(--ease);
}
.mob-menu__nav a:hover { background: rgba(255,255,255,0.05); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 7rem 1.25rem 6rem;
  color: var(--text-inv);
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 94%, 0 100%);
}

/* Animated gradient background */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,79,159,0.25) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0,60,120,0.15) 0%, transparent 50%),
    linear-gradient(160deg, #060E1A 0%, #0B1929 25%, #0F2744 50%, #004F9F 100%);
  animation: heroShift 12s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroShift {
  0% { filter: hue-rotate(0deg) brightness(1); }
  100% { filter: hue-rotate(-8deg) brightness(1.05); }
}

/* Dot grid overlay */
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  z-index: 1;
}

/* Hero image - right side, fades into gradient */
.hero__image {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 1;
  background: url('../img/hero/warehouse.webp') center/cover no-repeat;
}
.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, var(--dark) 0%, rgba(11,25,41,0.8) 25%, rgba(0,50,110,0.4) 70%, rgba(0,79,159,0.25) 100%),
    linear-gradient(to top, var(--dark) 0%, transparent 30%);
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__cta {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__heading {
  font-size: clamp(1.8rem, 5.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: clamp(0.92rem, 1.8vw, 1.1rem);
  color: var(--text-inv-2);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.hero__stats {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-bottom: 2.5rem;
  flex-wrap: nowrap;
}

.hero__stat {
  text-align: center;
}
.hero__stat-num {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--text-inv);
  line-height: 1;
}
.hero__stat-label {
  font-size: 0.72rem;
  color: var(--text-inv-2);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
}
.btn--primary {
  background: var(--light);
  color: var(--blue);
}
.btn--primary:hover {
  background: var(--light-2);
  transform: translateY(-1px);
}
.btn--blue {
  background: var(--blue);
  color: var(--light);
}
.btn--blue:hover {
  background: var(--blue-hover);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--light);
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn--outline:hover {
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-1px);
}
.btn .icon { font-size: 0.8rem; transition: transform 0.2s var(--ease); }
.btn:hover .icon { transform: translateX(2px); }

.hero__scroll {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-inv-2);
  font-size: 1.1rem;
  animation: scrollBounce 2.5s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.3; }
  50% { transform: translateX(-50%) translateY(10px); opacity: 0.8; }
}

/* ==========================================================================
   BENTO GRID
   ========================================================================== */
.bento {
  padding: 4rem 0 5rem;
  margin-top: -5vw;
  position: relative;
  z-index: 2;
}

.bento__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.bento__head h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bento__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* Tile shared */
.tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-left: 4px solid var(--blue);
  background: var(--light);
  transition: border-color 0.25s var(--ease), transform 0.3s var(--ease);
}
.tile:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.tile__icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  color: var(--blue);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.tile h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.tile p {
  font-size: 0.85rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.tile__link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  transition: gap 0.2s var(--ease);
}
.tile__link:hover { gap: 9px; }
.tile__link .icon { font-size: 0.7rem; }

/* Featured tile */
.tile--feat {
  background:
    linear-gradient(180deg, rgba(0,30,70,0.85) 0%, rgba(0,50,110,0.55) 50%, rgba(0,79,159,0.35) 100%),
    url('../img/grid/truck.webp') center/cover no-repeat;
  border: 1px solid var(--border-inv);
  border-left: 4px solid rgba(255,255,255,0.15);
  color: var(--text-inv);
  position: relative;
  overflow: hidden;
}
.tile--feat:hover { border-color: var(--border-inv-hover); }
.tile--feat .tile__icon { color: #fff; background: rgba(255,255,255,0.08); }
.tile--feat h3 { color: #fff; font-size: 1.35rem; }
.tile--feat p { color: var(--text-inv-2); }
.tile--feat .tile__link { color: rgba(255,255,255,0.75); }
.tile--feat .tile__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-inv-3);
  margin-bottom: 0.75rem;
}
.tile--feat .tile__icon { font-size: 1.5rem; width: 52px; height: 52px; }

/* Stats tile */
.tile--stats {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.tile__num {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.tile__num-label {
  font-size: 0.82rem;
  color: var(--text-2);
  font-weight: 400;
}
.tile__num-sub {
  font-size: 0.78rem;
  color: var(--text-3);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* About tile */
.tile--about { position: relative; }
.tile--about .wmark {
  position: absolute;
  bottom: -0.2em;
  right: 1rem;
  font-size: 5.5rem;
  font-weight: 800;
  color: var(--blue);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* CTA tile */
.tile--cta {
  background: var(--blue);
  border: none;
  border-left: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.tile--cta:hover { background: var(--blue-hover); }
.tile--cta::before { display: none; }
.tile--cta h3 { color: #fff; margin-bottom: 1rem; font-size: 1.1rem; }

/* ==========================================================================
   SKLADOVÁNÍ
   ========================================================================== */
.wh {
  background: var(--light-2);
  padding: 5rem 0;
}

.wh__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.wh__visual {
  border-radius: var(--radius-xl);
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(0,79,159,0.06), rgba(0,79,159,0.18));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.wh__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wh__visual .icon { font-size: 3.5rem; color: var(--blue); opacity: 0.12; }
.wh__visual-tag {
  position: absolute;
  bottom: 0.75rem; left: 0.75rem;
  background: var(--blue);
  color: #fff;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  font-size: 0.68rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.01em;
}
.wh__visual .wh__visual-tag .icon { width: 0.65rem; height: 0.65rem; opacity: 1; font-size: 0.65rem; color: #fff; fill: currentColor; }

.wh__content h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.wh__content > p {
  color: var(--text-2);
  margin-bottom: 1.75rem;
  line-height: 1.7;
  font-size: 0.92rem;
}

.wh__feats { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.wh__feat {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.wh__feat-icon {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  color: var(--blue);
  font-size: 0.8rem;
}
.wh__feat h3 { font-size: 0.88rem; font-weight: 600; margin-bottom: 2px; }
.wh__feat p { font-size: 0.8rem; color: var(--text-2); line-height: 1.5; }

/* ==========================================================================
   TEAM
   ========================================================================== */
.team {
  padding: 5rem 0;
  background: var(--light);
}

.team__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.team__head h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.team__head p {
  color: var(--text-2);
  margin-top: 0.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.92rem;
}

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.team__card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  background: var(--light);
  transition: border-color 0.25s var(--ease), transform 0.3s var(--ease);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.team__card:hover {
  border-color: var(--border-hover);
  transform: translateY(-2px);
}

.team__avatar {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-light), rgba(0,79,159,0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--blue);
}

.team__info { flex: 1; min-width: 0; }
.team__info h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.team__info .team__role {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.team__contact a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-2);
  transition: color 0.15s var(--ease);
}
.team__contact a:hover { color: var(--blue); }
.team__contact .icon { width: 14px; text-align: center; font-size: 0.75rem; color: var(--blue); }

/* ==========================================================================
   CERTIFIKACE
   ========================================================================== */
.certs {
  background: var(--dark);
  padding: 4rem 0;
  color: var(--text-inv);
  text-align: center;
}
.certs h2 {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  font-weight: 700;
  margin-bottom: 2rem;
}
.certs__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}
.certs__item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-inv);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.03);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-inv-2);
  transition: border-color 0.2s var(--ease);
}
.certs__item:hover { border-color: var(--border-inv-hover); }
.certs__item .icon { color: var(--blue-hover); font-size: 0.85rem; }

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta {
  background: linear-gradient(180deg, var(--dark) 0%, #122A45 50%, #1A3A5C 100%);
  padding: 5rem 0;
  text-align: center;
  color: var(--text-inv);
}
.cta h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.cta p {
  color: var(--text-inv-2);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ftr {
  background: var(--dark-3);
  padding: 4rem 0 1.5rem;
  color: var(--text-inv-2);
  border-top: 1px solid var(--border-inv);
}

.ftr__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.ftr__brand .logo {
  margin-bottom: 0.75rem;
}
.ftr__brand p { font-size: 0.82rem; line-height: 1.65; max-width: 260px; }

.ftr h3 {
  color: var(--text-inv);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.75rem;
}
.ftr ul li { margin-bottom: 0.4rem; }
.ftr ul li a {
  font-size: 0.82rem;
  color: var(--text-inv-2);
  transition: color 0.15s var(--ease);
}
.ftr ul li a:hover { color: var(--text-inv); }

.ftr__ci {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
  font-size: 0.82rem;
}
.ftr__ci .icon { margin-top: 3px; color: var(--blue-hover); width: 14px; text-align: center; }

.ftr__social {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.25rem;
}
.ftr__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-inv);
  color: var(--text-inv-2);
  font-size: 0.85rem;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.ftr__social a:hover {
  color: #fff;
  border-color: var(--blue-hover);
  background: var(--blue-hover);
  transform: translateY(-2px);
}

.ftr__bot {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-inv);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-inv-3);
}
.ftr__bot a { color: var(--text-inv-3); transition: color 0.15s var(--ease); }
.ftr__bot a:hover { color: var(--text-inv-2); }

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.rv {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.rv.on {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 576px) {
  .bento__grid { grid-template-columns: repeat(2, 1fr); }
  .tile--feat { grid-column: span 2; }
  .wh__feats { grid-template-columns: repeat(2, 1fr); }
  .team__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .hdr__nav { display: flex; }
  .hdr__burger { display: none; }
  .wh__grid { grid-template-columns: 1fr 1fr; }
  .ftr__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .hero { justify-content: flex-start; text-align: left; padding-left: 6%; }
  .hero__image { display: block; }
  .hero__content { max-width: 520px; }
  .hero__sub { margin-left: 0; }
  .hero__stats { justify-content: flex-start; }
  .hero__cta { justify-content: flex-start; }

  .bento__grid { grid-template-columns: repeat(12, 1fr); }
  .tile--feat {
    grid-column: span 8;
    grid-row: span 2;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 360px;
  }
  .tile--feat h3 { font-size: 1.65rem; }
  .tile--stats { grid-column: span 4; }
  .tile--air { grid-column: span 4; }
  .tile--about { grid-column: span 4; grid-row: span 2; }
  .tile--group { grid-column: span 4; }
  .tile--cta { grid-column: span 4; }

  .team__grid { grid-template-columns: repeat(3, 1fr); }
  .ftr__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

@media (min-width: 1200px) {
  .hero__heading { font-size: 3.5rem; }
  .tile--feat { min-height: 400px; padding: 2.75rem; }
  .container { max-width: 1200px; }
}

@media (min-width: 1400px) {
  .container { max-width: 1320px; }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq {
  background: var(--light-2);
  padding: 5rem 0;
}
.faq__head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.faq__head h2 {
  font-size: clamp(1.4rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--light);
  overflow: hidden;
}
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  transition: background 0.15s var(--ease);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  border-right: 2px solid var(--text-2);
  border-bottom: 2px solid var(--text-2);
  transform: rotate(45deg);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq__item[open] summary::after {
  transform: rotate(-135deg);
}
.faq__item summary:hover {
  background: var(--blue-muted);
}
.faq__item .faq__answer {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.7;
}

/* ==========================================================================
   LEGAL / PRIVACY
   ========================================================================== */
.legal {
  padding: 8rem 0 5rem;
}
.legal h1 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.legal__updated {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-bottom: 2.5rem;
}
.legal h2 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.legal p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.legal ul {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
  list-style: disc;
}
.legal ul li {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 0.35rem;
}
.legal a {
  color: var(--blue);
  transition: color 0.15s var(--ease);
}
.legal a:hover { color: var(--blue-hover); }
.legal__back {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.legal__back a {
  font-weight: 600;
  font-size: 0.9rem;
}

/* ==========================================================================
   SKIP TO CONTENT
   ========================================================================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--blue);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus {
  top: 0;
}
