/* ============================================
   FBLog — Sistema Visual
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=JetBrains+Mono:wght@300;400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

:root {
  /* Surfaces — deep teal/petrol like the brand sheet */
  --bg-0: #05222F;
  --bg-1: #0B3548;
  --bg-2: #114B62;
  --bg-3: #1A6280;
  --surface-glass: rgba(11, 53, 72, 0.72);

  /* Lines */
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.16);
  --line-strong: rgba(255, 255, 255, 0.26);

  /* Text */
  --ink: #F5F8FA;
  --ink-2: #B9C7CF;
  --muted: #7C8C95;
  --muted-2: #4F606A;

  /* Brand accent — teal cyan (the lightest swatch / "LOG" color) */
  --amber: #34BFC4;          /* keeping the variable name for compatibility */
  --amber-2: #5AD7DA;        /* lighter teal */
  --amber-soft: rgba(52, 191, 196, 0.14);
  --amber-line: rgba(52, 191, 196, 0.36);

  /* Aliases that read better in source */
  --teal: #34BFC4;
  --teal-2: #5AD7DA;
  --teal-soft: rgba(52, 191, 196, 0.14);

  /* Deep teal — for shadows and supporting surfaces (3rd swatch) */
  --petrol: #02556B;
  --petrol-2: #023D4F;

  /* Optional warm signal — used sparingly */
  --signal-green: #57E0A5;
  --signal-red: #FF6B5C;

  /* Brand support color */
  --night: #042634;
  --steel: #8B98A0;

  /* Type */
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --font-serif: 'Instrument Serif', Georgia, serif;

  /* Layout */
  --max-w: 1440px;
  --gutter: clamp(20px, 4vw, 56px);
  --nav-h: 76px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--bg-0);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }

::selection { background: var(--amber); color: var(--bg-0); }

/* ============================================
   Layout
   ============================================ */

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.wrap-fluid {
  width: 100%;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

/* ============================================
   Typography
   ============================================ */

.eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--amber);
  display: inline-block;
}

.eyebrow-muted {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.h-display {
  font-size: clamp(48px, 8.5vw, 124px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.035em;
}

.h-xl { font-size: clamp(40px, 6vw, 88px); line-height: 0.98; letter-spacing: -0.03em; }
.h-lg { font-size: clamp(32px, 4.2vw, 64px); line-height: 1.02; letter-spacing: -0.025em; }
.h-md { font-size: clamp(24px, 2.6vw, 36px); line-height: 1.1; letter-spacing: -0.02em; }
.h-sm { font-size: clamp(18px, 1.4vw, 22px); line-height: 1.25; letter-spacing: -0.01em; }

.serif-it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.lead {
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 400;
  max-width: 60ch;
  text-wrap: pretty;
}

.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
}

.mono {
  font-family: var(--font-mono);
  font-feature-settings: "tnum" 1, "zero" 1;
}

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

/* ============================================
   Navigation
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(7,9,13,0.85) 0%, rgba(7,9,13,0.55) 70%, transparent 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}

.nav.is-scrolled {
  background: rgba(7,9,13,0.92);
  border-bottom-color: var(--line);
}

.nav-inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  height: 44px;
}

.brand-img {
  height: 32px;
  width: auto;
  display: block;
}
.footer .brand-img { height: 44px; margin-bottom: 24px; }
@media (max-width: 600px) {
  .brand-img { height: 28px; }
}

.nav-links {
  display: flex;
  gap: 8px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
  padding: 10px 14px;
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255,255,255,0.04);
}

.nav-links a.is-active {
  color: var(--amber);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-meta .dot {
  width: 6px;
  height: 6px;
  background: var(--signal-green);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(107,216,155,0.18);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

@media (max-width: 920px) {
  .nav-links, .nav-meta { display: none; }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: -0.005em;
  padding: 12px 22px;
  border-radius: 999px;
  transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: var(--amber);
  color: var(--bg-0);
}
.btn-primary:hover {
  background: var(--amber-2);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover {
  border-color: var(--line-strong);
  background: rgba(255,255,255,0.03);
}

.btn-solid {
  background: var(--ink);
  color: var(--bg-0);
}
.btn-solid:hover {
  background: var(--amber);
}

.btn-lg {
  padding: 16px 28px;
  font-size: 15px;
}

.btn-arrow {
  display: inline-block;
  transition: transform .25s var(--ease);
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* Link arrow */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--amber);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: gap .2s var(--ease);
}
.link-arrow:hover { gap: 14px; }

