/* ==========================================================================
   Spedition WND GmbH -- V11 Production Stylesheet
   International Road Freight & Logistics
   All assets local — no CDN dependencies
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. LOCAL FONT FACES
   -------------------------------------------------------------------------- */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-400.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-500.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/jakarta-600.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/jakarta-700.woff2') format('woff2');
}

@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/jakarta-800.woff2') format('woff2');
}

@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/jetbrains-700.woff2') format('woff2');
}

/* --------------------------------------------------------------------------
   1. CUSTOM PROPERTIES (DESIGN TOKENS)
   -------------------------------------------------------------------------- */

:root {
  /* Colors — Primary (lighter blue scheme) */
  --primary: #1E3A5F;
  --primary-800: #254A75;
  --primary-700: #2D5A8A;
  --primary-600: #3B6FA0;
  --secondary: #334155;

  /* Colors — Accent */
  --accent: #E8590C;
  --accent-light: #FFF1E6;
  --accent-hover: #D14E0A;

  /* Colors — Neutral */
  --steel: #64748B;
  --steel-light: #94A3B8;
  --light: #F8FAFC;
  --lighter: #F1F5F9;
  --white: #FFFFFF;

  /* Colors — Text */
  --text: #1A2332;
  --text-secondary: #4A5568;
  --text-muted: #94A3B8;

  /* Colors — Borders & Dividers */
  --border: #E2E8F0;
  --border-dark: #CBD5E1;
  --divider: rgba(255, 255, 255, 0.12);

  /* Colors — Semantic */
  --success: #059669;

  /* Typography — Families */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Typography — Sizes (set via clamp in selectors) */
  --fs-display: clamp(2.75rem, 6vw, 4.25rem);
  --fs-h1: clamp(2.25rem, 4.5vw, 3.25rem);
  --fs-h2: clamp(1.75rem, 3.5vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-h4: 1.125rem;
  --fs-body-lg: 1.125rem;
  --fs-body: 1rem;
  --fs-body-sm: 0.9375rem;
  --fs-caption: 0.8125rem;
  --fs-overline: 0.6875rem;

  /* Spacing Scale */
  --sp-1: 4px;
  --sp-1h: 6px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-14: 56px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-30: 120px;
  --sp-40: 160px;

  /* Container */
  --container-max: 1240px;
  --container-pad: 20px;

  /* Header */
  --header-h: 64px;

  /* Transitions */
  --ease-out: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.12);

  /* Hero (light editorial) */
  --hero-bg: #F7F9FB;
  --hero-text-secondary: #526580;
  --hero-card-bg: #FFFFFF;
  --hero-card-border: #EDF1F5;
  --hero-card-shadow: 0 1px 3px rgba(30, 58, 95, 0.035);
  --hero-grid-line: rgba(30, 58, 95, 0.014);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 8px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  --radius-2xl: 14px;
  --radius-3xl: 16px;
}

@media (min-width: 768px) {
  :root {
    --container-pad: 32px;
  }
}

@media (min-width: 1024px) {
  :root {
    --header-h: 72px;
    --container-pad: 40px;
  }
}


/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--white);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

::selection {
  background-color: var(--accent);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  width: 100%;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}


/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text);
  line-height: 1.2;
}

h1 {
  font-size: var(--fs-h1);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
}

h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  line-height: 1.25;
}

h4 {
  font-size: var(--fs-h4);
  font-weight: 600;
  line-height: 1.3;
}

h5 {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

h6 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

p {
  margin-bottom: 16px;
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

.lead {
  font-size: var(--fs-body-lg);
  line-height: 1.7;
  color: var(--text-secondary);
}

.overline {
  font-family: var(--font-heading);
  font-size: var(--fs-overline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.text-balance {
  text-wrap: balance;
}


/* --------------------------------------------------------------------------
   4. CONTAINER & LAYOUT
   -------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}


/* --------------------------------------------------------------------------
   5. SECTIONS
   -------------------------------------------------------------------------- */

.section {
  padding: 80px 0;
}

.section--dark {
  background-color: var(--primary);
  color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--light {
  background-color: var(--lighter);
}

.section--accent {
  background-color: var(--accent);
  color: var(--white);
}

.section--accent h2,
.section--accent h3 {
  color: var(--white);
}

.section--compact {
  padding: 56px 0;
}

.section--flush {
  padding-top: 0;
}

@media (min-width: 1024px) {
  .section {
    padding: 120px 0;
  }

  .section--compact {
    padding: 80px 0;
  }
}


/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  white-space: nowrap;
  -webkit-user-select: none;
  user-select: none;
}

.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Primary */
.btn--primary {
  background-color: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn--primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 14px rgba(232, 89, 12, 0.25);
}

/* Secondary */
.btn--secondary {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn--secondary:hover {
  background-color: var(--primary-800);
  border-color: var(--primary-800);
}

/* Outline */
.btn--outline {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border-dark);
}

.btn--outline:hover {
  background-color: var(--lighter);
  border-color: var(--border-dark);
}

/* Outline Light (for dark backgrounds) */
.btn--outline-light {
  background-color: transparent;
  color: var(--white);
  border-color: var(--divider);
}

.btn--outline-light:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Ghost */
.btn--ghost {
  background-color: transparent;
  color: var(--accent);
  border-color: transparent;
  padding-left: 4px;
  padding-right: 4px;
}

.btn--ghost:hover {
  background-color: var(--accent-light);
}

/* Size Variants */
.btn--lg {
  padding: 16px 36px;
  font-size: 1rem;
}

.btn--sm {
  padding: 10px 18px;
  font-size: var(--fs-caption);
}

.btn--full {
  width: 100%;
}

/* Button Icon */
.btn__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: currentColor;
}

.btn__icon svg {
  width: 100%;
  height: 100%;
}


/* --------------------------------------------------------------------------
   7. HEADER
   -------------------------------------------------------------------------- */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  transition: background-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  will-change: transform;
}

.header.is-scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Logo */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  z-index: 1001;
}

.header__logo-mark {
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.header__logo-text {
  display: flex;
  flex-direction: column;
}

.header__logo-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.15;
}

.header__logo-sub {
  font-size: 0.625rem;
  font-weight: 500;
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

/* Dark header logo overrides */
.header--dark .header__logo-mark {
  background-color: var(--accent);
}

.header--dark .header__logo-name {
  color: var(--white);
}

.header--dark .header__logo-sub {
  color: var(--steel-light);
}

.header--dark:not(.is-scrolled) .header__nav-item > a {
  color: rgba(255, 255, 255, 0.7);
}

.header--dark:not(.is-scrolled) .header__nav-item > a:hover {
  color: var(--white);
  background-color: rgba(255, 255, 255, 0.06);
}

.header--dark:not(.is-scrolled) .header__nav-item.is-active > a {
  color: var(--accent);
}

.header--dark:not(.is-scrolled) .header__lang-toggle {
  color: rgba(255, 255, 255, 0.7);
}

.header--dark:not(.is-scrolled) .header__burger span {
  background-color: var(--white);
}

.header--dark.is-scrolled .header__logo-mark {
  background-color: var(--primary);
}

.header--dark.is-scrolled .header__logo-name {
  color: var(--primary);
}

.header--dark.is-scrolled .header__logo-sub {
  color: var(--steel);
}

/* Desktop Nav */
.header__nav {
  display: none;
}

.header__nav-list {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__nav-item {
  position: relative;
}

.header__nav-item > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: var(--fs-caption);
  font-weight: 500;
  color: var(--secondary);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all 0.15s var(--ease-out);
}

.header__nav-item > a:hover {
  background-color: var(--lighter);
  color: var(--text);
}

.header__nav-item.is-active > a {
  color: var(--accent);
  font-weight: 600;
}

/* Chevron */
.header__chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.2s var(--ease-out);
  flex-shrink: 0;
  opacity: 0.5;
}

.header__nav-item--dropdown:hover .header__chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.header__dropdown {
  position: absolute;
  top: 100%;
  left: -12px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 6px;
  min-width: 240px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s var(--ease-out);
  pointer-events: none;
  z-index: 100;
  margin-top: 4px;
}

/* Invisible bridge to prevent gap between link and dropdown */
.header__nav-item--dropdown::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 12px;
}

.header__nav-item--dropdown:hover .header__dropdown,
.header__nav-item--dropdown.is-open .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header__dropdown a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s var(--ease-out);
}

