/* ============================================
   O'MADE — Transport & Logistique
   Design: Industrial / Utility — Dark & Bold
   ============================================ */

:root {
  --orange: #F5A623;
  --orange-dim: #c47e0f;
  --bg: #0A0A0A;
  --bg-1: #111111;
  --bg-2: #161616;
  --bg-3: #1C1C1C;
  --border: #222222;
  --border-light: #2a2a2a;
  --text: #E8E8E8;
  --text-dim: #888888;
  --text-muted: #555555;
  --white: #FFFFFF;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --nav-h: 70px;
  --radius: 4px;
  --radius-lg: 8px;
  --container: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- UTILITIES ---- */

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

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

em { font-style: normal; color: var(--orange); }

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-dim);
  max-width: 480px;
}

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

/* ---- BUTTONS ---- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--orange);
  color: #000;
}
.btn--primary:hover {
  background: #ffc04a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-light);
}
.btn--ghost:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.btn--full { width: 100%; justify-content: center; }

/* ---- NAV ---- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.nav.scrolled {
  border-bottom-color: var(--border);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
}
.nav__logo-o { color: var(--orange); }
.nav__logo-made { color: var(--white); }

.nav__links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--white); }

.nav__cta {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--orange);
  color: #000;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.nav__cta:hover { background: #ffc04a; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ---- MOBILE MENU ---- */

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--bg-1);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  padding: 24px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul { list-style: none; }
.mobile-menu ul li { border-bottom: 1px solid var(--border); }
.mobile-menu ul li a {
  display: block;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: var(--orange); }
.mm-cta {
  color: var(--orange) !important;
  margin-top: 8px;
}

/* ---- HERO ---- */

.hero {
  min-height: 100vh;
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  gap: 40px;
  padding-left: 80px;
  padding-right: 40px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero__line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0.15;
}
.hero__line--1 { width: 60%; top: 30%; left: 0; animation: linePulse 4s ease-in-out infinite; }
.hero__line--2 { width: 40%; top: 60%; right: 0; animation: linePulse 4s ease-in-out 1.3s infinite; }
.hero__line--3 { width: 30%; top: 80%; left: 20%; animation: linePulse 4s ease-in-out 2.6s infinite; }

@keyframes linePulse {
  0%, 100% { opacity: 0.08; }
  50% { opacity: 0.25; }
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 60px 0;
  animation: fadeUp 0.8s ease both;
}

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

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid rgba(245,166,35,0.3);
  padding: 8px 16px;
  border-radius: 2px;
  margin-bottom: 32px;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: blink 1.5s ease infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero__title-line { display: block; }
.hero__title-line.accent { color: var(--orange); }

.hero__sub {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.stat__sep {
  width: 1px;
  height: 40px;
  background: var(--border);
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.stat__plus {
  color: var(--orange);
  font-size: 24px;
}
.stat__label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero__truck-wrap {
  width: 100%;
  max-width: 520px;
  filter: drop-shadow(0 20px 60px rgba(245,166,35,0.1));
  animation: truckFloat 6s ease-in-out infinite;
}
.hero__truck { width: 100%; height: auto; }

@keyframes truckFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---- TICKER ---- */

.ticker {
  background: var(--orange);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.2);
}
.ticker__track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
}
.ticker__dot { color: rgba(0,0,0,0.4); }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- SERVICES ---- */

.services {
  padding: 100px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.service-card {
  background: var(--bg-2);
  padding: 40px;
  position: relative;
  transition: background 0.3s ease;
}
.service-card:hover { background: var(--bg-3); }

.service-card--featured {
  background: var(--bg-3);
  grid-column: span 1;
}
.service-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
}

.service-card--cta {
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.service-card__num {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 20px;
}

.service-card__icon {
  width: 44px;
  height: 44px;
  color: var(--orange);
  margin-bottom: 20px;
}
.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.2;
}

.service-card p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-card__list li {
  font-size: 13px;
  color: var(--text-dim);
  padding-left: 16px;
  position: relative;
}
.service-card__list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--orange);
  font-size: 11px;
}

/* ---- ABOUT ---- */