/* ============================================
   Section header
   ============================================ */

.section {
  padding: clamp(80px, 10vw, 160px) 0;
  position: relative;
}

.section-tight { padding: clamp(60px, 7vw, 110px) 0; }

.section-header {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,1.4fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 6vw, 96px);
}

@media (max-width: 820px) {
  .section-header { grid-template-columns: 1fr; gap: 24px; }
}

/* ============================================
   Footer
   ============================================ */

.footer {
  background: var(--bg-0);
  border-top: 1px solid var(--line);
  padding: clamp(64px, 8vw, 112px) 0 32px;
  position: relative;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 64px);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line);
}

@media (max-width: 820px) {
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-col a {
  font-size: 15px;
  color: var(--ink-2);
  transition: color .2s var(--ease);
}
.footer-col a:hover { color: var(--amber); }

/* Footer phone — emphasized */
.footer-phone {
  display: block;
  margin-top: 8px;
  padding: 14px 16px;
  border: 1px solid var(--line-2);
  border-radius: 12px;
  background: rgba(52, 191, 196, 0.06);
  transition: border-color .25s var(--ease), background .25s var(--ease), transform .25s var(--ease);
  text-decoration: none;
}
.footer-phone:hover {
  border-color: var(--teal);
  background: rgba(52, 191, 196, 0.12);
  transform: translateY(-2px);
}
.footer-phone-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer-phone-num {
  display: block;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: 4px;
}
.footer-phone:hover .footer-phone-num {
  color: var(--teal-2);
}
.footer-socials {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0 0 18px 0;
  padding: 0;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.footer-socials a:hover {
  background: var(--teal);
  color: var(--bg-0);
  border-color: var(--teal);
  transform: translateY(-2px);
}

.footer-cta {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  max-width: 18ch;
  text-wrap: balance;
}

.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  flex-wrap: wrap;
}

.footer-bottom a:hover { color: var(--amber); }

/* Footer wordmark giant */
.footer-mark {
  width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(80px, 22vw, 320px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--bg-1);
  user-select: none;
  pointer-events: none;
  text-align: center;
  margin-top: 40px;
  overflow: hidden;
}

/* ============================================
   Utility chips / badges
   ============================================ */

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-2);
}

.chip-amber {
  background: var(--amber-soft);
  border-color: var(--amber-line);
  color: var(--amber);
}

/* ============================================
   Reveal-on-scroll — JS toggles inline styles
   so we don't depend on CSS transitions/animations
   ticking inside the iframe preview.
   ============================================ */

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
}
html.js [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* ============================================
   Marquee
   ============================================ */

.marquee {
  display: flex;
  overflow: hidden;
  user-select: none;
  border-block: 1px solid var(--line);
  padding: 20px 0;
  background: var(--bg-1);
}

.marquee-track {
  display: flex;
  gap: 56px;
  animation: marquee 38s linear infinite;
  flex-shrink: 0;
  padding-right: 56px;
}

.marquee-item {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 44px);
  letter-spacing: -0.02em;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 56px;
  white-space: nowrap;
}

.marquee-item::after {
  content: '✦';
  color: var(--amber);
  font-size: 0.6em;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   Number ticker
   ============================================ */

.ticker-num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-feature-settings: "tnum" 1;
}

/* ============================================
   Cards
   ============================================ */

.card {
  background: var(--bg-1);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition: border-color .25s var(--ease), background .25s var(--ease);
}
.card:hover {
  border-color: var(--line-2);
  background: var(--bg-2);
}

/* ============================================
   Helpers
   ============================================ */

.row { display: flex; align-items: center; gap: 12px; }
.col { display: flex; flex-direction: column; }
.between { justify-content: space-between; }
.center { justify-content: center; }
.gap-sm { gap: 8px; } .gap-md { gap: 16px; } .gap-lg { gap: 32px; }
.mt-sm { margin-top: 16px; } .mt-md { margin-top: 32px; } .mt-lg { margin-top: 64px; }