.header__dropdown a:hover {
  background-color: var(--lighter);
  color: var(--text);
}

.header__dropdown-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--steel);
}

/* Header Actions */
.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Language Selector */
.header__lang {
  position: relative;
}

.header__lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--secondary);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all 0.15s var(--ease-out);
  border: none;
  background: none;
}

.header__lang-toggle:hover {
  background-color: var(--lighter);
}

.header__lang-chevron {
  width: 10px;
  height: 10px;
  opacity: 0.5;
  transition: transform 0.2s var(--ease-out);
}

.header__lang.is-open .header__lang-chevron {
  transform: rotate(180deg);
}

.header__lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 6px;
  min-width: 160px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: all 0.2s var(--ease-out);
  pointer-events: none;
  z-index: 100;
  list-style: none;
}

.header__lang.is-open .header__lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.header__lang-dropdown li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8125rem;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s var(--ease-out);
}

.header__lang-dropdown li a:hover {
  background-color: var(--lighter);
  color: var(--text);
}

.header__lang-dropdown li.is-active a {
  color: var(--accent);
  font-weight: 600;
  background-color: var(--accent-light);
}

/* CTA button in header */
.header__cta {
  display: none;
}

/* Burger Menu */
.header__burger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
  z-index: 1001;
}

.header__burger span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--secondary);
  border-radius: 2px;
  transition: all 0.3s var(--ease-smooth);
  transform-origin: center;
}

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

.header__burger.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

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

/* Desktop show/hide */
@media (min-width: 1024px) {
  .header__nav {
    display: flex;
  }

  .header__cta {
    display: inline-flex;
  }

  .header__burger {
    display: none;
  }
}

/* Mobile Menu */
.header__mobile {
  position: fixed;
  top: var(--header-h, 72px);
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-h, 72px));
  height: calc(100dvh - var(--header-h, 72px));
  background-color: var(--white);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 24px 20px 24px;
  display: flex;
  flex-direction: column;
}

.header__mobile.is-open {
  opacity: 1;
  visibility: visible;
}

.header__mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.header__mobile-nav > ul > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.header__mobile-toggle {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--steel);
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.2s var(--ease-out);
  flex-shrink: 0;
}

.header__mobile-toggle.is-open {
  transform: rotate(180deg);
}

.header__mobile-sub {
  display: none;
  padding-left: 8px;
}

.header__mobile-sub.is-open {
  display: block;
}

.header__mobile-sub a {
  display: block;
  padding: 12px 0;
  font-size: 0.9375rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

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

.header__mobile-lang {
  display: flex;
  gap: 8px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.header__mobile-lang-item {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: var(--fs-caption);
  font-weight: 600;
  background-color: var(--lighter);
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s var(--ease-out);
}

.header__mobile-lang-item.is-active {
  background-color: var(--primary);
  color: var(--white);
}

.header__mobile-cta {
  padding: 20px;
  margin-top: auto;
  border-top: 1px solid var(--border);
  background-color: var(--white);
}


/* --------------------------------------------------------------------------
   8. HERO
   -------------------------------------------------------------------------- */

.hero {
  background-color: var(--hero-bg);
  color: var(--text);
  min-height: auto;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--header-h) + 24px);
  padding-bottom: 40px;
}

@media (min-width: 1024px) {
  .hero {
    padding-top: calc(var(--header-h) + 60px);
    padding-bottom: 60px;
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__overline {
  font-family: var(--font-heading);
  font-size: var(--fs-overline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero__overline::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background-color: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--primary);
  margin-bottom: 24px;
}

.hero__lead {
  font-size: clamp(1.0625rem, 1.8vw, 1.1875rem);
  color: var(--hero-text-secondary);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 480px;
  letter-spacing: -0.005em;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Hero inline stats — compact trust indicators below CTAs */
.hero__stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
}

.hero__stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  padding: 0 24px;
  border-right: 1px solid var(--hero-card-border);
}

.hero__stat:first-child {
  padding-left: 0;
}

.hero__stat:last-child {
  border-right: none;
}

.hero__stat-sep {
  display: none; /* semantic separators hidden, CSS border handles it */
}

.hero__stat-value {
  font-family: var(--font-mono);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Hero visual (right column) */
.hero__visual {
  position: relative;
  display: none;
}

.hero__map-wrap {
  position: relative;
  width: 160%;
  margin-left: -35%;
  margin-top: -6%;
  margin-bottom: -6%;
  overflow: visible;
  /* Fade edges into hero background — wider left bleed for cross-column unity */
  -webkit-mask-image: radial-gradient(ellipse 85% 80% at 55% 46%, rgba(0,0,0,0.85) 15%, rgba(0,0,0,0.35) 50%, transparent 72%);
  mask-image: radial-gradient(ellipse 85% 80% at 55% 46%, rgba(0,0,0,0.85) 15%, rgba(0,0,0,0.35) 50%, transparent 72%);
}

.hero__map-base {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.12) brightness(1.0) contrast(0.95);
  opacity: 0.25;
  pointer-events: none;
}

.hero__map-routes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

/* Homepage route line animation */
.home-route {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.home-route.is-visible {
  opacity: 1;
}

.home-node {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.home-node.is-visible {
  opacity: 1;
}

/* Hero background decoration */
.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(255, 255, 255, 0.6), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero__bg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      var(--hero-grid-line) 59px,
      var(--hero-grid-line) 60px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      var(--hero-grid-line) 59px,
      var(--hero-grid-line) 60px
    );
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero {
    min-height: auto;
    padding-top: calc(var(--header-h) + 56px);
    padding-bottom: 56px;
  }

  .hero__grid {
    grid-template-columns: 5fr 4fr;
    gap: 40px;
    align-items: start;
  }

  .hero__visual {
    display: block;
  }
}


/* --------------------------------------------------------------------------
   9. SECTION HEADERS
   -------------------------------------------------------------------------- */

.section-header {
  margin-bottom: 56px;
}

.section-header--center {
  text-align: center;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.section-header--left {
  text-align: left;
}

.section-header__overline {
  font-family: var(--font-heading);
  font-size: var(--fs-overline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
}

.section--dark .section-header__overline {
  color: var(--accent);
}

.section-header h2 {
  margin-top: 12px;
  margin-bottom: 16px;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 560px;
}

.section--dark .section-header p {
  color: rgba(255, 255, 255, 0.6);
}

.section-header--center p {
  margin-left: auto;
  margin-right: auto;
}


/* --------------------------------------------------------------------------
   10. SERVICE CARDS
   -------------------------------------------------------------------------- */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.service-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  transition: all 0.25s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: var(--border-dark);
  box-shadow: var(--shadow-lg);
}

.service-card__number {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: var(--accent);
}

.service-card__icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}

.service-card__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 8px;
}

.service-card__desc {
  font-size: var(--fs-body-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.service-card__link {
  font-size: var(--fs-caption);
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s var(--ease-out);
}

.service-card__link::after {
  content: '\2192';
  transition: transform 0.2s var(--ease-out);
}

.service-card:hover .service-card__link::after {
  transform: translateX(4px);
}

/* Featured Service Card */
.service-card--featured {
  background-color: var(--primary-800);
  color: var(--white);
  border: none;
}

.service-card--featured .service-card__title {
  color: var(--white);
}

.service-card--featured .service-card__desc {
  color: rgba(255, 255, 255, 0.7);
}

.service-card--featured .service-card__number {
  color: rgba(255, 255, 255, 0.4);
}

.service-card--featured .service-card__link {
  color: var(--accent);
}

.service-card--featured .btn--outline {
  color: rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.25);
}

.service-card--featured .btn--outline:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  background-color: rgba(255, 255, 255, 0.08);
}

.service-card--featured::before {
  display: none;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    padding: 28px 32px;
  }
}

/* Featured card inner layout */
.service-card__body {
  display: flex;
  flex-direction: column;
}

.service-card__visual {
  display: flex;
  align-items: center;
}

.service-card__highlights {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card__highlights li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}

.service-card__highlights li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
  flex-shrink: 0;
}

/* 3-column services grid variant */
.services-grid--three {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 20px;
}

