/* ==========================================================================
   LIMA — International Freight Forwarding
   Brand: lime + near-black + white
   ========================================================================== */

:root {
  /* Brand */
  --lime-500: #B8E532;        /* primary brand lime (from logo) */
  --lime-400: #C9ED5C;
  --lime-600: #98C520;
  --lime-700: #6A8E10;
  --lime-50:  #F4FCE0;

  /* Ink (near-black, deeper than pure black for readability) */
  --ink-900: #0B0F0B;          /* near-black, slight green tint */
  --ink-800: #15191A;
  --ink-700: #24292A;
  --ink-600: #3F4646;

  /* Neutrals */
  --white: #FFFFFF;
  --gray-50:  #FAFBF7;         /* warm white with lime hint */
  --gray-100: #F1F3EE;
  --gray-200: #E4E7DF;
  --gray-300: #C9CFC2;
  --gray-400: #8E9588;
  --gray-500: #5F665C;
  --gray-600: #434842;

  /* Semantic */
  --text-primary: var(--ink-900);
  --text-secondary: var(--gray-600);
  --text-muted: var(--gray-500);
  --bg-primary: var(--white);
  --bg-soft: var(--gray-50);
  --border: var(--gray-200);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 6px;
  --radius:    14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(11, 15, 11, 0.05);
  --shadow:    0 8px 28px rgba(11, 15, 11, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 15, 11, 0.18);

  --t: 220ms ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--ink-900); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--lime-700); }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 {
  margin: 0 0 .5em;
  line-height: 1.15;
  color: var(--ink-900);
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 4.5vw + 1rem, 4.25rem); letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: clamp(1.875rem, 2.5vw + 1rem, 2.75rem); letter-spacing: -0.025em; }
h3 { font-size: 1.375rem; letter-spacing: -0.015em; }
h4 { font-size: 1.125rem; }
p  { margin: 0 0 1rem; color: var(--text-secondary); }
ul { padding-left: 1.25rem; }

