/* NEXTA Integrated Logistics — stil site (fără build step, CSS pur) */

:root {
  --orange: #ff4b00;
  --orange-dark: #e94400;
  --ink: #0b0d12;
  --muted: #66707b;
  --paper: #f4f5f3;
}

/* --- reset minim --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  color: var(--ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
img, svg { display: block; max-width: 100%; height: auto; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-size: inherit; font-weight: inherit; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8px; stroke-linecap: round; stroke-linejoin: round; }

:where(a, button):focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 20;
  background: var(--ink); color: #fff; padding: 12px 18px;
  font-size: 13px; font-weight: 700;
}
.skip-link:focus { left: 0; }

/* --- header --- */
.site-header {
  position: relative; z-index: 5;
  display: flex; align-items: center; justify-content: space-between;
  height: 92px; padding: 0 6vw; background: #fff;
}
.logo { display: inline-flex; align-items: center; line-height: 1; }
.logo img { width: 176px; height: auto; }
.header-contact {
  display: flex; align-items: center; gap: 13px;
  font-size: 13px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
}
.header-contact svg { width: 23px; height: 23px; }

/* --- hero --- */
.hero {
  position: relative; display: flex; align-items: center; overflow: hidden;
  height: calc(100vh - 92px); min-height: 690px; max-height: 880px;
  color: #fff; background: #171b20;
}
.hero-image {
  position: absolute; inset: 0; transform: scale(1.01);
  background-image: url("/assets/hero-warehouse.jpg");
  background-image: image-set(url("/assets/hero-warehouse.webp") type("image/webp"), url("/assets/hero-warehouse.jpg") type("image/jpeg"));
  background-position: 50%; background-size: cover; background-repeat: no-repeat;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, #05070aeb, #05070abd 39%, #05070a3d 72%, #05070a1f),
    linear-gradient(#0000 45%, #05070a61);
}
.hero-content { position: relative; z-index: 2; width: min(820px, 88vw); margin-left: 6vw; padding-bottom: 20px; }
.eyebrow, .section-label {
  display: flex; align-items: center; gap: 12px;
  font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
}
.eyebrow i { width: 32px; height: 2px; background: var(--orange); }
h1 { margin: 25px 0; font-size: clamp(58px, 7.5vw, 112px); font-weight: 800; line-height: .87; letter-spacing: -.065em; }
h1 em { color: var(--orange); font-style: normal; }
.hero-copy { max-width: 630px; color: #d5d8dc; font-size: clamp(17px, 1.4vw, 21px); line-height: 1.6; }
.hero-actions { display: flex; align-items: center; gap: 34px; margin-top: 39px; }
.primary-button {
  display: flex; align-items: center; justify-content: space-between;
  min-width: 200px; padding: 18px 25px; background: var(--orange);
  font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  transition: background .2s, transform .2s;
}
.primary-button:hover { background: var(--orange-dark); transform: translateY(-2px); }
.primary-button svg { width: 22px; }
.text-link { padding-bottom: 5px; border-bottom: 1px solid #ffffff59; font-size: 13px; font-weight: 700; }
.text-link span { margin-left: 8px; color: var(--orange); }
.hero-status {
  position: absolute; right: 4vw; bottom: 28px; z-index: 2;
  display: flex; align-items: center; gap: 9px;
  color: #d5d8dc; font-size: 10px; font-weight: 700; letter-spacing: .16em;
}
.hero-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 5px #ff4b0029; }

/* --- intro + servicii --- */
.intro {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 8vw;
  padding: 110px 6vw 74px; background: var(--paper);
}
.section-label { margin: 0 0 24px; color: var(--orange); }
.intro h2, .contact-strip h2 { margin: 0; font-size: clamp(36px, 4vw, 61px); line-height: 1.02; letter-spacing: -.045em; }
.intro-copy { align-self: end; max-width: 580px; color: var(--muted); font-size: 18px; line-height: 1.75; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0 6vw 110px; background: var(--paper); }
.service { min-height: 230px; padding: 26px 3.5vw 10px 0; border-top: 1px solid #cbd0d2; }
.service + .service { padding-left: 3.5vw; border-left: 1px solid #d8dcde; }
.service span { color: var(--orange); font-size: 11px; font-weight: 800; }
.service h3 { margin: 42px 0 15px; font-size: 24px; font-weight: 700; letter-spacing: -.03em; }
.service p { max-width: 310px; color: var(--muted); font-size: 14px; line-height: 1.65; }

/* --- contact + footer --- */
.contact-strip {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 40px;
  padding: 82px 6vw; color: #fff; background: var(--ink);
}
.section-label.light { color: #aeb4bb; }
.contact-strip a {
  display: flex; justify-content: space-between; min-width: 380px;
  padding: 16px 0; border-bottom: 1px solid #555b63; font-size: 15px;
}
.contact-strip a svg { width: 22px; color: var(--orange); }

footer {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
  min-height: 150px; padding: 40px 6vw;
  color: #757d84; font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
}
footer .logo img { width: 148px; }

/* --- mobil --- */
@media (max-width: 760px) {
  .site-header { height: 72px; padding: 0 22px; }
  .logo img { width: 145px; }
  .header-contact span { display: none; }
  .hero { align-items: flex-end; height: calc(100svh - 72px); min-height: 670px; }
  .hero-image {
    background-position: 62%;
    background-image: url("/assets/hero-warehouse-900.jpg");
    background-image: image-set(url("/assets/hero-warehouse-900.webp") type("image/webp"), url("/assets/hero-warehouse-900.jpg") type("image/jpeg"));
  }
  .hero-shade { background: linear-gradient(#05070a3d, #05070a94 28%, #05070af2 95%); }
  .hero-content { width: auto; margin: 0; padding: 0 22px 92px; }
  h1 { margin: 20px 0; font-size: clamp(51px, 16vw, 72px); }
  .hero-copy { font-size: 16px; line-height: 1.55; }
  .hero-actions { gap: 20px; margin-top: 27px; }
  .text-link { display: none; }
  .hero-status { right: 22px; bottom: 25px; }
  .intro { grid-template-columns: 1fr; gap: 28px; padding: 72px 22px 50px; }
  .intro-copy { font-size: 16px; }
  .services { grid-template-columns: 1fr; padding: 0 22px 70px; }
  .service { min-height: 0; padding: 28px 0 34px; }
  .service + .service { padding-left: 0; border-left: 0; }
  .service h3 { margin: 24px 0 10px; }
  .contact-strip { flex-direction: column; align-items: flex-start; padding: 62px 22px; }
  .contact-strip a { width: 100%; min-width: 0; font-size: 13px; }
  footer { flex-direction: column; align-items: flex-start; padding: 42px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .primary-button { transition: none; }
}