@media (min-width: 768px) {
  .services-grid--three {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service icon inside card */
.service-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--accent-light, rgba(232, 89, 12, 0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}

.service-card--featured .service-card__icon {
  background-color: rgba(255, 255, 255, 0.08);
  color: var(--accent);
}

/* Comparison guide */
.comparison-guide {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 768px) {
  .comparison-guide {
    grid-template-columns: repeat(2, 1fr);
  }
}

.comparison-guide__item {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
}

.comparison-guide__item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.comparison-guide__item p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

a.comparison-guide__item {
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

a.comparison-guide__item:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.comparison-guide__link {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--accent);
}

/* --------------------------------------------------------------------------
   11. PROCESS / HOW WE WORK (TIMELINE)
   -------------------------------------------------------------------------- */

.process__timeline {
  position: relative;
  padding-left: 40px;
}

.process__timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--border);
}

.process__step {
  position: relative;
  padding-bottom: 40px;
}

.process__step:last-child {
  padding-bottom: 0;
}

.process__step-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--white);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: -40px;
  top: 0;
  z-index: 2;
}

.process__step-marker span {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--accent);
}

.process__step.is-active .process__step-marker {
  background-color: var(--accent);
  border-color: var(--accent);
}

.process__step.is-active .process__step-marker span {
  color: var(--white);
}

.process__step-content {
  padding-top: 10px;
}

.process__step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 6px;
}

.process__step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Desktop: horizontal grid layout */
@media (min-width: 1024px) {
  .process__timeline {
    padding-left: 0;
  }

  .process__timeline::before {
    display: none;
  }

  .process__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
  }

  .process__grid::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--border);
  }

  .process__step {
    position: relative;
    padding: 0 24px;
    padding-bottom: 0;
  }

  .process__step-marker {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 20px;
  }
}


/* --------------------------------------------------------------------------
   12. COVERAGE / EUROPEAN MAP
   -------------------------------------------------------------------------- */

.coverage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.coverage__text {
  position: relative;
  z-index: 2;
}

.coverage__intro {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.7;
}

.coverage__corridors {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.coverage__corridor {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background-color: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius-md);
  border: 1px solid var(--divider);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.2s var(--ease-out);
}

.coverage__corridor:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
}

/* Flag icon & pair styles (local PNG flags) */
.flag-icon {
  display: inline-block;
  vertical-align: middle;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(0,0,0,.08);
}

.flag-pair {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.coverage__corridor-flag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  min-width: 44px;
  width: 44px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  overflow: hidden;
}

.coverage__corridor-name {
  font-weight: 500;
}

.coverage__map {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coverage__map-inner {
  position: relative;
  width: 100%;
  min-height: 350px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.coverage__map-base {
  width: 130%;
  height: auto;
  margin: -10% 0 0 -15%;
  filter: brightness(0.18) contrast(1.4) saturate(0);
  opacity: 0.45;
  pointer-events: none;
}

.coverage__map-svg,
.coverage__map-img {
  width: 100%;
  height: auto;
  max-height: 460px;
  opacity: 0.85;
}

@media (min-width: 1024px) {
  .coverage__grid {
    grid-template-columns: 7fr 5fr;
    gap: 64px;
  }
}


/* --------------------------------------------------------------------------
   13. INDUSTRIES
   -------------------------------------------------------------------------- */

.industries-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.industry-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background-color: var(--white);
  border: 1px solid var(--border);
  transition: all 0.2s var(--ease-out);
}

.industry-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.industry-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.industry-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 4px;
}

.industry-card__tag {
  font-size: 0.6875rem;
  color: var(--text-muted, #94A3B8);
  line-height: 1.4;
  margin-top: 2px;
}

.industry-card__tag {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Industry Detail Card (for detail pages) */
.industry-detail-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  transition: all 0.2s var(--ease-out);
}

.industry-detail-card:hover {
  box-shadow: var(--shadow-md);
}

.industry-detail-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.industry-detail-card__content h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.industry-detail-card__content p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* --------------------------------------------------------------------------
   14. WHY US / TRUST
   -------------------------------------------------------------------------- */

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.trust-card {
  padding: 28px;
  border-left: 3px solid var(--accent);
  background-color: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  transition: all 0.2s var(--ease-out);
}

.trust-card:hover {
  box-shadow: var(--shadow-md);
}

.trust-card__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 6px;
}

.trust-card__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Alternating trust blocks (editorial layout) */
.trust-section {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.trust-block {
  margin-bottom: 0;
}

.trust-block__label {
  font-family: var(--font-heading);
  font-size: var(--fs-overline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}

.trust-block__title {
  font-family: var(--font-heading);
  font-size: var(--fs-h3);
  font-weight: 700;
  margin-bottom: 12px;
}

.trust-block__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.trust-block__list {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}

.trust-block__list li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.trust-block__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 2px;
  background-color: var(--accent);
}

@media (min-width: 1024px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-section {
    grid-template-columns: 2fr 3fr;
    gap: 80px;
  }

  .trust-block:nth-child(even) {
    direction: ltr;
  }
}


/* --------------------------------------------------------------------------
   15. CTA BANNERS
   -------------------------------------------------------------------------- */

/* Standard Accent CTA Banner */
.cta-banner {
  background-color: var(--accent);
  border-radius: var(--radius-3xl);
  padding: 48px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 30px,
    rgba(255, 255, 255, 0.02) 30px,
    rgba(255, 255, 255, 0.02) 60px
  );
  pointer-events: none;
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2rem);
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn--secondary {
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .cta-banner {
    padding: 56px 48px;
  }
}

/* Inline CTA (horizontal, not banner) */
.cta-inline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: var(--lighter);
  padding: 28px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
}

.cta-inline__text {
  flex: 1;
}

.cta-inline__text h3 {
  margin-bottom: 4px;
}

.cta-inline__text p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .cta-inline {
    flex-direction: row;
    align-items: center;
    padding: 32px;
  }
}

/* Dark CTA Banner */
.cta-dark {
  background-color: var(--primary);
  border-radius: var(--radius-3xl);
  padding: 48px 32px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-dark h2 {
  color: var(--white);
  margin-bottom: 12px;
}

.cta-dark p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .cta-dark {
    padding: 64px;
  }
}


/* --------------------------------------------------------------------------
   16. QUOTE PROMPT
   -------------------------------------------------------------------------- */

.quote-prompt {
  background-color: var(--lighter);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
}

.quote-prompt__title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.0625rem;
  margin-bottom: 16px;
}

.quote-prompt__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.quote-prompt__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.quote-prompt__item::before {
  content: '\2713';
  font-weight: 700;
  color: var(--accent);
  font-size: 0.875rem;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .quote-prompt__list {
    grid-template-columns: 1fr 1fr;
  }
}


/* --------------------------------------------------------------------------
   17. FORMS
   -------------------------------------------------------------------------- */

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

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

.form-input {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--fs-body-sm);
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text);
  transition: all 0.15s var(--ease-out);
}

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 89, 12, 0.08);
  outline: none;
}

.form-input::placeholder {
  color: var(--text-muted);
}

.form-select {
  display: block;
  width: 100%;
  padding: 11px 14px;
  padding-right: 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--fs-body-sm);
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text);
  transition: all 0.15s var(--ease-out);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8.5L1 3.5h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  cursor: pointer;
}

.form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 89, 12, 0.08);
  outline: none;
}

.form-textarea {
  display: block;
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: var(--fs-body-sm);
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text);
  transition: all 0.15s var(--ease-out);
  min-height: 100px;
  resize: vertical;
}

.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232, 89, 12, 0.08);
  outline: none;
}

.form-textarea::placeholder {
  color: var(--text-muted);
}

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

.form-section {
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.form-checkbox {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: var(--fs-caption);
  color: var(--text-secondary);
  line-height: 1.5;
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid var(--border-dark);
  appearance: none;
  flex-shrink: 0;
  margin-top: 1px;
  cursor: pointer;
  position: relative;
  transition: all 0.15s var(--ease-out);
}

.form-checkbox input[type="checkbox"]:checked {
  background-color: var(--accent);
  border-color: var(--accent);
}

.form-checkbox input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 5px;
  width: 5px;
  height: 8px;
  border: 2px solid var(--white);
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

.form-checkbox input[type="checkbox"]:focus-visible {
  box-shadow: 0 0 0 3px rgba(232, 89, 12, 0.12);
}

.form-actions {
  margin-top: 24px;
}

.form-note {
  font-size: var(--fs-caption);
  color: var(--text-muted);
  margin-top: 8px;
}

.form-input.is-error,
.form-textarea.is-error,
.form-select.is-error {
  border-color: #DC2626;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.form-checkbox.is-error {
  color: #DC2626;
}

.btn.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

.form-success {
  padding: 16px;
  background-color: rgba(5, 150, 105, 0.06);
  border: 1px solid var(--success);
  border-radius: var(--radius-md);
  color: var(--success);
  font-size: 0.9375rem;
  font-weight: 500;
  animation: fadeInUp 0.4s ease-out;
}

@media (min-width: 768px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}


/* --------------------------------------------------------------------------
   18. FAQ (ACCORDION)
   -------------------------------------------------------------------------- */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  border: none;
  background: transparent;
  text-align: left;
  gap: 16px;
  transition: color 0.15s var(--ease-out);
}

