/* ══════════════════════════════════════════════════════════════════
   ILC Logistic — Design System v2.0
   Brand extracted from logo: #14283c navy · #2878a0 teal · #286478 deep teal
   Stack: Lenis + GSAP + ScrollTrigger
   ══════════════════════════════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────────────────────────────── */
:root {
  --bg:           #09141f;
  --bg-alt:       #0e1e2e;
  --surface:      #14283c;   /* logo primary dark */
  --surface-2:    #1a3349;
  --surface-3:    #203d56;

  /* Brand teal — from logo dominant colors */
  --orange:       #2878a0;   /* primary brand teal (replaces orange throughout) */
  --orange-lt:    #3a9ac8;   /* lighter teal for hover */
  --orange-glow:  rgba(40, 120, 160, 0.13);
  --orange-border:rgba(40, 120, 160, 0.28);

  --blue:         #286478;   /* deep teal from logo */
  --blue-lt:      #78b4c8;   /* light steel blue from logo */

  --text:         #eef4fb;
  --text-muted:   #7a96b0;
  --text-dim:     #3d5470;

  --border:       rgba(255, 255, 255, 0.06);
  --border-2:     rgba(255, 255, 255, 0.10);

  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);

  --nav-h:        156px;
  --container:    1200px;
  --r-sm:         10px;
  --r-md:         16px;
  --r-lg:         24px;
}

/* ─── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }

/* ─── Container ─────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Buttons ───────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: 100px;
  transition: all 0.25s var(--ease-out);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
.btn--sm  { font-size: 0.8125rem; padding: 8px 18px; }
.btn--md  { font-size: 0.9375rem; padding: 12px 26px; }
.btn--lg  { font-size: 1rem;      padding: 15px 32px; }
.btn--full { width: 100%; justify-content: center; }

.btn--primary {
  background: var(--orange);
  color: #fff;
  border: 1.5px solid var(--orange);
  box-shadow: 0 4px 16px rgba(40, 120, 160, 0.25);
}
.btn--primary:hover {
  background: var(--orange-lt);
  border-color: var(--orange-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(40, 120, 160, 0.45);
}
.btn--primary:active { transform: translateY(0); }

.btn--outline {
  border: 1.5px solid var(--border-2);
  color: var(--text);
  background: transparent;
}
.btn--outline:hover {
  border-color: var(--orange-border);
  color: var(--orange-lt);
  background: var(--orange-glow);
  transform: translateY(-1px);
}

.btn--ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn--wa {
  background: rgba(37, 211, 102, 0.1);
  border: 1.5px solid rgba(37, 211, 102, 0.25);
  color: #25d366;
}
.btn--wa:hover {
  background: rgba(37, 211, 102, 0.18);
  border-color: rgba(37, 211, 102, 0.5);
  transform: translateY(-1px);
}

/* ─── Navigation ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out),
              border-color 0.4s,
              backdrop-filter 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.is-scrolled {
  background: rgba(7, 17, 30, 0.88);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  backdrop-filter: blur(24px) saturate(160%);
  border-color: var(--border);
}

.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav__logo { flex-shrink: 0; }
.nav__logo-img {
  height: 140px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-left: auto;
}
.nav__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 1.5px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease-out);
  transform-origin: left;
}
.nav__link:hover { color: var(--text); }
.nav__link:hover::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--text); }
.nav__link.is-active::after { transform: scaleX(1); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 24px;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
}
.nav__hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 24px;
  flex-direction: column;
  gap: 8px;
  z-index: 999;
  animation: slideDown 0.3s var(--ease-out);
}
.mobile-menu.is-open { display: flex; }
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.mobile-menu__link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu__link:hover { color: var(--orange); padding-left: 6px; }
.mobile-menu .btn { margin-top: 8px; }

/* ─── Hero ──────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-h) + 80px) 24px 160px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(13, 32, 64, 0.65) 0%, rgba(9, 20, 31, 0.78) 65%),
    url('../../img/hero-bg.jpg') center / cover no-repeat;
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}
.hero__glow--1 {
  width: 500px; height: 400px;
  top: -100px; left: 20%;
  background: radial-gradient(circle, rgba(40, 120, 160, 0.18) 0%, transparent 70%);
}
.hero__glow--2 {
  width: 400px; height: 350px;
  top: 20%; right: 10%;
  background: radial-gradient(circle, rgba(120, 180, 200, 0.07) 0%, transparent 70%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  width: 100%;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-glow);
  border: 1px solid var(--orange-border);
  padding: 7px 18px;
  border-radius: 100px;
  margin-bottom: 36px;
  opacity: 0;
}

.dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  animation: blink 2.4s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero__headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.75rem, 7.5vw, 6.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
}
.line {
  display: block;
  opacity: 0;
  transform: translateY(48px);
}
.line--accent { color: var(--orange); }

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 44px;
  opacity: 0;
}
.br-md { display: none; }
@media (min-width: 640px) { .br-md { display: block; } }

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
}

/* Stats strip */
.hero__stats {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  margin-top: 72px;
  padding: 28px 48px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border-2);
  border-radius: var(--r-lg);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 860px;
  opacity: 0;
  transform: translateY(24px);
}