.divider {
  height: 1px;
  background: var(--line);
  width: 100%;
}

/* ============================================
   Floating WhatsApp FAB
   ============================================ */

.fab-whats {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 0;
  height: 60px;
  padding: 0 8px 0 8px;
  border-radius: 999px;
  background: #25D366;
  color: #06281A;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.005em;
  white-space: nowrap;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 0 6px rgba(37, 211, 102, 0.16);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), padding .35s var(--ease), gap .35s var(--ease);
  overflow: hidden;
  cursor: pointer;
}
.fab-whats:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.5), 0 0 0 8px rgba(37, 211, 102, 0.24);
  padding-right: 22px;
  gap: 10px;
}

.fab-whats-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #06281A;
  display: grid;
  place-items: center;
  color: #25D366;
  flex-shrink: 0;
}

.fab-whats-label {
  max-width: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-width .35s var(--ease), opacity .25s var(--ease);
}
.fab-whats:hover .fab-whats-label {
  max-width: 180px;
  opacity: 1;
}

/* Subtle pulse ring */
.fab-whats::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
  animation: fabPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 0 0 22px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@media (max-width: 600px) {
  .fab-whats { height: 56px; }
  .fab-whats-icon { width: 40px; height: 40px; }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  padding: calc(var(--nav-h) + 40px) 0 64px;
  overflow: hidden;
  background: var(--bg-0);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.hero-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Strong bottom-to-top gradient so text reads */
    linear-gradient(180deg, rgba(5,34,47,0.10) 0%, rgba(5,34,47,0.45) 40%, rgba(5,34,47,0.92) 95%),
    /* Left-side wash to anchor text */
    linear-gradient(90deg, rgba(5,34,47,0.78) 0%, rgba(5,34,47,0.35) 45%, rgba(5,34,47,0) 75%),
    /* Brand cyan-green highlight in top-right (mirrors the brand sheet) */
    radial-gradient(ellipse at 92% 8%, rgba(80, 230, 200, 0.22) 0%, transparent 45%);
  z-index: 1;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.10 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  opacity: 0.5;
}

.hero-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: calc(100vh - var(--nav-h) - 40px - 64px);
  gap: 32px;
}

.hero-meta-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 16px;
}

.hero-title {
  font-size: clamp(48px, 9vw, 152px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.hero-title .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}

.hero-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 80px);
  align-items: end;
}

@media (max-width: 820px) {
  .hero-bottom { grid-template-columns: 1fr; }
}

.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-side-stat {
  border-left: 1px solid var(--line-2);
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.hero-side-stat .num {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.hero-side-stat .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-scroll {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--amber) 0%, transparent 100%);
  animation: scrollLine 2s var(--ease) infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); }
  50% { transform: scaleY(1); }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Placeholder photo for hero */
.placeholder-photo {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,181,53,0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 20%, rgba(11,36,71,0.6) 0%, transparent 60%),
    linear-gradient(135deg, #1a1f2b 0%, #0e1218 50%, #07090d 100%);
  position: relative;
}

.placeholder-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.7' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.10 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* Asphalt-like background with horizon */
.placeholder-photo.road {
  background:
    /* Brand teal gradient — petrol left, teal-cyan right */
    radial-gradient(ellipse at 95% 0%, rgba(80, 230, 180, 0.32) 0%, transparent 45%),
    radial-gradient(ellipse at 100% 50%, rgba(52, 191, 196, 0.22) 0%, transparent 55%),
    linear-gradient(120deg, #04364A 0%, #0B5067 50%, #137487 100%);
}
.placeholder-photo.road::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* light flare top-right */
    radial-gradient(ellipse at 90% 10%, rgba(150, 255, 220, 0.18) 0%, transparent 35%),
    /* subtle vignette */
    radial-gradient(ellipse at 50% 100%, rgba(2, 30, 42, 0.6) 0%, transparent 60%);
}