.faq-item__question:hover {
  color: var(--accent);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-item__icon span {
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: var(--accent);
  border-radius: 1px;
  transition: transform 0.25s var(--ease-out);
}

.faq-item__icon span:nth-child(2) {
  transform: rotate(90deg);
}

.faq-item.is-open .faq-item__icon span:nth-child(2) {
  transform: rotate(0deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease-smooth);
}

.faq-item.is-open .faq-item__answer {
  max-height: 600px;
}

.faq-item__answer-inner {
  padding: 0 0 20px 0;
  font-size: var(--fs-body-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}


/* --------------------------------------------------------------------------
   19. BLOG CARDS
   -------------------------------------------------------------------------- */

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.blog-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.2s var(--ease-out);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--border-dark);
}

.blog-card__img {
  aspect-ratio: 16 / 10;
  background-color: var(--primary-800);
  position: relative;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-card__category {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: var(--fs-overline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background-color: var(--white);
  color: var(--text);
  padding: 4px 10px;
  border-radius: 4px;
  line-height: 1.4;
}

.blog-card__body {
  padding: 24px;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.blog-card__title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 8px;
}

.blog-card__title a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.15s var(--ease-out);
}

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

.blog-card__excerpt {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Featured Blog Card */
.blog-card--featured {
  display: block;
}

.blog-card--featured .blog-card__img {
  aspect-ratio: 16 / 10;
  min-height: auto;
}

.blog-card--featured .blog-card__body {
  padding: 28px;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-card--featured {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .blog-card--featured .blog-card__img {
    aspect-ratio: auto;
    min-height: 320px;
  }

  .blog-card--featured .blog-card__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-card--featured {
    grid-column: span 2;
  }
}


/* --------------------------------------------------------------------------
   20. SERVICE DETAIL
   -------------------------------------------------------------------------- */

.service-hero {
  background-color: var(--hero-bg);
  min-height: auto;
  padding: 100px 0 60px;
  color: var(--text);
}

.service-hero h1 {
  color: var(--primary);
  margin-bottom: 16px;
}

.service-hero__sub {
  color: var(--hero-text-secondary);
  font-size: 1.0625rem;
  max-width: 560px;
  line-height: 1.7;
}

/* Blog article hero meta */
.blog-article__meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 16px;
}

.blog-article__meta-item {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  padding: 0 16px;
  border-right: 1px solid var(--hero-card-border);
}

.blog-article__meta-item:first-child {
  padding-left: 0;
}

.blog-article__meta-item:last-child {
  border-right: none;
}

.service-detail {
  padding: 80px 0;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.service-content__main {
  min-width: 0;
}

.service-content__main h2 {
  font-size: 1.375rem;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.service-content__main h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.service-content__main p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.service-content__main ul {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-content__main ul li {
  padding: 10px 0;
  padding-left: 20px;
  border-bottom: 1px solid var(--border);
  font-size: var(--fs-body-sm);
  color: var(--text-secondary);
  position: relative;
}

.service-content__main ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--accent);
}

/* Service Sidebar */
.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-sidebar__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.service-sidebar__card h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-sidebar__cta {
  margin-bottom: 16px;
}

.service-sidebar__cta .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 20px;
  font-size: 0.9375rem;
}

.service-sidebar__contact {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.service-sidebar__contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.15s ease;
}

.service-sidebar__contact a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.service-sidebar__contact a:hover {
  color: var(--accent-hover, #D14E0A);
}

/* Related services card */
.service-sidebar__card:last-child {
  background: var(--lighter, #F1F5F9);
  border: none;
  box-shadow: none;
}

.service-sidebar__related {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-sidebar__related li {
  border-bottom: 1px solid var(--border);
}

.service-sidebar__related li:last-child {
  border-bottom: none;
}

.service-sidebar__related li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.service-sidebar__related li a::after {
  content: '→';
  color: var(--text-muted, #94A3B8);
  font-size: 0.75rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.service-sidebar__related li a:hover {
  color: var(--accent);
}

.service-sidebar__related li a:hover::after {
  transform: translateX(3px);
  color: var(--accent);
}

@media (min-width: 1024px) {
  .service-content {
    grid-template-columns: 7fr 3fr;
    gap: 40px;
  }

  .service-sidebar {
    position: sticky;
    top: 96px;
  }
}

@media (max-width: 1023px) {
  .service-sidebar {
    margin-top: 32px;
  }

  .service-sidebar__card {
    padding: 24px 20px;
  }
}


/* --------------------------------------------------------------------------
   21. ROUTES PAGE
   -------------------------------------------------------------------------- */

.routes-intro {
  max-width: 720px;
  margin-bottom: 48px;
}

.routes-intro p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.routes-group {
  margin-bottom: 48px;
}

.routes-group:last-child {
  margin-bottom: 0;
}

.routes-group__title {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.routes-group__desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 640px;
}

.routes-intro {
  max-width: 720px;
}

.routes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.route-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all 0.2s var(--ease-out);
  text-decoration: none;
}

.route-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.route-card__flags {
  font-size: 1rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  min-width: 50px;
  width: 50px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  overflow: hidden;
}

.route-card__info {
  flex: 1;
  min-width: 0;
}

.route-card__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--fs-body-sm);
  color: var(--text);
}

.route-card__services {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.route-card__arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  transition: all 0.2s var(--ease-out);
}

.route-card:hover .route-card__arrow {
  transform: translateX(3px);
  color: var(--accent);
}

@media (min-width: 768px) {
  .routes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .routes-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* --------------------------------------------------------------------------
   22. CONTACT PAGE
   -------------------------------------------------------------------------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.contact-form {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-2xl);
  padding: 28px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info__card {
  background-color: var(--lighter);
  border-radius: var(--radius-xl);
  padding: 24px;
}

.contact-info__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 12px 0;
}

.contact-info__item:not(:last-child) {
  border-bottom: 1px solid var(--border);
}

.contact-info__item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info__item strong {
  display: block;
  font-size: var(--fs-overline);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-info__item a,
.contact-info__item span {
  font-size: var(--fs-body-sm);
  color: var(--text);
  text-decoration: none;
}

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

.contact-info__hours {
  background-color: var(--primary);
  border-radius: var(--radius-xl);
  padding: 24px;
  color: var(--white);
}

.contact-info__hours h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.contact-info__hours p {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 768px) {
  .contact-form {
    padding: 36px;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 5fr 3fr;
  }
}


/* --------------------------------------------------------------------------
   23. LEGAL PAGES
   -------------------------------------------------------------------------- */

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  font-size: 1.375rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 1.125rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.legal-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.legal-content strong {
  color: var(--text);
  font-weight: 600;
}

.legal-content table {
  width: 100%;
  margin-bottom: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.legal-content th,
.legal-content td {
  padding: 10px 14px;
  text-align: left;
  font-size: var(--fs-body-sm);
  border-bottom: 1px solid var(--border);
}

.legal-content th {
  background-color: var(--lighter);
  font-weight: 600;
  color: var(--text);
}


/* --------------------------------------------------------------------------
   24. ERROR PAGE
   -------------------------------------------------------------------------- */

.error-page {
  text-align: center;
  padding: 120px 20px;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-page__code {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.error-page h1 {
  margin-bottom: 12px;
}

.error-page p {
  color: var(--text-secondary);
  font-size: 1.0625rem;
  margin-bottom: 32px;
  max-width: 400px;
}


/* --------------------------------------------------------------------------
   25. FOOTER
   -------------------------------------------------------------------------- */

.footer {
  background-color: var(--primary);
  color: var(--white);
  padding-top: 80px;
}

.footer__top {
  padding-bottom: 48px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.footer__brand {
  max-width: 400px;
}

.footer__brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 0;
}

.footer__brand-logo .header__logo-mark {
  background-color: var(--accent);
}

.footer__brand-logo .header__logo-name {
  color: var(--white);
}

.footer__brand-logo .header__logo-sub {
  color: var(--steel-light);
}

.footer__brand-desc {
  font-size: var(--fs-body-sm);
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-top: 16px;
}

.footer__cta {
  text-align: left;
}

.footer__cta p {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer__col {
  min-width: 0;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--fs-overline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.15s var(--ease-out);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
}

.footer__contact svg {
  color: var(--accent);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
}

.footer__contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.15s var(--ease-out);
}

.footer__contact a:hover {
  color: var(--white);
}

.footer__bottom {
  padding: 24px 0;
  border-top: 1px solid var(--divider);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copyright {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.15s var(--ease-out);
}

.footer__legal a:hover {
  color: rgba(255, 255, 255, 0.6);
}

.footer__credit {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer__credit a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.15s var(--ease-out);
}

.footer__credit a:hover {
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .footer__cta {
    text-align: right;
  }

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


/* --------------------------------------------------------------------------
   26. COOKIE NOTICE
   -------------------------------------------------------------------------- */

/* Cookie consent (GDPR) — center overlay */
.cookie-consent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 18, 34, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-consent {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px var(--border);
  max-width: 520px;
  width: 100%;
  padding: 40px;
  position: relative;
}

@media (max-width: 640px) {
  .cookie-consent {
    padding: 28px 24px;
    border-radius: 12px;
  }
}

.cookie-consent__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light, rgba(232, 89, 12, 0.08));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.cookie-consent__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.cookie-consent__text p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-bottom: 8px;
}

.cookie-consent__link {
  font-size: 0.8125rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 28px;
}

.cookie-consent__link:hover {
  text-decoration: underline;
}

.cookie-consent__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-consent__actions .btn {
  width: 100%;
  justify-content: center;
  padding: 13px 24px;
}

.cookie-consent__actions .btn--primary {
  font-size: 0.9375rem;
}

.cookie-consent__actions .btn--outline {
  font-size: 0.875rem;
}

.cookie-consent__note {
  font-size: 0.6875rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

.cookie-consent__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* Legacy cookie-notice (backward compat) */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-800);
  border-top: 1px solid var(--divider);
  padding: 14px 0;
  z-index: 9999;
}

.cookie-notice__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}


/* --------------------------------------------------------------------------
   27. BREADCRUMB
   -------------------------------------------------------------------------- */

.breadcrumb {
  font-size: var(--fs-caption);
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.15s var(--ease-out);
}

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

.breadcrumb__sep {
  font-size: 0.625rem;
  margin: 0 6px;
  opacity: 0.6;
}

/* Light variant for non-dark backgrounds */
.breadcrumb--light {
  color: var(--text-muted);
}

.breadcrumb--light a {
  color: var(--text-muted);
}

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


/* --------------------------------------------------------------------------
   28. ANIMATIONS
   -------------------------------------------------------------------------- */

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
  transition-delay: 0.3s;
}

.animate-on-scroll:nth-child(5) {
  transition-delay: 0.4s;
}

.animate-on-scroll:nth-child(6) {
  transition-delay: 0.5s;
}

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

  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}


/* --------------------------------------------------------------------------
   29. MEDIA QUERIES — RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */

/* 480px — Large phones */
@media (min-width: 480px) {
  .hero__stats {
    gap: 0;
  }

  .hero__stat {
    padding: 0 24px;
  }

  .hero__stat:first-child {
    padding-left: 0;
  }
}

/* 640px — Small tablets */
@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

/* 768px — Tablets */
@media (min-width: 768px) {
  /* Typography scale up handled by clamp */
}

/* 1024px — Desktop */
@media (min-width: 1024px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 1280px — Large Desktop */
@media (min-width: 1280px) {
  .hero__stat-value {
    font-size: 2.25rem;
  }

  .cta-banner {
    padding: 64px 56px;
  }
}

/* --------------------------------------------------------------------------
   30. PRINT STYLES
   -------------------------------------------------------------------------- */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .header,
  .footer,
  .cookie-notice,
  .header__mobile,
  .cta-banner,
  .cta-dark,
  .cta-inline {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  .section {
    padding: 20px 0;
  }

  .container {
    max-width: 100%;
    padding: 0;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }

  h1, h2, h3, h4 {
    page-break-after: avoid;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }

  .animate-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}


/* --------------------------------------------------------------------------
   31. UTILITIES
   -------------------------------------------------------------------------- */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

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

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

.text-right {
  text-align: right;
}

.no-scroll {
  overflow: hidden;
}

.hidden {
  display: none !important;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mt-8 {
  margin-top: 32px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-6 {
  margin-bottom: 24px;
}

.mb-8 {
  margin-bottom: 32px;
}

/* Accent text utility */
.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--text-muted);
}

.text-secondary {
  color: var(--text-secondary);
}

/* Background utilities */
.bg-white {
  background-color: var(--white);
}

.bg-lighter {
  background-color: var(--lighter);
}

.bg-primary {
  background-color: var(--primary);
}

/* Border utilities */
.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

/* Width utilities */
.w-full {
  width: 100%;
}

.max-w-prose {
  max-width: 720px;
}

/* Responsive visibility */
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .hide-tablet {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .hide-desktop {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  .show-desktop-only {
    display: none !important;
  }
}


/* --------------------------------------------------------------------------
   32. STAT CARDS / NUMBERS SECTION
   -------------------------------------------------------------------------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 24px;
  text-align: center;
}

.stat-card__value {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-card__label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Dark variant */
.section--dark .stat-card {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: var(--divider);
}

.section--dark .stat-card__label {
  color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* --------------------------------------------------------------------------
   33. TESTIMONIALS / QUOTE
   -------------------------------------------------------------------------- */

.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__quote {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 24px;
  position: relative;
}

.testimonial__quote::before {
  content: '\201C';
  display: block;
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial__author {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
}

.testimonial__role {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Dark section variant */
.section--dark .testimonial__quote {
  color: var(--white);
}

.section--dark .testimonial__author {
  color: var(--white);
}

.section--dark .testimonial__role {
  color: rgba(255, 255, 255, 0.5);
}


/* --------------------------------------------------------------------------
   34. FEATURE LIST (compact alternative to cards)
   -------------------------------------------------------------------------- */

.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.feature-list__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background-color: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all 0.2s var(--ease-out);
}

.feature-list__item:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--border-dark);
}

.feature-list__icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background-color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.feature-list__icon svg {
  width: 18px;
  height: 18px;
}

.feature-list__content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.feature-list__content p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .feature-list {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* --------------------------------------------------------------------------
   35. PARTNERS / LOGOS
   -------------------------------------------------------------------------- */

.partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  opacity: 0.5;
}

.partners img {
  height: 28px;
  width: auto;
  filter: grayscale(100%);
  transition: all 0.2s var(--ease-out);
}

.partners img:hover {
  filter: grayscale(0%);
  opacity: 1;
}


/* --------------------------------------------------------------------------
   36. BADGES / TAGS
   -------------------------------------------------------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: var(--fs-overline);
  font-weight: 600;
  border-radius: 4px;
  line-height: 1.4;
}

.badge--accent {
  background-color: var(--accent-light);
  color: var(--accent);
}

.badge--dark {
  background-color: var(--primary);
  color: var(--white);
}

.badge--outline {
  background-color: transparent;
  border: 1px solid var(--border);
  color: var(--text-secondary);
}

.badge--success {
  background-color: rgba(5, 150, 105, 0.08);
  color: var(--success);
}


/* --------------------------------------------------------------------------
   37. DIVIDERS
   -------------------------------------------------------------------------- */

.divider {
  border: none;
  height: 1px;
  background-color: var(--border);
  margin: 40px 0;
}

.divider--dark {
  background-color: var(--divider);
}

.divider--sm {
  margin: 24px 0;
}


/* --------------------------------------------------------------------------
   38. NOTIFICATION / ALERT BARS
   -------------------------------------------------------------------------- */

.alert {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.alert--info {
  background-color: rgba(37, 99, 235, 0.06);
  color: #2563EB;
  border: 1px solid rgba(37, 99, 235, 0.15);
}

.alert--success {
  background-color: rgba(5, 150, 105, 0.06);
  color: var(--success);
  border: 1px solid rgba(5, 150, 105, 0.15);
}

.alert--warning {
  background-color: rgba(245, 158, 11, 0.06);
  color: #D97706;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.alert--error {
  background-color: rgba(239, 68, 68, 0.06);
  color: #DC2626;
  border: 1px solid rgba(239, 68, 68, 0.15);
}

.alert svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}


/* --------------------------------------------------------------------------
   39. LOADING / SKELETON STATES
   -------------------------------------------------------------------------- */

.skeleton {
  background: linear-gradient(90deg, var(--lighter) 25%, var(--border) 50%, var(--lighter) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}

@keyframes shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.skeleton--text {
  height: 16px;
  margin-bottom: 8px;
}

.skeleton--title {
  height: 24px;
  width: 60%;
  margin-bottom: 12px;
}

.skeleton--card {
  height: 200px;
}

@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
  }
}


/* --------------------------------------------------------------------------
   40. MAP EMBED
   -------------------------------------------------------------------------- */

.map-embed {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16 / 9;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}


/* --------------------------------------------------------------------------
   41. PAGINATION
   -------------------------------------------------------------------------- */

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-top: 48px;
}

.pagination__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.15s var(--ease-out);
}

.pagination__item:hover {
  background-color: var(--lighter);
  color: var(--text);
}

.pagination__item.is-active {
  background-color: var(--accent);
  color: var(--white);
}

.pagination__item--disabled {
  opacity: 0.3;
  pointer-events: none;
}

.pagination__item svg {
  width: 16px;
  height: 16px;
}


/* --------------------------------------------------------------------------
   42. TABS / TAB NAVIGATION
   -------------------------------------------------------------------------- */

.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tabs__item {
  padding: 12px 20px;
  font-family: var(--font-heading);
  font-size: var(--fs-body-sm);
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: color 0.15s var(--ease-out);
}

.tabs__item::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.15s var(--ease-out);
}

.tabs__item:hover {
  color: var(--text);
}

.tabs__item.is-active {
  color: var(--accent);
  font-weight: 600;
}

.tabs__item.is-active::after {
  background-color: var(--accent);
}

.tabs-content {
  padding-top: 24px;
}

.tabs-panel {
  display: none;
}

.tabs-panel.is-active {
  display: block;
}


/* --------------------------------------------------------------------------
   43. TOOLTIP
   -------------------------------------------------------------------------- */

[data-tooltip] {
  position: relative;
}

[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 10px;
  background-color: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.15s var(--ease-out);
  pointer-events: none;
  z-index: 50;
}

[data-tooltip]:hover::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}


/* --------------------------------------------------------------------------
   44. BACK TO TOP BUTTON
   -------------------------------------------------------------------------- */

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s var(--ease-out);
  box-shadow: var(--shadow-lg);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 18px;
  height: 18px;
}