.stat {
  flex: 1;
  text-align: center;
}
.stat__top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
}
.stat__num, .stat__suffix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
}
.stat__label {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 7px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat__divider {
  width: 1px; height: 48px;
  background: var(--border-2);
  flex-shrink: 0;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, transparent, var(--orange));
  animation: scrollGrow 2.4s ease-in-out infinite;
}
@keyframes scrollGrow {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ─── Section commons ───────────────────────────────────────────── */
.section { padding: 120px 0; }
.section--alt { background: var(--bg-alt); }

.section__header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.section__eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 16px;
}
.section__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.section__sub {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Services Bento Grid ───────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Featured card — visual emphasis only, no row span */
.service-card--featured {
  grid-column: 1;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: border-color 0.3s, transform 0.35s var(--ease-out), box-shadow 0.35s;
  cursor: pointer;
  color: inherit;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--orange-glow) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.service-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-5px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5),
              0 0 0 1px rgba(40, 120, 160, 0.12);
}
.service-card:hover::after { opacity: 1; }

.service-card--featured {
  background: linear-gradient(160deg, var(--surface-2), var(--surface));
  border-color: rgba(40, 120, 160, 0.14);
  padding: 36px 32px;
}

.service-card__img {
  width: calc(100% + 52px);
  margin: -28px -26px 20px;
  height: 160px;
  overflow: hidden;
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  position: relative;
  z-index: 1;
}
.service-card--featured .service-card__img {
  height: 180px;
  width: calc(100% + 72px);
  margin: -36px -32px 22px;
}
.service-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease-out);
  display: block;
}
.service-card:hover .service-card__img img { transform: scale(1.07); }

.service-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(9, 20, 31, 0.15) 0%,
    rgba(9, 20, 31, 0.55) 100%
  );
  pointer-events: none;
}

.service-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.service-card--featured .service-card__title { font-size: 1.3125rem; }

.service-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  position: relative;
  z-index: 1;
}

.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--orange);
  margin-top: 20px;
  transition: gap 0.2s var(--ease-out);
  position: relative;
  z-index: 1;
}
.service-card:hover .service-card__cta { gap: 10px; }

/* ─── About ─────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__text .section__eyebrow { text-align: left; }
.about__text .section__title   { text-align: left; margin-bottom: 0; }

.about__desc {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin: 24px 0 0;
}

.about__quote {
  font-size: 0.9375rem;
  color: var(--text-muted);
  border-left: 2px solid var(--orange);
  padding-left: 20px;
  margin: 28px 0 32px;
  font-style: italic;
  line-height: 1.75;
}

.about__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 0;
  overflow: hidden;
  transition: all 0.25s var(--ease-out);
}
.value-card:hover {
  border-color: var(--orange-border);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
}

.value-card__img {
  position: relative;
  height: 130px;
  overflow: hidden;
}
.value-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease-out);
  display: block;
}
.value-card:hover .value-card__img img { transform: scale(1.07); }

.value-card__img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,20,31,0.2) 0%, rgba(9,20,31,0.65) 100%);
  pointer-events: none;
}
.value-card__num {
  position: absolute;
  bottom: 10px;
  left: 14px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(9,20,31,0.7);
  border: 1px solid var(--orange-border);
  padding: 3px 8px;
  border-radius: 100px;
  z-index: 2;
}
.value-card__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 8px;
  padding: 16px 18px 0;
}
.value-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  padding: 0 18px 18px;
}

/* ─── Process ───────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: center;
}

.process-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--orange);
  font-size: 1rem;
  opacity: 0.4;
  flex-shrink: 0;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(28px);
  transition: border-color 0.3s, transform 0.35s var(--ease-out), box-shadow 0.35s;
  height: 100%;
}
.process-step:hover {
  border-color: var(--orange-border);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.process-step__img {
  position: relative;
  height: 180px;
  overflow: hidden;
}
.process-step__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.55s var(--ease-out);
  display: block;
}
.process-step:hover .process-step__img img { transform: scale(1.07); }

.process-step__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,20,31,0.15) 0%, rgba(9,20,31,0.7) 100%);
  pointer-events: none;
}
.process-step__num {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--orange);
  background: rgba(9,20,31,0.75);
  border: 1px solid var(--orange-border);
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.process-step__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  padding: 24px 32px 0;
}
.process-step__desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 0 32px 28px;
}

/* ─── CTA Banner ────────────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  overflow: hidden;
}
.cta-banner__glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(40, 120, 160, 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
}
.cta-banner__title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.cta-banner__sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: 8px;
}
.cta-banner__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ─── Partner Band (Impacto Labs) ───────────────────────────────── */
.partner-band {
  background: linear-gradient(90deg, #0d1e2f 0%, #112030 50%, #0d1e2f 100%);
  border-top: 1px solid rgba(40, 120, 160, 0.18);
  border-bottom: 1px solid rgba(40, 120, 160, 0.18);
  padding: 22px 0;
}
.partner-band__inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.partner-band__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(40, 120, 160, 0.12);
  border: 1px solid rgba(40, 120, 160, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 1.1rem;
}
.partner-band__text {
  flex: 1;
  min-width: 200px;
}
.partner-band__label {
  font-size: 0.7rem;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 3px;
}
.partner-band__msg {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.partner-band__msg strong { color: var(--text); font-weight: 600; }

.btn--outline-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(40, 120, 160, 0.45);
  color: var(--blue-lt);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.btn--outline-teal:hover {
  background: rgba(40, 120, 160, 0.12);
  border-color: rgba(40, 120, 160, 0.7);
  color: var(--text);
}

/* ─── Contact ───────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact__info .section__eyebrow { text-align: left; }
.contact__info .section__title   { text-align: left; margin-bottom: 0; }
.contact__sub {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.75;
  margin: 16px 0 36px;
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item__icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange-glow);
  border: 1px solid var(--orange-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.contact-item strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-bottom: 4px;
}
.contact-item span, .contact-item a {
  display: block;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-item a { transition: color 0.2s; }
.contact-item a:hover { color: var(--orange); }

.contact__map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--blue-lt);
  transition: color 0.2s, gap 0.2s;
  margin-top: 8px;
}
.contact__map-link:hover { color: var(--orange); gap: 12px; }

/* Contact form */
.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.field { display: flex; flex-direction: column; gap: 8px; }
.field__label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}
.field__input {
  background: var(--bg-alt);
  border: 1px solid var(--border-2);
  border-radius: var(--r-sm);
  padding: 13px 16px;
  color: var(--text);
  font-size: 0.9375rem;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}
.field__input::placeholder { color: var(--text-dim); }
.field__input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
  background: var(--surface-2);
}