/* Wireframe road lines — perspective from below */
.placeholder-photo.road .road-lines {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200%;
  height: 38%;
  background:
    repeating-linear-gradient(
      to bottom,
      transparent 0,
      transparent 22%,
      rgba(255, 255, 255, 0.35) 22%,
      rgba(255, 255, 255, 0.35) 24%
    );
  clip-path: polygon(49% 0%, 51% 0%, 82% 100%, 18% 100%);
  z-index: 2;
  opacity: 0.6;
}
.placeholder-photo.road .road-side-l,
.placeholder-photo.road .road-side-r {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 38%;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.45) 100%);
}
.placeholder-photo.road .road-side-l { left: 22%; transform: skewX(-22deg); transform-origin: bottom; }
.placeholder-photo.road .road-side-r { right: 22%; transform: skewX(22deg); transform-origin: bottom; }

/* Truck silhouette */
.placeholder-photo .truck-silh {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 38%;
  height: 28%;
  z-index: 3;
}
.placeholder-photo .truck-silh svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 8px 32px rgba(80, 230, 200, 0.18));
}

/* Dot pattern overlay on the road bg */
.placeholder-photo .dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.18) 1px, transparent 1.5px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, transparent 30%, black 50%, black 80%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 30%, black 50%, black 80%, transparent 100%);
  opacity: 0.4;
  z-index: 1;
}

/* ============================================
   Counter strip
   ============================================ */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 820px) {
  .stat-strip { grid-template-columns: repeat(2, 1fr); }
}

.stat-cell {
  padding: clamp(24px, 3vw, 48px);
  border-right: 1px solid var(--line);
  display: grid;
  gap: 12px;
  position: relative;
  transition: background .3s var(--ease);
}
.stat-cell:hover { background: var(--bg-1); }
.stat-cell:last-child { border-right: none; }

@media (max-width: 820px) {
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-child(1), .stat-cell:nth-child(2) { border-bottom: 1px solid var(--line); }
}

.stat-cell .stat-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.stat-cell .stat-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.6vw, 80px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat-cell .stat-suffix {
  font-size: 0.4em;
  color: var(--amber);
  font-weight: 500;
}

.stat-cell .stat-foot {
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.4;
  max-width: 28ch;
}

/* ============================================
   Brazil map — full-bleed video section
   ============================================ */

.map-fullbleed {
  position: relative;
  min-height: 100vh;
  padding: clamp(80px, 10vw, 140px) 0;
  overflow: hidden;
  background: var(--bg-0);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 820px) {
  .map-fullbleed {
    min-height: 0;
    padding: clamp(72px, 12vw, 100px) 0;
  }
}

.map-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.map-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.map-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    /* Strong bottom-to-top gradient so text reads — same pattern as hero */
    linear-gradient(180deg, rgba(5,34,47,0.40) 0%, rgba(5,34,47,0.55) 40%, rgba(5,34,47,0.92) 95%),
    /* Left-side wash to anchor headline */
    linear-gradient(90deg, rgba(5,34,47,0.78) 0%, rgba(5,34,47,0.35) 45%, rgba(5,34,47,0) 75%),
    /* Brand cyan-green highlight in top-right (mirrors the brand sheet) */
    radial-gradient(ellipse at 92% 8%, rgba(80, 230, 200, 0.18) 0%, transparent 45%);
}

.map-content {
  position: relative;
  z-index: 2;
  display: grid;
  gap: clamp(56px, 7vw, 96px);
}

.map-header {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  column-gap: clamp(32px, 6vw, 96px);
  row-gap: 24px;
  align-items: end;
  max-width: 1180px;
}

@media (max-width: 820px) {
  .map-header { grid-template-columns: 1fr; align-items: start; }
}

.map-header > div:first-child > .eyebrow {
  display: inline-flex;
}

.map-header .h-display {
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  text-wrap: balance;
  margin-top: 20px;
}
.map-header .h-display .serif-it {
  color: var(--teal-2);
}

.map-header .lead {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--ink-2);
  max-width: 44ch;
  padding-bottom: 6px; /* nudge lead text to share baseline with headline */
}