/* --------------------------------------------------------------------------
   45. ABOUT PAGE SPECIFICS
   -------------------------------------------------------------------------- */

.about-hero {
  background-color: var(--primary);
  padding: 100px 0 60px;
  color: var(--white);
}

.about-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.about-hero__lead {
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.65);
  max-width: 600px;
  line-height: 1.7;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

.about-content__text p {
  color: var(--text-secondary);
  line-height: 1.7;
}

.about-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.about-value {
  padding: 24px;
  border-left: 3px solid var(--accent);
  background-color: var(--white);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.about-value h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.about-value p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .about-values {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 5fr 3fr;
  }
}


/* --------------------------------------------------------------------------
   46. COUNTRY / ROUTE DETAIL PAGE
   -------------------------------------------------------------------------- */

.route-detail-hero {
  background-color: var(--primary);
  padding: 100px 0 60px;
  color: var(--white);
}

.route-detail-hero__flags {
  font-size: 2rem;
  margin-bottom: 16px;
}

.route-detail-hero h1 {
  color: var(--white);
  margin-bottom: 12px;
}

.route-detail-hero__sub {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.0625rem;
  max-width: 560px;
  line-height: 1.7;
}

.route-detail-info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 32px;
}

.route-detail-info__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--divider);
  border-radius: var(--radius-md);
}