/* ---------- Layout helpers ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.section   { padding: clamp(72px, 9vw, 128px) 0; }
.section--soft { background: var(--bg-soft); }
.section--ink {
  background: var(--ink-900);
  color: var(--white);
}
.section--ink h1, .section--ink h2, .section--ink h3 { color: var(--white); }
.section--ink p { color: rgba(255,255,255,0.72); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-700);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--lime-500);
  border-radius: 2px;
}
.section--ink .eyebrow { color: var(--lime-400); }
.section--ink .eyebrow::before { background: var(--lime-500); }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head .eyebrow { display: inline-flex; }
.section-head p { font-size: 1.125rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.9375rem;
  border: 1.5px solid transparent;
  transition: all var(--t);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn--primary {
  background: var(--lime-500);
  color: var(--ink-900);
  box-shadow: 0 4px 14px rgba(184, 229, 50, 0.45);
}
.btn--primary:hover {
  background: var(--lime-400);
  color: var(--ink-900);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(184, 229, 50, 0.55);
}
.btn--ink {
  background: var(--ink-900);
  color: var(--white);
}
.btn--ink:hover {
  background: var(--ink-700);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent;
  color: var(--ink-900);
  border-color: var(--ink-900);
}
.btn--outline:hover { background: var(--ink-900); color: var(--white); }
.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.08); color: var(--white); }

.btn .arrow { transition: transform var(--t); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-900);
}
.brand:hover { color: var(--ink-900); }
.brand-logo { height: 42px; width: auto; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.045em;
  color: var(--ink-900);
}
.brand-sub {
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--gray-500);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--ink-700);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
  padding: 8px 0;
}
.nav-links a:hover { color: var(--ink-900); }
.nav-links a.is-active { color: var(--ink-900); font-weight: 600; }
.nav-links a.is-active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 3px;
  background: var(--lime-500);
  border-radius: 2px;
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.lang-toggle {
  display: flex;
  align-items: center;
  background: var(--gray-100);
  border-radius: 999px;
  padding: 3px;
  border: 1px solid var(--border);
}
.lang-toggle button {
  border: 0;
  background: transparent;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.75rem;
  padding: 6px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  transition: all var(--t);
}
.lang-toggle button.is-active {
  background: var(--ink-900);
  color: var(--white);
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 40px; height: 40px;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 8px; right: 8px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: all var(--t);
}
.nav-toggle span:nth-child(1) { top: 13px; }
.nav-toggle span:nth-child(2) { top: 19px; }
.nav-toggle span:nth-child(3) { top: 25px; }
.nav-toggle.is-open span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: clamp(72px, 9vw, 120px) 0 clamp(80px, 10vw, 140px);
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--lime-50) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px 8px 10px;
  border-radius: 999px;
  background: var(--lime-50);
  border: 1px solid rgba(184, 229, 50, 0.4);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--lime-700);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero-eyebrow .pulse {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--lime-500);
  box-shadow: 0 0 0 4px rgba(184, 229, 50, 0.25);
}
.hero h1 { margin-bottom: 22px; }
.hero h1 .lime {
  color: var(--lime-600);
  position: relative;
  display: inline-block;
}
.hero h1 .lime::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 6px;
  height: 14px;
  background: var(--lime-500);
  opacity: 0.3;
  z-index: -1;
  border-radius: 4px;
}
.hero-lead {
  font-size: 1.1875rem;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}
.hero-trust .pill {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text-secondary);
}
.hero-trust .pill svg {
  width: 20px; height: 20px;
  color: var(--lime-600);
}

/* Hero visual: lime + map composition */
.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  min-height: 420px;
}
.hero-disc {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--lime-400), var(--lime-600) 80%);
  box-shadow:
    0 40px 80px rgba(106, 142, 16, 0.40),
    inset 0 -20px 60px rgba(0,0,0,0.12);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-disc::before {
  content: '';
  position: absolute;
  inset: 5%;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.45);
  animation: spin 60s linear infinite;
  pointer-events: none;
}
.hero-logo-spin {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  animation: spin 18s linear infinite;
  filter: drop-shadow(0 14px 28px rgba(0,0,0,0.28));
  pointer-events: none;
  transform-origin: 50% 50%;
}
@media (prefers-reduced-motion: reduce) {
  .hero-disc::before,
  .hero-logo-spin {
    animation: none;
  }
}
.hero-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.hero-card .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--ink-900);
  color: var(--lime-500);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-card .ic svg { width: 20px; height: 20px; }
.hero-card .label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 2px;
}
.hero-card .value {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ink-900);
  line-height: 1.2;
}
.hero-card--1 { top: 5%;  left: -8%; }
.hero-card--2 { top: 45%; right: -10%; }
.hero-card--3 { bottom: 6%; left: 6%; }

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ---------- Page hero (compact) ---------- */
.page-hero {
  background: var(--ink-900);
  color: var(--white);
  padding: clamp(72px, 8vw, 120px) 0 clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 229, 50, 0.18), transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.125rem; max-width: 680px; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: var(--lime-400); }

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat { text-align: left; }
.stat .num {
  font-size: clamp(2.5rem, 3vw + 1rem, 3.5rem);
  font-weight: 800;
  color: var(--ink-900);
  letter-spacing: -0.035em;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.section--ink .stat .num { color: var(--lime-400); }
.stat .num .unit { font-size: 0.5em; color: var(--lime-600); font-weight: 700; }
.section--ink .stat .num .unit { color: var(--lime-500); }
.stat .label {
  margin-top: 8px;
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 0.9375rem;
}
.section--ink .stat .label { color: rgba(255,255,255,0.7); }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  transition: all var(--t);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 3px;
  background: var(--lime-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}
.service-card:hover {
  border-color: var(--ink-900);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--ink-900);
  color: var(--lime-500);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { margin-bottom: 18px; }
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}
.service-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 16px; height: 16px;
  background: var(--lime-50);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236A8E10' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 11px;
  background-position: center;
  background-repeat: no-repeat;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink-900);
}
.service-link:hover { color: var(--lime-700); }