/* Branch stack — hero matriz on top, 4 mini filiais below */
.branch-stack {
  display: grid;
  gap: 1px;
  background: rgba(141, 238, 242, 0.18);
  border: 1px solid rgba(141, 238, 242, 0.18);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.branch-hero {
  background: linear-gradient(135deg, rgba(52, 191, 196, 0.22) 0%, rgba(5, 34, 47, 0.85) 60%, rgba(5, 34, 47, 0.85) 100%);
  padding: clamp(24px, 3vw, 40px);
  display: grid;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.branch-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--teal);
}

.branch-hero .bh-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-2);
}

.branch-hero .bh-main {
  display: grid;
  gap: 6px;
}
.branch-hero h3 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  color: var(--ink);
}
.branch-hero .bh-state {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.branch-hero .bh-meta {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 60ch;
}

/* Filiais row */
.branch-filiais {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(141, 238, 242, 0.10);
  margin: 0;
  padding: 0;
}

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

.branch-mini {
  background: rgba(5, 34, 47, 0.78);
  padding: clamp(18px, 2vw, 26px);
  display: grid;
  gap: 4px;
  align-content: start;
  transition: background .25s var(--ease);
  cursor: pointer;
}
.branch-mini:hover {
  background: rgba(11, 53, 72, 0.92);
}

.branch-mini .bm-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-2);
}
.branch-mini .bm-city {
  font-family: var(--font-display);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-top: 6px;
  line-height: 1;
}
.branch-mini .bm-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* legacy branch-strip kept for compat (no longer used on home) */
.branch-strip {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(141, 238, 242, 0.18);
  border: 1px solid rgba(141, 238, 242, 0.18);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 1100px) {
  .branch-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .branch-strip > li:nth-child(4) { border-right: 1px solid rgba(141, 238, 242, 0.18); }
}
@media (max-width: 640px) {
  .branch-strip { grid-template-columns: repeat(2, 1fr); }
}

.branch-card {
  background: rgba(5, 34, 47, 0.78);
  padding: clamp(20px, 2.4vw, 32px);
  display: grid;
  gap: 6px;
  align-content: start;
  position: relative;
  transition: background .3s var(--ease);
  cursor: pointer;
  min-height: 160px;
}
.branch-card:hover {
  background: rgba(11, 53, 72, 0.92);
}
.branch-card.is-matriz {
  background: linear-gradient(135deg, rgba(52, 191, 196, 0.18) 0%, rgba(5, 34, 47, 0.85) 100%);
}
.branch-card.is-matriz:hover {
  background: linear-gradient(135deg, rgba(52, 191, 196, 0.30) 0%, rgba(11, 53, 72, 0.92) 100%);
}

.branch-card .branch-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-2);
}
.branch-card .branch-city {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-top: 8px;
}
.branch-card .branch-state {
  font-size: 13px;
  color: var(--ink-2);
}
.branch-card .branch-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Map footer */
.map-foot {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
}

.map-foot-stat {
  display: grid;
  gap: 6px;
}
.map-foot-stat .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--ink);
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.map-foot-stat .suf {
  font-size: 0.4em;
  color: var(--teal-2);
}
.map-foot-stat .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  max-width: 36ch;
}

/* legacy map-section keeps existing styles for sub-pages if needed */

.brazil-svg {
  width: 100%;
  height: auto;
  display: block;
}

.brazil-svg .brazil-outline {
  stroke-dasharray: 1400;
  stroke-dashoffset: 0;
}

.brazil-svg .mesh-edges .edge {
  stroke: rgba(159, 243, 220, 0.13);
  transition: stroke .35s var(--ease);
}
.brazil-svg .mesh-edges .edge-near {
  stroke: rgba(159, 243, 220, 0.32);
}

.brazil-svg .mesh-dots .dot {
  fill: rgba(159, 243, 220, 0.45);
  transition: fill .3s var(--ease);
}
.brazil-svg .mesh-dots .dot-near {
  fill: rgba(159, 243, 220, 0.7);
}
.brazil-svg .mesh-dots .dot-close {
  fill: var(--teal);
}

.brazil-svg .pin-glow {
  animation: pinPulse 3s ease-in-out infinite;
  transform-origin: center;
}

.brazil-svg .pin-ring {
  transform-origin: center;
  animation: pinRing 2.6s ease-out infinite;
}

@keyframes pinPulse {
  0%, 100% { opacity: 0.65; }
  50% { opacity: 1; }
}