.route-detail-info__item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}

.route-detail-info__item span {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

@media (min-width: 640px) {
  .route-detail-info {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .route-detail-info {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* --------------------------------------------------------------------------
   47. PRICING / COMPARISON TABLE
   -------------------------------------------------------------------------- */

.comparison-table {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-color: var(--white);
}

.comparison-table th,
.comparison-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: var(--fs-body-sm);
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background-color: var(--lighter);
  font-weight: 600;
  color: var(--text);
  font-size: var(--fs-caption);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.comparison-table td {
  color: var(--text-secondary);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table__check {
  color: var(--success);
  font-weight: 700;
}

.comparison-table__cross {
  color: var(--text-muted);
}


/* --------------------------------------------------------------------------
   48. SCROLL PROGRESS (optional top bar)
   -------------------------------------------------------------------------- */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background-color: var(--accent);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}


/* --------------------------------------------------------------------------
   49. MODAL / OVERLAY
   -------------------------------------------------------------------------- */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(11, 18, 34, 0.6);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s var(--ease-out);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  background-color: var(--white);
  border-radius: var(--radius-3xl);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s var(--ease-out);
}

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

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--steel);
  border: none;
  background: none;
  cursor: pointer;
  transition: all 0.15s var(--ease-out);
}

.modal__close:hover {
  background-color: var(--lighter);
  color: var(--text);
}

.modal__close svg {
  width: 18px;
  height: 18px;
}

.modal__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-right: 40px;
}

.modal__body {
  font-size: var(--fs-body-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.modal__actions {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}


/* --------------------------------------------------------------------------
   50. BLOG ARTICLE / POST CONTENT
   -------------------------------------------------------------------------- */

.article-hero {
  background-color: var(--primary);
  padding: 100px 0 60px;
  color: var(--white);
}

.article-hero__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.article-hero__category {
  font-size: var(--fs-overline);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}

.article-hero__date {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.article-hero h1 {
  color: var(--white);
  max-width: 720px;
}

.article-content {
  max-width: 720px;
  margin: 0 auto;
  padding-top: 48px;
}

.article-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 16px;
}

.article-content h3 {
  font-size: 1.25rem;
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-content p {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-content img {
  border-radius: var(--radius-xl);
  margin: 32px 0;
}

.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin: 32px 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.0625rem;
}

.article-content ul,
.article-content ol {
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 24px;
}

.article-content ul {
  list-style: disc;
}

.article-content ol {
  list-style: decimal;
}

.article-content li {
  margin-bottom: 8px;
}

.article-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.article-content code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background-color: var(--lighter);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--accent);
}

.article-content pre {
  background-color: var(--primary);
  border-radius: var(--radius-xl);
  padding: 24px;
  overflow-x: auto;
  margin: 24px 0;
}

.article-content pre code {
  background: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.875rem;
  line-height: 1.6;
}


/* --------------------------------------------------------------------------
   51. SHARE LINKS
   -------------------------------------------------------------------------- */

.share {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.share__label {
  font-size: var(--fs-caption);
  font-weight: 600;
  color: var(--text-muted);
}

.share__link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background-color: var(--lighter);
  color: var(--steel);
  transition: all 0.15s var(--ease-out);
}

.share__link:hover {
  background-color: var(--accent);
  color: var(--white);
}

.share__link svg {
  width: 16px;
  height: 16px;
}


/* --------------------------------------------------------------------------
   52. NUMBERED LIST (editorial style)
   -------------------------------------------------------------------------- */

.numbered-list {
  counter-reset: item;
  list-style: none;
  padding: 0;
}

.numbered-list__item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  counter-increment: item;
}