.field__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' viewBox='0 0 12 7'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a96b0' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}
.field__select option { background: var(--bg-alt); }
.field__textarea { resize: vertical; min-height: 110px; }

.form-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-dim);
  text-align: center;
  justify-content: center;
}
.form-note i { color: var(--orange); }

/* ─── WhatsApp Float ────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s;
  animation: waFloat 3s ease-in-out 2s infinite;
}
.wa-float:hover {
  transform: scale(1.12) translateY(-2px);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.5);
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

/* ─── Footer ────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 72px 0 32px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer__logo {
  height: 140px; width: auto;
  object-fit: contain;
  margin-bottom: 18px;
}
.footer__tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 24px;
}
.footer__social {
  display: flex;
  gap: 10px;
}
.footer__social a {
  width: 38px; height: 38px;
  border: 1px solid var(--border-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: all 0.2s;
}
.footer__social a:hover {
  border-color: var(--orange-border);
  color: var(--orange);
  background: var(--orange-glow);
  transform: translateY(-2px);
}

.footer__nav h4,
.footer__contact-info h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 20px;
}
.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }
.footer__nav a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color 0.2s, padding-left 0.2s;
}
.footer__nav a:hover { color: var(--orange); padding-left: 4px; }

.footer__contact-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  line-height: 1.5;
}
.footer__contact-info i { color: var(--orange); margin-top: 2px; flex-shrink: 0; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-dim);
}
.footer__bottom a {
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__bottom a:hover { color: var(--orange); }

/* ─── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--featured {
    grid-column: 1 / 3;
    grid-row: auto;
  }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px 24px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .nav__links, .btn--wa { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions { gap: 0; margin-left: auto; }

  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .hero__stats {
    flex-direction: column;
    padding: 24px 20px;
    gap: 20px;
  }
  .stat__divider { width: 100%; height: 1px; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .service-card--featured { grid-column: 1; }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .process-connector { display: none; }
  .process-step { height: auto; }

  .cta-banner { padding: 64px 0; }
  .cta-banner__inner { flex-direction: column; align-items: flex-start; gap: 32px; }

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

  .form-row { grid-template-columns: 1fr; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }

  .section { padding: 80px 0; }
  .wa-float { width: 50px; height: 50px; font-size: 1.375rem; }
}

@media (max-width: 480px) {
  .hero__headline { font-size: 2.5rem; }
  .hero__stats { margin-top: 48px; }
  .btn--lg { padding: 13px 24px; font-size: 0.9375rem; }
  .cta-banner__actions { flex-direction: column; width: 100%; }
  .cta-banner__actions .btn { width: 100%; justify-content: center; }
}