@keyframes pinRing {
  0% { r: 8; stroke-opacity: 0.55; }
  100% { r: 28; stroke-opacity: 0; }
}

.brazil-svg .pin {
  transition: r .2s var(--ease);
}
.brazil-svg .pin.is-active,
.brazil-svg .pin:hover {
  r: 9;
}
.brazil-svg .pin.is-matriz.is-active,
.brazil-svg .pin.is-matriz:hover {
  r: 10;
}

.brazil-svg .pin-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  fill: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brazil-svg .conn-line {
  stroke-dasharray: 4 6;
  animation: dashFlow 4s linear infinite;
}

@keyframes dashFlow {
  to { stroke-dashoffset: -40; }
}

.map-figure {
  position: relative;
}

.branch-tip {
  position: absolute;
  transform: translate(-50%, calc(-100% - 18px));
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 14px 16px;
  min-width: 240px;
  max-width: 280px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  z-index: 5;
}

.branch-tip.is-visible { opacity: 1; }

.branch-tip::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: var(--bg-2);
  border-right: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}

.branch-tip .tip-eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.branch-tip .tip-city {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 4px;
}

.branch-tip .tip-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
  line-height: 1.45;
}

/* Branch list */
.branch-list {
  list-style: none;
  display: grid;
  gap: 0;
}

.branch-list li {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: color .25s var(--ease);
}
.branch-list li:hover, .branch-list li.is-active {
  color: var(--ink);
}
.branch-list li:hover .branch-num,
.branch-list li.is-active .branch-num {
  color: var(--amber);
}

.branch-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  width: 28px;
}

.branch-name {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-2);
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.branch-list li:hover .branch-name,
.branch-list li.is-active .branch-name {
  color: var(--ink);
  transform: translateX(6px);
}

.branch-role {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
}
.branch-role.is-matriz {
  color: var(--amber);
  border-color: var(--amber-line);
  background: var(--amber-soft);
}

/* ============================================
   Sectors
   ============================================ */

.sectors-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}

.sector {
  display: grid;
  grid-template-columns: minmax(120px, auto) 1fr minmax(0, 2fr) auto;
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
  padding: clamp(24px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: background .3s var(--ease);
}

@media (max-width: 820px) {
  .sector { grid-template-columns: auto 1fr; gap: 16px; }
  .sector .sector-desc, .sector .sector-icon { grid-column: 1 / -1; }
}

.sector::before {
  content: '';
  position: absolute;
  left: 0; right: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, var(--amber-soft) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}

.sector.is-open::before, .sector:hover::before { opacity: 1; }

.sector-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.sector-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1;
  transition: color .25s var(--ease), transform .25s var(--ease);
}

.sector.is-open .sector-title,
.sector:hover .sector-title {
  color: var(--amber);
}

.sector-desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 56ch;
  opacity: 0.7;
  transition: opacity .3s var(--ease);
}

.sector.is-open .sector-desc {
  opacity: 1;
}

.sector-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--ink-2);
  transition: border-color .3s var(--ease), color .3s var(--ease), background .3s var(--ease);
}

.sector.is-open .sector-icon,
.sector:hover .sector-icon {
  border-color: var(--amber);
  color: var(--amber);
  background: var(--amber-soft);
}

/* ============================================
   Clients wall — auto-fit grid (no marquee, no JS)
   ============================================ */

.clients-section {
  background: var(--bg-0);
  position: relative;
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
}

@media (min-width: 600px) {
  .client-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 900px) {
  .client-grid { grid-template-columns: repeat(5, 1fr); }
}
@media (min-width: 1200px) {
  .client-grid {
    /* 13 logos → first row 7, second row 6. Use 7-col grid with last row centered. */
    grid-template-columns: repeat(7, 1fr);
  }
  /* Center last row when total isn't divisible by 7 */
  .client-grid > .client-cell:nth-last-child(-n+6) {
    /* offset the second row by half a cell to center 6 of 7 */
  }
}

.client-cell {
  background: var(--bg-0);
  aspect-ratio: 1.6 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 1.6vw, 22px);
  position: relative;
  transition: background .25s var(--ease);
  text-decoration: none;
  overflow: hidden;
}
.client-cell:hover {
  background: var(--bg-1);
}