/* ---------- Why / Feature blocks ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.feature { padding: 4px; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--lime-50);
  color: var(--lime-700);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(184, 229, 50, 0.4);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 1.1875rem; margin-bottom: 10px; }
.feature p { font-size: 0.9375rem; margin: 0; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 64px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -150px; right: -150px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 229, 50, 0.22), transparent 65%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { color: var(--white); margin: 0 0 10px; max-width: 600px; }
.cta-banner p { color: rgba(255,255,255,0.72); margin: 0; max-width: 600px; }
.cta-banner .actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { color: var(--white); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { color: rgba(255,255,255,0.55); font-size: 0.9375rem; margin-top: 16px; max-width: 320px; }
.footer h4 {
  color: var(--white);
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: rgba(255,255,255,0.65); font-size: 0.9375rem; }
.footer ul a:hover { color: var(--lime-400); }
.footer-contact { font-size: 0.9375rem; color: rgba(255,255,255,0.65); }
.footer-contact strong { display: block; color: var(--white); font-weight: 600; margin-bottom: 2px; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-contact > div { margin-bottom: 14px; }
.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--lime-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.65); }
.footer-bottom a:hover { color: var(--lime-400); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info { display: grid; gap: 18px; }
.contact-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--t);
}
.contact-item:hover {
  border-color: var(--ink-900);
  box-shadow: var(--shadow);
}
.contact-item .icon {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  background: var(--ink-900);
  color: var(--lime-500);
  border-radius: 12px;
  display: grid;
  place-items: center;
}
.contact-item .icon svg { width: 22px; height: 22px; }
.contact-item h4 { margin: 0 0 6px; font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.contact-item p { margin: 0; color: var(--ink-900); font-weight: 500; }
.contact-item a { color: var(--ink-900); font-weight: 500; }
.contact-item a:hover { color: var(--lime-700); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 8px; }
.contact-form .subtle { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-900);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--white);
  transition: all var(--t);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 0;
  border-color: var(--lime-600);
  box-shadow: 0 0 0 4px rgba(184, 229, 50, 0.2);
}
.form-actions { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.form-note { font-size: 0.8125rem; color: var(--text-muted); }

/* ---------- Map ---------- */
.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-embed {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ---------- About content ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
}
.value-card .num {
  font-size: 0.8125rem;
  color: var(--lime-700);
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  display: inline-block;
  background: var(--lime-50);
  padding: 4px 10px;
  border-radius: 999px;
}
.value-card h3 { font-size: 1.125rem; margin-bottom: 8px; }
.value-card p { margin: 0; font-size: 0.9375rem; }

/* Decorative visual block */
.visual-block {
  aspect-ratio: 5 / 4;
  background: var(--ink-900);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.visual-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 30%, rgba(184, 229, 50, 0.28), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(184, 229, 50, 0.12), transparent 55%);
}
.visual-block svg { position: relative; width: 70%; height: auto; }

/* Coverage list (countries / regions) */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.coverage-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-900);
  transition: all var(--t);
}
.coverage-item:hover { border-color: var(--lime-500); transform: translateY(-1px); }
.coverage-item .flag {
  width: 22px; height: 16px;
  border-radius: 2px;
  background: var(--gray-200);
  flex-shrink: 0;
  display: grid; place-items: center;
  font-size: 12px;
}

/* Mode/transport pills */
.mode-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-700);
  background: var(--white);
}
.mode-pill svg { width: 16px; height: 16px; color: var(--lime-600); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
[data-mk], [data-en] { display: none !important; }
html[lang="mk"] [data-mk] { display: revert !important; }
html[lang="en"] [data-en] { display: revert !important; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 420px; margin: 0 auto; }
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; gap: 28px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-banner { flex-direction: column; align-items: flex-start; text-align: left; }
}
@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-bottom: 1px solid var(--gray-100); }
  .nav-links a.is-active::after { display: none; }
  .nav-actions .btn { display: none; }
  .stats { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .brand-text { display: none; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeUp 700ms ease both; }
.fade-in.delay-1 { animation-delay: 100ms; }
.fade-in.delay-2 { animation-delay: 200ms; }
.fade-in.delay-3 { animation-delay: 300ms; }