.about {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.about__visual {
  position: relative;
  height: 420px;
}

.about__badge-wrap {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.about__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 120px; height: 120px;
  border-radius: 50%;
  background: var(--orange);
  color: #000;
}
.about__badge-num {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 900;
}
.about__badge-text {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.about__box {
  position: absolute;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}

.about__box--1 {
  top: 0; left: 0;
  width: 200px; height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about__hex { width: 160px; height: 160px; }

.about__box--2 {
  bottom: 40px; left: 20px;
  text-align: center;
}
.about__box--3 {
  top: 40px; right: 0;
  text-align: center;
}
.about__box-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.about__box-val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--white);
}

.about__text {
  color: var(--text-dim);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}
.pillar:hover { border-color: var(--orange); }

.pillar__icon { font-size: 20px; }

.pillar strong {
  display: block;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2px;
}
.pillar span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- FLEET ---- */

.fleet {
  padding: 100px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

.fleet__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fleet-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
  text-align: center;
}
.fleet-card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.fleet-card--main {
  border-color: var(--orange);
  background: var(--bg-3);
}
.fleet-card--main:hover { border-color: var(--orange); }

.fleet-card__badge {
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #000;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 0 0 4px 4px;
}

.fleet-card__icon {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.fleet-card__icon svg { height: 100%; width: auto; }

.fleet-card h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.fleet-card p {
  font-size: 14px;
  color: var(--text-dim);
  margin-bottom: 24px;
  line-height: 1.6;
}

.fleet-card__specs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.fleet-card__specs span {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-muted);
}

/* ---- PROCESS ---- */

.process {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 60px;
}

.process__step {
  padding: 0 32px;
  position: relative;
  text-align: center;
}

.process__num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--bg-2);
  line-height: 1;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.process__step:hover .process__num { color: var(--orange); transition: color 0.3s; }

.process__connector {
  position: absolute;
  top: 32px; right: -1px;
  height: 1px; width: 100%;
  background: linear-gradient(90deg, var(--border), var(--border));
  z-index: 0;
}
.process__connector--last { display: none; }

.process__step h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.process__step p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- CONTACT ---- */

.contact {
  padding: 100px 0;
  background: var(--bg-1);
  border-top: 1px solid var(--border);
}

.contact__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.contact__card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.contact__card:hover {
  border-color: var(--border-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.contact__card--main {
  border-color: var(--orange);
  background: var(--bg-3);
}
.contact__card--main:hover { border-color: var(--orange); box-shadow: 0 16px 40px rgba(245,166,35,0.15); }

.contact__detail-icon { font-size: 28px; margin-bottom: 4px; }

.contact__card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact__card span {
  font-size: 14px;
  color: var(--text);
  word-break: break-word;
}
.contact__card-cta {
  margin-top: auto;
  padding-top: 16px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--orange);
}

.contact__legal {
  padding: 20px 24px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--orange);
  display: inline-block;
}
.contact__legal p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact__legal p:last-child { margin-bottom: 0; }
.contact__legal strong { color: var(--text); }

/* ---- FOOTER ---- */

.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 60px 24px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 12px;
}

.footer__brand p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer__copy {
  font-size: 12px !important;
  color: var(--text-muted);
  opacity: 0.6;
}

.footer__links h4 {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.footer__links ul { list-style: none; }
.footer__links ul li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--text-dim);
  transition: color 0.2s;
}
.footer__links ul li a:hover { color: var(--orange); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}
.footer__bottom .container {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
}
.footer__bottom a { transition: color 0.2s; }
.footer__bottom a:hover { color: var(--orange); }

/* ---- SCROLL ANIMATIONS ---- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding-left: 40px;
    padding-right: 40px;
    text-align: center;
  }
  .hero__content { padding: 80px 0 40px; }
  .hero__visual { display: none; }
  .hero__stats { justify-content: center; }
  .hero__actions { justify-content: center; }

  .services__grid { grid-template-columns: 1fr 1fr; }
  .about__inner { grid-template-columns: 1fr; }
  .about__visual { display: none; }
  .fleet__grid { grid-template-columns: 1fr 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact__cards { grid-template-columns: 1fr 1fr; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .mobile-menu { display: block; }
  .nav { padding: 0 24px; }

  .hero { padding-left: 24px; padding-right: 24px; }
  .hero__title { font-size: 52px; }

  .services__grid { grid-template-columns: 1fr; }
  .fleet__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr; }
  .process__connector { display: none; }
  .contact__cards { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
}