.client-cell img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.72;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.client-cell:hover img {
  opacity: 1;
  transform: scale(1.06);
}

.clients-foot {
  text-align: center;
  margin-top: 32px;
  font-size: 12px;
  letter-spacing: 0.08em;
}
.clients-foot a:hover { color: var(--teal-2); }

/* ============================================
   Fleet — white section: hero photos + type cards
   ============================================ */

.fleet-light {
  background: #F5F7F4;
  color: #082D3D;
  position: relative;
}

.fleet-light .eyebrow {
  color: var(--petrol);
}
.fleet-light .eyebrow::before {
  background: var(--petrol);
}

.fleet-light .h-xl {
  color: #082D3D;
}
.fleet-light .h-xl .serif-it {
  color: var(--teal);
}

.fleet-light .lead {
  color: #4A5860;
}

/* 3 hero photos side by side */
.fleet-hero-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
}

@media (max-width: 820px) {
  .fleet-hero-row { grid-template-columns: 1fr; }
}

.fleet-hero-fig {
  position: relative;
  margin: 0;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(0, 0, 0, 0.06) 0%, transparent 60%);
  aspect-ratio: 16 / 11;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 2vw, 24px);
}

.fleet-hero-fig img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 12px 24px rgba(8, 45, 61, 0.18));
}

.fleet-hero-fig figcaption {
  position: absolute;
  left: 16px;
  bottom: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--petrol);
}
.fleet-hero-fig figcaption span {
  display: inline-block;
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(8, 45, 61, 0.08);
}

/* Blocks */
.fleet-block-light {
  margin-top: clamp(56px, 6vw, 88px);
}

.fleet-block-head-light {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 18px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(8, 45, 61, 0.12);
}

.fleet-block-head-light h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #082D3D;
  display: flex;
  align-items: center;
  gap: 12px;
}
.fleet-block-head-light h3::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.fleet-block-count-light {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6B7880;
}

/* Cards grid */
.fleet-cards {
  display: grid;
  gap: 1px;
  background: rgba(8, 45, 61, 0.12);
  border: 1px solid rgba(8, 45, 61, 0.12);
  border-radius: 16px;
  overflow: hidden;
}

.fleet-cards-veh { grid-template-columns: repeat(2, 1fr); }
.fleet-cards-impl { grid-template-columns: repeat(2, 1fr); }

@media (min-width: 820px) {
  .fleet-cards-veh { grid-template-columns: repeat(4, 1fr); }
  .fleet-cards-impl { grid-template-columns: repeat(5, 1fr); }
}

.fleet-type-card {
  background: #FFFFFF;
  padding: clamp(24px, 2.6vw, 36px);
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 200px;
  position: relative;
  transition: background .25s var(--ease);
  cursor: default;
}
.fleet-type-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.fleet-type-card:hover { background: #FAFCFB; }
.fleet-type-card:hover::after { transform: scaleX(1); }

.ftc-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--teal);
}

.fleet-type-card h4 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #082D3D;
  margin-top: 8px;
}

.fleet-type-card p {
  font-size: 13px;
  line-height: 1.5;
  color: #4A5860;
  margin-top: 8px;
}

.fleet-foot-light {
  text-align: center;
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #6B7880;
}
.fleet-foot-light a {
  color: var(--petrol);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}
.fleet-foot-light a:hover { color: var(--teal); }

/* Mission section */
.mission {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}

@media (max-width: 820px) {
  .mission-grid { grid-template-columns: 1fr; }
}

.mission-quote {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 48px);
  line-height: 1.15;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.mission-quote .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}

.principles {
  display: grid;
  gap: 0;
}

.principle {
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  align-items: start;
}

.principle:last-child { border-bottom: none; }

.principle-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--amber);
  padding-top: 4px;
}

.principle h4 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}

.principle p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* ============================================
   Quote CTA
   ============================================ */

.cta-block {
  background: var(--bg-1);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.cta-block .cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 30%, rgba(255,181,53,0.12) 0%, transparent 50%),
    radial-gradient(circle at 20% 70%, rgba(11,36,71,0.5) 0%, transparent 60%);
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 6vw, 96px);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (max-width: 820px) {
  .cta-grid { grid-template-columns: 1fr; }
}