.numbered-list__item::before {
  content: counter(item, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
  padding-top: 2px;
}

.numbered-list__content h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.numbered-list__content p {
  font-size: var(--fs-body-sm);
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}


/* --------------------------------------------------------------------------
   BLOG ARTICLE DETAIL
   -------------------------------------------------------------------------- */

.blog-article {
  max-width: 780px;
  margin: 0 auto;
}

.blog-article__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.blog-article__date {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.blog-article__img {
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}

.blog-article__content {
  margin-bottom: 48px;
}

.blog-article__content h2 {
  font-size: 1.375rem;
  margin-top: 40px;
  margin-bottom: 12px;
}

.blog-article__content h2:first-child {
  margin-top: 0;
}

.blog-article__content p {
  margin-bottom: 16px;
  line-height: 1.75;
  color: var(--text-secondary);
}

.blog-article__content ul {
  margin: 16px 0;
  padding-left: 0;
  list-style: none;
}

.blog-article__content ul li {
  position: relative;
  padding: 8px 0 8px 20px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.blog-article__content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

.blog-article__content strong {
  color: var(--text);
}

.blog-article__cta {
  margin-top: 48px;
}

/* Blog card as link */
a.blog-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

a.blog-card:hover {
  box-shadow: var(--shadow-md, 0 8px 32px rgba(0,0,0,0.06));
}

a.blog-card--featured {
  display: grid;
}

/* --------------------------------------------------------------------------
   CONTACT PAGE REFINEMENTS
   -------------------------------------------------------------------------- */

.contact-guidance {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 48px;
}

@media (min-width: 768px) {
  .contact-guidance {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-guidance__card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg, 12px);
  background: var(--white);
}

.contact-guidance__card h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-guidance__card p {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.contact-guidance__card--primary {
  border-color: var(--accent);
  border-width: 1.5px;
}

.contact-form__heading {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

/* Improved success message */
.form-success {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(5, 150, 105, 0.06);
  border: 1px solid rgba(5, 150, 105, 0.2);
  border-radius: var(--radius-md, 8px);
  margin-top: 20px;
  animation: fadeInUp 0.4s ease-out;
}

.form-success svg {
  color: #059669;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-success strong {
  display: block;
  font-size: 0.9375rem;
  color: #059669;
  margin-bottom: 4px;
}

.form-success p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Form error box (mirrors .form-success, red) */
.form-error {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(220, 38, 38, 0.06);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: var(--radius-md, 8px);
  margin-top: 20px;
  animation: fadeInUp 0.4s ease-out;
}

.form-error svg {
  color: #DC2626;
  flex-shrink: 0;
  margin-top: 2px;
}

.form-error strong {
  display: block;
  font-size: 0.9375rem;
  color: #DC2626;
  margin-bottom: 4px;
}

.form-error p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin: 0;
}

/* Honeypot field — visually removed, still in DOM for bots */
.fh-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Form section titles */
.form-section__title {
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted, #94A3B8);
  margin-bottom: 16px;
}

/* About statement */
.about-statement {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.about-statement h2 {
  margin-bottom: 20px;
}

/* --------------------------------------------------------------------------
   ABOUT HERO — Document + Route Layer (V7 Refined)
   -------------------------------------------------------------------------- */

/* Europe map silhouette base */
.about-hero-visual__europe {
  position: absolute;
  width: 120%;
  height: auto;
  top: -10%;
  left: -10%;
  filter: saturate(0.12) brightness(1.0) contrast(0.95);
  opacity: 0.18;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 70% 65% at 52% 48%, rgba(0,0,0,0.8) 15%, transparent 65%);
  mask-image: radial-gradient(ellipse 70% 65% at 52% 48%, rgba(0,0,0,0.8) 15%, transparent 65%);
}

/* Node labels (country codes on route map) */
.about-node-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 6px;
  font-weight: 600;
  fill: rgba(30, 58, 95, 0.35);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-node-label.is-visible {
  opacity: 1;
}

/* Hub label */
.about-hub-label {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
  fill: rgba(232, 89, 12, 0.5);
}

/* Document badge (replacing header) */
.about-doc__badge {
  display: inline-block;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232, 89, 12, 0.8);
  background: rgba(232, 89, 12, 0.08);
  padding: 2px 8px;
  border-radius: 3px;
  margin-bottom: 8px;
}

.about-doc__meta {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 6px;
}

.about-doc__row--accent span:last-child {
  color: rgba(232, 89, 12, 0.7);
  font-weight: 700;
}

.about-doc__status--active {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.5625rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  color: rgba(5, 150, 105, 0.8);
}

.about-doc__status-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(5, 150, 105, 0.8);
  animation: aboutStatusPulse 2s ease-in-out infinite;
}

@keyframes aboutStatusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* POD card position */
.about-doc--pod {
  bottom: 10%;
  right: 18%;
  min-width: 135px;
}

.about-hero {
  background: var(--hero-bg, #F7F9FB);
  color: var(--text);
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h, 72px) + 60px) 0 60px;
}

.about-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 50%, rgba(255, 255, 255, 0.5), transparent 65%);
  pointer-events: none;
}

.about-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-hero__grid {
    grid-template-columns: 5fr 4fr;
    gap: 40px;
  }
}

.about-hero__content {
  position: relative;
  z-index: 2;
}

.about-hero__content h1 {
  color: var(--primary);
  margin-bottom: 20px;
}

.about-hero__lead {
  font-size: clamp(1rem, 2vw, 1.1875rem);
  color: var(--hero-text-secondary);
  line-height: 1.7;
  max-width: 520px;
}

.about-hero__meta {
  display: flex;
  gap: 0;
  margin-top: 36px;
  border-top: 1px solid var(--hero-card-border);
  padding-top: 24px;
}

.about-hero__meta-item {
  padding: 0 28px;
  border-right: 1px solid var(--hero-card-border);
  text-align: left;
}

.about-hero__meta-item:first-child {
  padding-left: 0;
}

.about-hero__meta-item:last-child {
  border-right: none;
}

.about-hero__meta-value {
  display: block;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent, #E8590C);
  line-height: 1;
}

.about-hero__meta-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-top: 6px;
}

.about-hero__visual-wrap {
  display: none;
}

@media (min-width: 1024px) {
  .about-hero__visual-wrap {
    display: block;
    position: relative;
  }
}

/* Visual container */
.about-hero-visual {
  position: relative;
  width: 100%;
  min-height: 420px;
}

.about-hero-visual__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}