.cta-title {
  font-size: clamp(40px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

/* ============================================
   Generic page hero (sub pages)
   ============================================ */

.page-hero {
  padding: calc(var(--nav-h) + 80px) 0 80px;
  position: relative;
  background: var(--bg-0);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(32px, 6vw, 96px);
  align-items: end;
}

@media (max-width: 820px) {
  .page-hero-inner { grid-template-columns: 1fr; gap: 32px; }
}

.page-hero h1 {
  font-size: clamp(48px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 14ch;
}

.page-hero h1 .it {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--amber);
}

.page-hero .crumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.page-hero .crumb a { color: var(--muted); }
.page-hero .crumb a:hover { color: var(--amber); }

/* ============================================
   Service cards / Process / Form
   ============================================ */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
}

@media (max-width: 820px) { .svc-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--bg-0);
  padding: clamp(28px, 3vw, 48px);
  display: grid;
  gap: 24px;
  position: relative;
  transition: background .3s var(--ease);
  min-height: 320px;
  overflow: hidden;
}
.svc-card:hover { background: var(--bg-1); }
.svc-card::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 2px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-card:hover::after { transform: scaleX(1); }

.svc-card .svc-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--amber);
}

.svc-card h3 {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.svc-card p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
}

.svc-card ul {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-top: 8px;
}
.svc-card ul li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.svc-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--amber);
}

/* Process */
.process-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.process-step {
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
  padding: clamp(28px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
@media (max-width: 820px) {
  .process-step { grid-template-columns: auto 1fr; }
  .process-step p { grid-column: 1 / -1; }
}
.process-step .step-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--amber);
}
.process-step h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.process-step p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  max-width: 50ch;
}

/* Forms */
.form {
  display: grid;
  gap: 18px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-2);
  padding: 12px 0;
  color: var(--ink);
  font: 400 16px/1.4 var(--font-body);
  transition: border-color .2s var(--ease);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-bottom-color: var(--amber);
}
.field textarea { resize: vertical; min-height: 120px; }

.form-status {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--muted);
  min-height: 18px;
}
.form-status.is-success { color: var(--signal-green); }

/* Job listing */
.job-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.job {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
  cursor: pointer;
  transition: background .25s var(--ease);
  position: relative;
}
.job::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--amber-soft) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s var(--ease);
  pointer-events: none;
}
.job:hover::before { opacity: 1; }
@media (max-width: 820px) {
  .job { grid-template-columns: 1fr auto; }
  .job-loc, .job-type { grid-column: 1 / -1; }
}
.job-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.015em;
  transition: color .25s var(--ease), transform .25s var(--ease);
  position: relative;
}
.job:hover .job-title { color: var(--amber); transform: translateX(6px); }
.job-loc, .job-type {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
}
.job-cta {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  color: var(--ink);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  position: relative;
}
.job:hover .job-cta { background: var(--amber); color: var(--bg-0); border-color: var(--amber); }

/* Accordion */
.acc-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.acc {
  border-bottom: 1px solid var(--line);
}
.acc-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color .25s var(--ease);
}
.acc-btn:hover { color: var(--amber); }
.acc-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  transition: transform .3s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
  flex-shrink: 0;
}
.acc.is-open .acc-icon { transform: rotate(45deg); background: var(--amber); color: var(--bg-0); border-color: var(--amber); }

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s var(--ease), padding .3s var(--ease);
}
.acc.is-open .acc-body {
  max-height: 400px;
  padding-bottom: 24px;
}
.acc-body p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink-2);
  max-width: 70ch;
}

/* Values grid */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
@media (max-width: 820px) { .values-grid { grid-template-columns: 1fr; } }
.value-card {
  background: var(--bg-0);
  padding: clamp(24px, 3vw, 40px);
  display: grid;
  gap: 16px;
  min-height: 240px;
}
.value-card .v-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--amber);
}
.value-card h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.02em;
}
.value-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.noise::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.16 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .6;
  mix-blend-mode: overlay;
  pointer-events: none;
}