.about-hero-visual__routes {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* Route lines */
.about-route {
  stroke: rgba(232, 89, 12, 0.3);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.about-route.is-drawn {
  stroke-dashoffset: 0;
}

/* Nodes */
.about-node {
  fill: rgba(255, 255, 255, 0.35);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.about-node.is-visible {
  opacity: 1;
}

.about-node--hub {
  opacity: 1;
}

.about-node--pulse {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.about-node--pulse.is-visible {
  opacity: 1;
  animation: aboutPulse 3s ease-in-out infinite;
}

@keyframes aboutPulse {
  0%, 100% { r: 8; opacity: 0.25; }
  50% { r: 14; opacity: 0.08; }
}

/* Moving point */
.about-route-point {
  opacity: 0;
  transition: opacity 1s ease 2s;
}

.about-route-point.is-visible {
  opacity: 0.7;
}

/* Document fragments */
.about-hero-visual__docs {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.about-doc {
  position: absolute;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 10px;
  padding: 16px 20px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  min-width: 180px;
  max-width: 220px;
}

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

.about-doc--cmr {
  top: 5%;
  right: 2%;
  min-width: 195px;
}

.about-doc--eta {
  bottom: 25%;
  left: 0%;
  min-width: 180px;
}

.about-doc--pod {
  bottom: 8%;
  right: 15%;
  min-width: 170px;
}

.about-doc__header {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(232, 89, 12, 0.7);
  margin-bottom: 8px;
}

.about-doc__line {
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 1px;
  margin-bottom: 5px;
}

.about-doc__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.04);
  margin: 8px 0;
}

.about-doc__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  font-size: 0.5625rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 4px;
  line-height: 1.4;
}

.about-doc__row span:first-child {
  flex-shrink: 0;
}

.about-doc__row span:last-child {
  text-align: right;
  white-space: nowrap;
}

.about-doc__status {
  font-size: 0.5625rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  color: rgba(5, 150, 105, 0.7);
  margin-top: 6px;
}

/* Micro labels */
.about-hero-visual__labels {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.about-label {
  position: absolute;
  font-size: 0.5625rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.2);
  opacity: 0;
  transition: opacity 1s ease;
  border-left: 2px solid rgba(232, 89, 12, 0.25);
  padding-left: 5px;
  white-space: nowrap;
}

.about-label.is-visible {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   ABOUT: Multilingual card sizing fixes
   -------------------------------------------------------------------------- */

/* Card sizing handled in main .about-doc--* rules above */

/* --------------------------------------------------------------------------
   WORKFLOW VISUAL (middle-page operational timeline)
   -------------------------------------------------------------------------- */

.workflow-visual {
  padding: 48px 0 40px;
  position: relative;
  overflow: visible;
  display: none;
}

@media (min-width: 768px) {
  .workflow-visual {
    display: block;
  }
}

/* Node jumping is handled via JS — no CSS dot needed */

.workflow-visual__track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  overflow: visible;
}

@media (max-width: 768px) {
  .workflow-visual__track {
    flex-direction: column;
    align-items: stretch;
  }
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  max-width: 200px;
  text-align: center;
}

.workflow-step__node {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lighter, #F1F5F9);
  border: 2px solid var(--border, #E2E8F0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--steel, #64748B);
  margin-bottom: 16px;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, color 0.5s ease, transform 0.3s ease;
  flex-shrink: 0;
}

.workflow-step__node--active,
.workflow-step__node.workflow-step__node--active {
  background: var(--accent, #E8590C);
  border-color: var(--accent, #E8590C);
  color: var(--white, #fff);
  box-shadow: 0 0 20px rgba(232, 89, 12, 0.35);
  transform: scale(1.08);
  color: var(--white);
}

.workflow-step__content {
  width: 100%;
}

.workflow-step__badge {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent, #E8590C);
  margin-bottom: 12px;
}

.workflow-step__doc {
  background: var(--white);
  border: 1px solid var(--border, #E2E8F0);
  border-radius: 8px;
  padding: 12px 14px;
}

.workflow-step__doc-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.6875rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  color: var(--text-muted, #94A3B8);
  padding: 3px 0;
}

.workflow-step__doc-val {
  font-weight: 700;
  color: var(--text, #0F172A);
}

.workflow-step__doc-check {
  color: var(--success, #059669);
  font-weight: 700;
}

.workflow-step__doc-status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.6875rem;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  color: var(--success, #059669);
  font-weight: 600;
}

.workflow-step__status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success, #059669);
  animation: aboutStatusPulse 2s ease-in-out infinite;
}

.workflow-connector {
  width: 40px;
  height: 2px;
  background: var(--border, #E2E8F0);
  margin-top: 24px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .workflow-connector {
    width: 2px;
    height: 24px;
    margin: 0 auto;
  }
}

/* --------------------------------------------------------------------------
   UNIFIED PAGE HERO SYSTEM
   -------------------------------------------------------------------------- */

.page-hero {
  background: var(--hero-bg, #F7F9FB);
  color: var(--text);
  min-height: auto;
  display: block;
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h, 72px) + 40px) 0 40px;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 35% 50%, rgba(255, 255, 255, 0.5), transparent 65%);
  pointer-events: none;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  align-items: start;
}

@media (min-width: 1024px) {
  .page-hero__grid {
    grid-template-columns: 5fr 4fr;
    gap: 24px;
  }
}

.page-hero__content {
  position: relative;
  z-index: 2;
}

.page-hero__content h1 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
}

.page-hero__lead {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--hero-text-secondary);
  line-height: 1.6;
  max-width: 480px;
}

.page-hero__visual {
  display: none;
  position: relative;
  min-height: auto;
}

@media (min-width: 1024px) {
  .page-hero__visual {
    display: block;
  }
}

/* --- Services hero size --- */
.page-hero--services {
  min-height: auto;
}

.page-hero--services .page-hero__grid {
  align-items: start;
}

/* --- Services hero visual --- */
.services-hero-visual { position: relative; width: 100%; min-height: auto; }
.services-hero-visual__grid { position: absolute; inset: 0; width: 100%; height: 100%; }

.svc-hero-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0;
}

.svc-hero-card {
  background: var(--hero-card-bg);
  border: 1px solid var(--hero-card-border);
  border-radius: 8px;
  padding: 10px 12px;
  box-shadow: var(--hero-card-shadow);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s ease, transform 0.8s ease, border-color 0.5s ease;
}

.svc-hero-card.is-visible { opacity: 1; transform: translateY(0); }
.svc-hero-card.is-active { border-color: rgba(232,89,12,0.4); box-shadow: 0 0 20px rgba(232,89,12,0.1); }

.svc-hero-card__icon {
  margin-bottom: 4px;
}

.svc-hero-card__icon svg {
  width: 100%;
  max-width: 110px;
  height: auto;
}

/* 2x2 grid layout for service cards */

.svc-hero-card__badge {
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(232,89,12,0.8);
  margin-bottom: 6px;
}

.svc-hero-card__label {
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
}

/* --- Routes hero visual --- */
.routes-hero-visual { position: relative; width: 100%; min-height: 340px; }

.routes-hero-visual__europe {
  position: absolute;
  width: 130%;
  height: auto;
  top: -15%;
  left: -15%;
  filter: saturate(0.12) brightness(1.0) contrast(0.95);
  opacity: 0.2;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 55% 50%, rgba(0,0,0,0.9) 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 75% at 55% 50%, rgba(0,0,0,0.9) 20%, transparent 70%);
}

.routes-hero-visual__mesh {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.route-mesh-line {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.route-mesh-line.is-drawn { stroke-dashoffset: 0; }

.routes-hero-visual__label {
  position: absolute;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  border-left: 2px solid rgba(232,89,12,0.3);
  padding-left: 5px;
  white-space: nowrap;
  z-index: 3;
  opacity: 0;
  transition: opacity 1s ease;
}
.routes-hero-visual__label.is-visible { opacity: 1; }

/* --- Quote hero visual --- */
.quote-hero-visual { position: relative; width: 100%; min-height: 320px; }
.quote-hero-visual__grid { position: absolute; inset: 0; width: 100%; height: 100%; }
.quote-hero-cards { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; }
.quote-hero-card {
  background: var(--hero-card-bg);
  border: 1px solid var(--hero-card-border);
  border-radius: 10px;
  padding: 16px 20px;
  box-shadow: var(--hero-card-shadow);
  min-width: 195px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.quote-hero-card.is-visible { opacity: 1; transform: translateY(0); }

.quote-route {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  transition: stroke-dashoffset 2s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.quote-route.is-drawn { stroke-dashoffset: 0; }

/* --- Contact hero visual --- */
.contact-hero-visual { position: relative; width: 100%; min-height: 320px; }

.contact-hero-visual__europe {
  position: absolute;
  width: 130%;
  height: auto;
  top: -15%;
  left: -15%;
  filter: saturate(0.12) brightness(1.0) contrast(0.95);
  opacity: 0.18;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 80% 75% at 55% 50%, rgba(0,0,0,0.9) 20%, transparent 70%);
  mask-image: radial-gradient(ellipse 80% 75% at 55% 50%, rgba(0,0,0,0.9) 20%, transparent 70%);
}

.contact-hero-visual__svg { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 1; }
.contact-hero-visual__labels { position: absolute; inset: 0; z-index: 2; }

.contact-line,
.contact-node {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.contact-line.is-visible,
.contact-node.is-visible { opacity: 1; }

/* --- Industries hero visual --- */
.industries-hero-visual { position: relative; width: 100%; min-height: 320px; }
.industries-hero-visual__svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.ind-hero-sectors,
.ind-hero-transport { position: absolute; inset: 0; z-index: 2; }

.ind-hero-tag {
  position: absolute;
  font-family: var(--font-mono, 'JetBrains Mono', monospace);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--hero-card-bg);
  border: 1px solid var(--hero-card-border);
  padding: 5px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.ind-hero-tag.is-visible { opacity: 1; }
.ind-hero-tag--accent {
  color: rgba(232,89,12,0.7);
  border-color: rgba(232,89,12,0.15);
  background: rgba(232,89,12,0.05);
}

/* --- Inner service page truck hero --- */
.page-hero__visual--truck {
  display: none;
  align-items: center;
  justify-content: center;
}

@media (min-width: 1024px) {
  .page-hero__visual--truck {
    display: flex;
  }
}

.truck-hero-svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  opacity: 0.85;
}

/* --- FAQ hero visual --- */
.faq-hero-visual { position: relative; width: 100%; min-height: 250px; }
.faq-hero-visual__labels { position: absolute; inset: 0; }

/* --------------------------------------------------------------------------
   END OF STYLESHEET
   -------------------------------------------------------------------------- */
