:root {
  --bg: #0a0b0f;
  --bg-soft: #101116;
  --surface: #15171d;
  --surface-2: #1b1e25;
  --line: rgba(255, 255, 255, 0.10);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f5f7fb;
  --muted: #9da3ae;
  --muted-dark: #666d78;
  --light: #f4f3ef;
  --dark-text: #111318;
  --red: #e30613;
  --red-bright: #ff313c;
  --red-soft: rgba(227, 6, 19, 0.14);
  --green: #53d88a;
  --shadow: 0 26px 80px rgba(0,0,0,.38);
  --radius: 24px;
  --container: min(1240px, calc(100% - 48px));
  --ease: cubic-bezier(.2,.75,.3,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }

::selection { color: #fff; background: var(--red); }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img, svg { display: block; max-width: 100%; }

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: 132px 0; }
.noise {
  position: fixed; inset: 0; z-index: 100;
  opacity: .025; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.75'/%3E%3C/svg%3E");
}
.cursor-glow {
  position: fixed; width: 440px; height: 440px; border-radius: 50%;
  background: radial-gradient(circle, rgba(227,6,19,.11), transparent 68%);
  transform: translate(-50%,-50%); z-index: 0; pointer-events: none;
  opacity: 0; transition: opacity .25s ease;
}

/* NAV */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 90;
  padding: 18px 0; transition: background .35s ease, padding .35s ease, border .35s ease;
}
.site-header.scrolled {
  padding: 11px 0;
  background: rgba(9,10,14,.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(20px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; background: var(--red); box-shadow: 0 10px 30px rgba(227,6,19,.25);
}
.brand-mark svg { width: 29px; fill: #fff; }
.brand-mark .brand-mark-cut { fill: #0b0c10; }
.brand-copy { display: grid; gap: 1px; line-height: 1; }
.brand-copy strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 18px; letter-spacing: .045em;
}
.brand-copy small { font-size: 7.8px; letter-spacing: .18em; color: #c9cbd1; font-weight: 700; }

.desktop-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.desktop-nav a {
  position: relative; color: #c8cad0; font-size: 13px; font-weight: 600;
  transition: color .25s ease;
}
.desktop-nav a::after {
  content:""; position:absolute; left:0; right:100%; bottom:-8px; height:1px;
  background: var(--red-bright); transition: right .3s var(--ease);
}
.desktop-nav a:hover { color: #fff; }
.desktop-nav a:hover::after { right: 0; }
.nav-actions { display:flex; align-items:center; gap:10px; }
.language-switch {
  display:flex; gap:6px; align-items:center; border:0; background:transparent;
  padding:10px; cursor:pointer; font-size:12px; font-weight:700;
}
.chevron { color: var(--muted); }
.menu-button {
  display:none; width:44px; height:44px; border:1px solid var(--line);
  background:rgba(255,255,255,.04); border-radius:12px; cursor:pointer;
  align-items:center; justify-content:center; flex-direction:column; gap:7px;
}
.menu-button span { width:19px; height:1px; background:#fff; transition:.3s ease; }
.menu-button.active span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button.active span:last-child { transform: translateY(-4px) rotate(-45deg); }

.mobile-menu {
  display:none; position:fixed; inset:76px 16px auto; padding:18px;
  border:1px solid var(--line); border-radius:22px; background:rgba(15,16,21,.98);
  box-shadow:var(--shadow); backdrop-filter:blur(20px);
  transform:translateY(-10px); opacity:0; pointer-events:none; transition:.3s var(--ease);
}
.mobile-menu.open { transform:none; opacity:1; pointer-events:auto; }
.mobile-menu nav { display:grid; }
.mobile-menu nav a {
  display:flex; justify-content:space-between; padding:15px 4px;
  border-bottom:1px solid var(--line); font-size:18px; font-weight:700;
}
.mobile-menu nav span { color:var(--muted-dark); font-size:10px; }
.mobile-menu .btn { width:100%; margin-top:16px; }

/* BUTTONS */
.btn {
  border: 0; border-radius: 999px; padding: 13px 20px;
  display: inline-flex; align-items: center; justify-content: center; gap: 14px;
  font-weight: 700; font-size: 13px; cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), background .25s ease, border .25s ease, color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--red); color: #fff;
  box-shadow: 0 15px 34px rgba(227,6,19,.24);
}
.btn-primary:hover { background: var(--red-bright); }
.btn-small { padding: 11px 18px; }
.btn-large { min-height: 58px; padding: 15px 25px; font-size: 14px; }
.btn-ghost { color:#fff; border:1px solid var(--line-strong); background:rgba(255,255,255,.055); backdrop-filter: blur(8px); }
.btn-ghost:hover { background:rgba(255,255,255,.1); }
.btn-outline { color:#fff; border:1px solid rgba(255,255,255,.22); background:transparent; }
.btn-outline:hover { border-color:#fff; }
.btn-dark { color:#fff; background:var(--dark-text); }
.btn-light { background:#fff; color:var(--dark-text); }
.btn-cta-outline { border:1px solid rgba(255,255,255,.35); background:transparent; color:#fff; }

/* HERO */
.hero {
  min-height: 880px; position: relative; display: grid; align-items: center;
  overflow: hidden; padding: 150px 0 120px;
}
.hero-media, .hero-image, .hero-overlay, .hero-grid { position:absolute; inset:0; }
.hero-image {
  background:
    linear-gradient(0deg, rgba(8,9,13,.2), rgba(8,9,13,.2)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=2200&q=90") center 52% / cover no-repeat;
  transform: scale(1.025);
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7,8,11,.98) 0%, rgba(7,8,11,.83) 43%, rgba(7,8,11,.42) 72%, rgba(7,8,11,.7) 100%),
    linear-gradient(0deg, var(--bg) 0%, transparent 25%, rgba(0,0,0,.3) 100%);
}
.hero-grid {
  opacity:.18;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(90deg, #000, transparent 75%);
}
.route-orbit {
  position:absolute; border:1px solid rgba(255,255,255,.1); border-radius:50%;
  box-shadow: inset 0 0 60px rgba(227,6,19,.03);
}
.route-orbit::before {
  content:""; position:absolute; top:50%; left:-5px; width:9px; height:9px; border-radius:50%;
  background:var(--red-bright); box-shadow:0 0 20px var(--red-bright);
}
.route-orbit-a { width:670px; height:670px; right:-260px; top:60px; animation:spin 24s linear infinite; }
.route-orbit-b { width:430px; height:430px; right:-85px; top:190px; animation:spinReverse 18s linear infinite; }
@keyframes spin { to { transform:rotate(360deg); } }
@keyframes spinReverse { to { transform:rotate(-360deg); } }

.hero-layout {
  position:relative; z-index:2; display:grid; grid-template-columns:minmax(0, 1.15fr) minmax(390px, .75fr);
  gap:72px; align-items:center; margin-top:20px;
}
.eyebrow, .section-kicker {
  display:inline-flex; align-items:center; gap:10px; color:#d8dae0;
  font-size:11px; font-weight:800; letter-spacing:.17em;
}
.live-dot { width:7px; height:7px; border-radius:50%; background:var(--red-bright); box-shadow:0 0 0 6px rgba(255,49,60,.13); }
.hero h1 {
  margin:25px 0 25px; max-width:770px;
  font: 600 clamp(56px, 6.4vw, 98px)/.94 "Space Grotesk", sans-serif;
  letter-spacing:-.055em;
}
.accent-text {
  display:block; color:transparent;
  -webkit-text-stroke: 1.2px rgba(255,255,255,.72);
}
.hero-lead { max-width:640px; color:#bec2ca; font-size:18px; line-height:1.75; margin:0; }
.hero-actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:38px; }
.button-icon, .play-icon {
  display:grid; place-items:center; width:27px; height:27px; border-radius:50%;
  background:rgba(255,255,255,.14); font-size:13px;
}
.hero-trust { display:flex; align-items:center; gap:16px; margin-top:40px; }
.avatar-stack { display:flex; padding-left:10px; }
.avatar-stack span {
  width:36px; height:36px; display:grid; place-items:center; margin-left:-10px;
  border:2px solid var(--bg); border-radius:50%; background:#2b2e35;
  font-size:9px; font-weight:800; color:#f1f2f4;
}
.avatar-stack span:nth-child(2) { background:#3b272a; }
.avatar-stack span:nth-child(3) { background:#262d3d; }
.avatar-stack span:nth-child(4) { background:#303321; }
.stars { color:#ff434c; letter-spacing:3px; font-size:11px; }
.hero-trust p { margin:4px 0 0; color:#a7abb4; font-size:11px; }

/* QUICK QUOTE CARD */
.glass-card {
  border:1px solid rgba(255,255,255,.14);
  background:linear-gradient(155deg, rgba(23,25,31,.93), rgba(12,13,17,.80));
  backdrop-filter:blur(24px); box-shadow:var(--shadow);
}
.quote-card { border-radius:26px; overflow:hidden; }
.quote-card-top {
  padding:25px 25px 20px; display:flex; align-items:flex-start; justify-content:space-between; gap:16px;
  border-bottom:1px solid var(--line);
}
.mini-label { font-size:9px; letter-spacing:.18em; color:#8f949e; font-weight:800; }
.quote-card h2 { font:600 25px/1.15 "Space Grotesk",sans-serif; margin:7px 0 0; }
.status-chip {
  display:inline-flex; align-items:center; gap:7px; padding:8px 10px;
  border-radius:99px; border:1px solid rgba(83,216,138,.18); color:#97e8b9;
  background:rgba(83,216,138,.07); font-size:9px; font-weight:700; white-space:nowrap;
}
.status-chip i, .map-live i { width:6px; height:6px; border-radius:50%; background:var(--green); box-shadow:0 0 10px var(--green); }
.quick-form { padding:22px 25px 24px; }
.route-inputs { background:rgba(255,255,255,.035); border:1px solid var(--line); border-radius:17px; padding:5px 16px; }
.field { display:flex; flex-direction:column; gap:8px; }
.field-route { flex-direction:row; align-items:center; padding:12px 0; }
.field-icon { width:10px; height:10px; border-radius:50%; flex-shrink:0; margin-right:13px; }
.start-point { border:2px solid var(--red-bright); box-shadow:0 0 0 4px rgba(255,49,60,.10); }
.end-point { background:#fff; box-shadow:0 0 0 4px rgba(255,255,255,.10); }
.field-copy { width:100%; }
.field small { color:#777d88; font-size:8px; font-weight:800; letter-spacing:.15em; }
.field input, .field select, .field textarea {
  width:100%; border:0; outline:0; color:#fff; background:transparent;
  padding:4px 0 0; font-size:13px; appearance:none;
}
.field input::placeholder, .field textarea::placeholder { color:#c4c6cb; opacity:.82; }
.field select { color:#d7d9de; cursor:pointer; }
.field select option { color:#111; }
.route-line { display:flex; align-items:center; gap:8px; padding-left:2px; }
.route-line span { display:block; width:1px; height:9px; background:rgba(255,255,255,.12); }
.route-line i { display:grid; place-items:center; width:17px; height:17px; border:1px solid var(--line); border-radius:50%; color:#777d88; font-size:9px; font-style:normal; }
.form-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:12px; }
.form-grid .field { padding:13px 14px; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.025); }
.btn-form { width:100%; margin-top:14px; min-height:50px; border-radius:14px; }
.form-note { text-align:center; color:#666c76; font-size:9px; margin:11px 0 0; }

.hero-bottom {
  position:absolute; z-index:2; left:50%; bottom:30px; transform:translateX(-50%);
  display:flex; align-items:flex-end; justify-content:space-between;
}
.scroll-hint { display:flex; align-items:center; gap:10px; color:#7e848e; font-size:9px; letter-spacing:.16em; text-transform:uppercase; }
.scroll-hint span { width:1px; height:42px; background:linear-gradient(var(--red), transparent); }
.hero-metrics { display:flex; align-items:flex-end; gap:34px; }
.hero-metrics > div { display:grid; grid-template-columns:auto auto; align-items:baseline; }
.hero-metrics strong { font:600 28px "Space Grotesk",sans-serif; }
.hero-metrics span { color:var(--red-bright); font-size:18px; margin-left:2px; }
.hero-metrics small { grid-column:1 / -1; color:#747a84; font-size:8px; text-transform:uppercase; letter-spacing:.12em; margin-top:3px; }

/* TRUST STRIP */
.trust-strip { background:#fff; color:#111318; overflow:hidden; }
.trust-strip-inner { min-height:74px; display:flex; justify-content:space-between; align-items:center; gap:22px; white-space:nowrap; }
.trust-strip span { font-size:9px; font-weight:800; letter-spacing:.14em; }
.trust-strip i { width:5px; height:5px; border-radius:50%; background:var(--red); }

/* SECTION HEADING */
.section-heading { display:flex; align-items:flex-end; justify-content:space-between; gap:40px; margin-bottom:58px; }
.section-heading h2, .network-copy h2, .about-copy h2, .cta-inner h2 {
  margin:14px 0 0; font:600 clamp(42px,5vw,70px)/1.02 "Space Grotesk",sans-serif; letter-spacing:-.045em;
}
.section-heading h2 em, .network-copy h2 em, .about-copy h2 em, .cta-inner h2 em { color:var(--red); font-style:normal; }
.section-heading > p { max-width:440px; color:var(--muted); font-size:14px; line-height:1.8; margin:0 0 4px; }

/* SERVICES */
.services-section { background:var(--light); color:var(--dark-text); }
.services-section .section-kicker, .about-section .section-kicker { color:#747983; }
.services-bento { display:grid; grid-template-columns:1.38fr .81fr .81fr; gap:14px; }
.service-card {
  position:relative; min-height:310px; padding:26px; border:1px solid #dedfdc;
  border-radius:22px; background:#fff; overflow:hidden; transition:.35s var(--ease);
}
.service-card:hover { transform:translateY(-7px); box-shadow:0 24px 50px rgba(20,22,26,.10); border-color:#cfd0cd; }
.service-card::after {
  content:""; position:absolute; inset:auto -50px -80px auto; width:170px; height:170px;
  border:1px solid rgba(17,19,24,.06); border-radius:50%; transition:.5s var(--ease);
}
.service-card:hover::after { transform:scale(1.2); border-color:rgba(227,6,19,.18); }
.service-no { position:absolute; top:24px; right:24px; color:#a8abb0; font:600 10px "Space Grotesk",sans-serif; }
.service-icon {
  width:48px; height:48px; display:grid; place-items:center; border-radius:14px;
  background:#f1f1ef; color:#17191d;
}
.service-icon svg { width:24px; fill:none; stroke:currentColor; stroke-width:1.35; stroke-linecap:round; stroke-linejoin:round; }
.service-card h3 { font:600 24px/1.15 "Space Grotesk",sans-serif; margin:52px 0 11px; letter-spacing:-.025em; }
.service-card p { max-width:310px; color:#737780; font-size:12px; line-height:1.75; margin:0; }
.card-arrow {
  position:absolute; left:26px; bottom:24px; width:38px; height:38px; display:grid; place-items:center;
  border:1px solid #dedfdc; border-radius:50%; font-size:14px; transition:.25s ease;
}
.card-arrow:hover { color:#fff; border-color:var(--red); background:var(--red); transform:rotate(45deg); }

.service-featured { min-height:390px; grid-row:span 1; color:#fff; border-color:transparent; padding:0; }
.service-bg { position:absolute; inset:0; transition:transform .8s var(--ease); }
.service-bg-road {
  background:
    linear-gradient(0deg, rgba(9,10,14,.93), rgba(9,10,14,.18)),
    url("https://images.unsplash.com/photo-1519003722824-194d4455a60c?auto=format&fit=crop&w=1200&q=88") center / cover no-repeat;
}
.service-featured:hover .service-bg { transform:scale(1.045); }
.service-featured::after { display:none; }
.service-card-content { position:relative; z-index:2; min-height:390px; padding:26px; display:flex; flex-direction:column; justify-content:space-between; }
.service-featured .service-icon { color:#fff; background:rgba(255,255,255,.12); backdrop-filter:blur(8px); }
.service-featured h3 { margin:17px 0 10px; font-size:34px; }
.service-featured p { color:#c7cbd2; }
.text-link { display:inline-flex; align-items:center; gap:13px; font-size:11px; font-weight:800; text-transform:uppercase; letter-spacing:.09em; }
.text-link span { width:28px; height:28px; display:grid; place-items:center; border:1px solid currentColor; border-radius:50%; transition:.3s ease; }
.text-link:hover span { transform:rotate(45deg); background:currentColor; color:#fff; }
.service-wide { grid-column:span 2; display:grid; grid-template-columns:1fr 1fr; background:#111318; color:#fff; border-color:#111318; }
.service-wide::after { display:none; }
.service-wide .service-no { color:#686d77; }
.service-wide .service-icon { color:#fff; background:rgba(255,255,255,.07); }
.service-wide h3 { margin-top:28px; }
.service-wide p { color:#9da3ae; }
.cargo-visual { position:relative; min-height:250px; perspective:600px; }
.cargo-box {
  position:absolute; width:130px; height:90px; border:1px solid rgba(255,255,255,.18);
  background:linear-gradient(145deg, rgba(227,6,19,.28), rgba(255,255,255,.03));
  box-shadow:-15px 25px 40px rgba(0,0,0,.22); transform:skewY(-11deg);
}
.box-a { right:40px; top:52px; }
.box-b { right:125px; top:112px; width:110px; height:74px; opacity:.7; }
.box-c { right:2px; top:150px; width:96px; height:64px; opacity:.5; }
.cargo-line { position:absolute; right:35px; top:24px; width:170px; height:170px; border:1px solid rgba(255,255,255,.08); border-radius:50%; }

/* NETWORK */
.network-section { overflow:hidden; background:#0c0e13; }
.network-glow {
  position:absolute; right:-200px; top:0; width:650px; height:650px; border-radius:50%;
  background:radial-gradient(circle, rgba(227,6,19,.13), transparent 65%);
}
.network-layout { display:grid; grid-template-columns:.82fr 1.18fr; gap:84px; align-items:center; }
.network-copy p { color:var(--muted); line-height:1.8; font-size:14px; max-width:530px; margin:24px 0 0; }
.route-tabs { display:flex; gap:6px; margin-top:30px; padding:5px; width:max-content; background:rgba(255,255,255,.04); border:1px solid var(--line); border-radius:999px; }
.route-tab { border:0; background:transparent; color:#8d929c; border-radius:999px; padding:9px 15px; cursor:pointer; font-size:10px; font-weight:700; }
.route-tab.active { background:#fff; color:#111318; }
.route-list { display:flex; flex-wrap:wrap; gap:8px; margin:22px 0 30px; min-height:70px; }
.route-list span { padding:9px 13px; border:1px solid var(--line); border-radius:999px; color:#c8cbd1; font-size:10px; }

.map-panel { border:1px solid var(--line); border-radius:24px; overflow:hidden; background:rgba(255,255,255,.025); box-shadow:var(--shadow); }
.map-topbar { height:54px; padding:0 18px; display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid var(--line); color:#777d87; font-size:8px; font-weight:800; letter-spacing:.14em; }
.map-live { display:flex; align-items:center; gap:8px; color:#7ecf9f; }
.map-canvas { position:relative; min-height:540px; background-image:radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px); background-size:20px 20px; overflow:hidden; }
.map-svg { width:100%; height:100%; min-height:540px; }
.map-land path { fill:rgba(255,255,255,.03); stroke:rgba(255,255,255,.10); stroke-width:1; }
.map-routes path { fill:none; stroke:#ff313c; stroke-width:1.35; stroke-dasharray:4 7; animation:routeDash 12s linear infinite; }
@keyframes routeDash { to { stroke-dashoffset:-120; } }
.map-points circle:not(.hub) { fill:#ff313c; }
.map-points .hub { fill:#fff; stroke:#ff313c; stroke-width:3; }
.map-labels text { fill:#8d929b; font:700 8px "Manrope",sans-serif; letter-spacing:.08em; }
.map-card {
  position:absolute; left:24px; bottom:24px; right:24px; display:flex; align-items:center; gap:13px;
  padding:14px 16px; border:1px solid var(--line); border-radius:15px; background:rgba(11,12,16,.88); backdrop-filter:blur(12px);
}
.map-card-icon { width:35px; height:35px; display:grid; place-items:center; border-radius:10px; color:#fff; background:var(--red); }
.map-card div { display:grid; gap:2px; }
.map-card small { color:#747a84; font-size:7px; font-weight:800; letter-spacing:.14em; }
.map-card strong { font:600 13px "Space Grotesk",sans-serif; }
.map-time { margin-left:auto; color:#9ea3ad; font-size:8px; font-weight:800; letter-spacing:.1em; }

/* PROCESS */
.process-section { background:#fff; color:var(--dark-text); }
.process-heading { margin-bottom:70px; }
.process-grid { position:relative; display:grid; grid-template-columns:repeat(4,1fr); gap:28px; }
.process-grid::before { content:""; position:absolute; left:0; right:0; top:46px; height:1px; background:#dadbd9; }
.process-item { position:relative; padding-top:75px; }
.process-number { position:absolute; top:0; color:#a4a7ab; font:600 11px "Space Grotesk",sans-serif; }
.process-dot { position:absolute; top:41px; width:11px; height:11px; border:3px solid #fff; border-radius:50%; background:var(--red); box-shadow:0 0 0 1px var(--red); }
.process-item h3 { margin:0 0 12px; font:600 19px "Space Grotesk",sans-serif; }
.process-item p { color:#737780; font-size:12px; line-height:1.75; margin:0; max-width:245px; }

/* PROJECTS */
.projects-section { background:#101116; }
.light-link { color:#fff; margin-bottom:5px; }
.projects-grid { display:grid; grid-template-columns:1.24fr .76fr; grid-template-rows:1fr 1fr; gap:14px; height:650px; }
.project-large { grid-row:1 / 3; }
.project-card { overflow:hidden; border-radius:23px; min-height:0; }
.project-image { position:relative; height:100%; min-height:100%; background-position:center; background-size:cover; transition:transform .8s var(--ease); }
.project-card:hover .project-image { transform:scale(1.02); }
.project-image-1 { background-image:url("https://images.unsplash.com/photo-1501700493788-fa1a4fc9fe62?auto=format&fit=crop&w=1500&q=88"); }
.project-image-2 { background-image:url("https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?auto=format&fit=crop&w=1100&q=88"); }
.project-image-3 { background-image:url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1100&q=88"); }
.project-overlay { position:absolute; inset:0; background:linear-gradient(0deg, rgba(4,5,8,.96), transparent 68%); }
.project-tag { position:absolute; top:22px; left:22px; padding:8px 11px; border-radius:999px; background:rgba(10,11,15,.55); border:1px solid rgba(255,255,255,.16); backdrop-filter:blur(8px); font-size:8px; font-weight:800; letter-spacing:.12em; }
.project-copy { position:absolute; left:28px; right:28px; bottom:28px; }
.project-copy p { color:#ff5961; font-size:9px; font-weight:800; letter-spacing:.15em; margin:0 0 10px; }
.project-copy h3 { max-width:500px; font:600 30px/1.15 "Space Grotesk",sans-serif; letter-spacing:-.025em; margin:0; }
.project-card:not(.project-large) .project-copy h3 { font-size:20px; }
.project-meta { display:flex; flex-wrap:wrap; gap:8px; margin-top:18px; }
.project-meta span { padding:7px 9px; border:1px solid rgba(255,255,255,.14); border-radius:999px; color:#aeb2ba; font-size:8px; }

/* ABOUT */
.about-section { background:var(--light); color:var(--dark-text); }
.about-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:100px; align-items:center; }
.about-visual { position:relative; padding:0 26px 28px 0; }
.about-photo {
  position:relative; min-height:620px; border-radius:26px; overflow:hidden;
  background:url("https://images.unsplash.com/photo-1565793298595-6a879b1d9492?auto=format&fit=crop&w=1100&q=88") center / cover no-repeat;
}
.about-photo-overlay { position:absolute; inset:0; background:linear-gradient(0deg, rgba(8,9,12,.72), transparent 55%); }
.experience-card {
  position:absolute; left:24px; bottom:24px; display:flex; align-items:flex-end; gap:15px;
  padding:20px; border-radius:17px; background:rgba(255,255,255,.92); backdrop-filter:blur(12px); color:#111318;
}
.experience-card strong { font:600 34px "Space Grotesk",sans-serif; color:var(--red); }
.experience-card span { font-size:10px; line-height:1.45; font-weight:700; }
.about-badge {
  position:absolute; right:-15px; bottom:0; width:132px; height:132px; padding:9px; border-radius:50%; background:var(--red); color:#fff; box-shadow:0 18px 45px rgba(227,6,19,.27);
}
.about-badge svg { width:100%; animation:spin 18s linear infinite; }
.about-badge text { fill:#fff; font:700 8px "Manrope",sans-serif; letter-spacing:.16em; }
.about-badge circle { fill:#fff; }
.about-lead { color:#33373e !important; font-size:17px !important; line-height:1.75 !important; margin-top:28px !important; }
.about-copy > p { color:#737780; font-size:13px; line-height:1.85; max-width:600px; }
.about-values { margin:34px 0; border-top:1px solid #d8d9d6; }
.about-values div {
  display:grid; grid-template-columns:38px 150px 1fr; align-items:center; gap:16px;
  padding:18px 0; border-bottom:1px solid #d8d9d6;
}
.about-values span { color:var(--red); font:600 10px "Space Grotesk",sans-serif; }
.about-values strong { font:600 15px "Space Grotesk",sans-serif; }
.about-values small { color:#7c8088; font-size:10px; }

/* CTA */
.cta-section { background:var(--red); overflow:hidden; text-align:center; padding:120px 0; }
.cta-section .section-kicker { color:rgba(255,255,255,.74); }
.cta-inner { position:relative; z-index:2; }
.cta-inner h2 { font-size:clamp(52px,7vw,90px); }
.cta-inner h2 em { color:#fff; -webkit-text-stroke:1px rgba(255,255,255,.85); color:transparent; }
.cta-inner p { max-width:620px; margin:25px auto 0; color:rgba(255,255,255,.75); line-height:1.7; font-size:15px; }
.cta-actions { display:flex; justify-content:center; flex-wrap:wrap; gap:12px; margin-top:36px; }
.cta-orbit { position:absolute; border:1px solid rgba(255,255,255,.16); border-radius:50%; }
.cta-orbit-a { width:620px; height:620px; left:-300px; top:-200px; }
.cta-orbit-b { width:760px; height:760px; right:-360px; bottom:-400px; }

/* FOOTER */
.site-footer { background:#090a0d; padding:84px 0 20px; border-top:1px solid var(--line); }
.footer-grid { display:grid; grid-template-columns:1.4fr .7fr .7fr 1fr; gap:60px; }
.footer-brand p { max-width:310px; color:#777d87; font-size:12px; line-height:1.8; margin:25px 0; }
.social-links { display:flex; gap:8px; }
.social-links a { width:36px; height:36px; display:grid; place-items:center; border:1px solid var(--line); border-radius:50%; font-size:9px; font-weight:800; transition:.25s ease; }
.social-links a:hover { background:var(--red); border-color:var(--red); }
.footer-column { display:flex; flex-direction:column; align-items:flex-start; gap:12px; }
.footer-column h3 { color:#fff; font:600 12px "Space Grotesk",sans-serif; margin:0 0 8px; }
.footer-column a, .footer-column p { color:#777d87; font-size:10px; line-height:1.8; margin:0; transition:color .2s ease; }
.footer-column a:hover { color:#fff; }
.footer-contact a { color:#d8dbe0; }
.footer-bottom {
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  margin-top:70px; padding-top:20px; border-top:1px solid var(--line); color:#555b65; font-size:8px; letter-spacing:.05em;
}
.footer-bottom div { display:flex; gap:18px; }

/* MODAL */
.modal { position:fixed; inset:0; z-index:120; display:grid; place-items:center; padding:24px; opacity:0; pointer-events:none; transition:.3s ease; }
.modal.open { opacity:1; pointer-events:auto; }
.modal-backdrop { position:absolute; inset:0; background:rgba(3,4,6,.78); backdrop-filter:blur(10px); }
.modal-dialog {
  position:relative; z-index:2; width:min(900px,100%); max-height:calc(100vh - 48px); overflow:auto;
  padding:42px; border:1px solid var(--line-strong); border-radius:28px; background:#121419; box-shadow:var(--shadow);
  transform:translateY(20px) scale(.98); transition:.35s var(--ease);
}
.modal.open .modal-dialog { transform:none; }
.modal-close {
  position:absolute; top:18px; right:18px; width:38px; height:38px; border:1px solid var(--line);
  border-radius:50%; background:rgba(255,255,255,.04); cursor:pointer; font-size:21px;
}
.modal-copy h2 { margin:10px 0 7px; font:600 38px/1.1 "Space Grotesk",sans-serif; }
.modal-copy p { color:var(--muted); font-size:12px; }
.modal-form { margin-top:28px; }
.modal-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.modal-form label:not(.consent) { display:flex; flex-direction:column; gap:8px; }
.modal-form label > span { color:#b3b7bf; font-size:9px; font-weight:700; }
.modal-form input, .modal-form select, .modal-form textarea {
  width:100%; border:1px solid var(--line); outline:0; border-radius:13px;
  color:#fff; background:rgba(255,255,255,.035); padding:13px 14px; font-size:12px;
}
.modal-form textarea { resize:vertical; }
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus { border-color:rgba(255,49,60,.65); box-shadow:0 0 0 3px rgba(255,49,60,.08); }
.modal-form select option { color:#111; }
.full-width { grid-column:1 / -1; }
.full-button { width:100%; margin-top:16px; border-radius:14px; }
.consent { display:flex; align-items:flex-start; gap:9px; margin-top:13px; color:#777d87; font-size:9px; }
.consent input { width:auto; margin-top:1px; accent-color:var(--red); }

.toast {
  position:fixed; z-index:140; right:24px; bottom:24px; display:flex; align-items:center; gap:13px;
  min-width:330px; padding:15px 18px; border:1px solid var(--line-strong); border-radius:16px;
  background:#17191f; box-shadow:var(--shadow); transform:translateY(30px); opacity:0; pointer-events:none; transition:.35s var(--ease);
}
.toast.show { transform:none; opacity:1; }
.toast-check { width:34px; height:34px; display:grid; place-items:center; border-radius:50%; background:rgba(83,216,138,.13); color:#72e7a3; }
.toast strong { font-size:11px; }
.toast p { color:#868c96; font-size:9px; margin:3px 0 0; }

/* REVEAL */
.reveal { opacity:0; transform:translateY(26px); transition:opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity:1; transform:none; }
.reveal-delay-1 { transition-delay:.12s; }
.reveal-delay-2 { transition-delay:.22s; }
.reveal-delay-3 { transition-delay:.32s; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  :root { --container:min(100% - 36px, 1000px); }
  .desktop-nav { display:none; }
  .menu-button { display:flex; }
  .mobile-menu { display:block; }
  .hero-layout { grid-template-columns:1fr .72fr; gap:34px; }
  .hero h1 { font-size:clamp(52px,7vw,76px); }
  .services-bento { grid-template-columns:1fr 1fr; }
  .service-featured { grid-column:span 2; }
  .service-wide { grid-column:span 2; }
  .network-layout { grid-template-columns:1fr; }
  .network-copy { max-width:680px; }
  .about-layout { gap:55px; }
  .footer-grid { grid-template-columns:1.3fr .7fr .7fr; }
  .footer-contact { grid-column:2 / 4; }
}

@media (max-width: 820px) {
  :root { --container:min(100% - 28px, 740px); }
  .section { padding:92px 0; }
  .language-switch, .nav-actions > .btn { display:none; }
  .hero { min-height:auto; padding:130px 0 100px; }
  .hero-layout { grid-template-columns:1fr; }
  .hero h1 { font-size:clamp(50px,13vw,76px); max-width:700px; }
  .hero-lead { font-size:16px; }
  .quote-card { margin-top:10px; }
  .hero-bottom { position:relative; inset:auto; transform:none; margin-top:50px; align-items:center; }
  .hero-metrics { gap:18px; }
  .scroll-hint { display:none; }
  .trust-strip-inner { overflow:auto; justify-content:flex-start; padding:0 4px; }
  .section-heading { align-items:flex-start; flex-direction:column; }
  .services-bento { grid-template-columns:1fr; }
  .service-featured, .service-wide { grid-column:auto; }
  .service-wide { grid-template-columns:1fr; }
  .cargo-visual { display:none; }
  .process-grid { grid-template-columns:1fr 1fr; gap:45px 28px; }
  .process-grid::before { display:none; }
  .process-item { padding-top:44px; }
  .process-number { top:0; }
  .process-dot { top:4px; right:0; }
  .projects-grid { height:auto; grid-template-columns:1fr; grid-template-rows:auto; }
  .project-large { grid-row:auto; }
  .project-card { min-height:420px; }
  .project-card:not(.project-large) { min-height:330px; }
  .about-layout { grid-template-columns:1fr; }
  .about-visual { max-width:620px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-contact { grid-column:auto; }
  .footer-brand { grid-column:1 / -1; }
  .footer-bottom { flex-wrap:wrap; }
}

@media (max-width: 560px) {
  :root { --container:calc(100% - 24px); }
  .site-header { padding:12px 0; }
  .brand-mark { width:39px; height:39px; }
  .brand-copy strong { font-size:16px; }
  .brand-copy small { font-size:6.7px; }
  .hero { padding-top:115px; }
  .hero h1 { font-size:clamp(45px,14.6vw,64px); }
  .hero-lead { font-size:14px; }
  .hero-actions { flex-direction:column; align-items:stretch; }
  .hero-actions .btn { width:100%; }
  .hero-trust { align-items:flex-start; }
  .quote-card-top { padding:20px; flex-direction:column; }
  .quick-form { padding:18px 20px 20px; }
  .form-grid { grid-template-columns:1fr; }
  .hero-bottom { display:block; }
  .hero-metrics { justify-content:space-between; }
  .hero-metrics strong { font-size:22px; }
  .section-heading h2, .network-copy h2, .about-copy h2 { font-size:39px; }
  .service-featured { min-height:430px; }
  .service-card-content { min-height:430px; }
  .service-wide { min-height:350px; }
  .map-canvas, .map-svg { min-height:430px; }
  .map-labels { display:none; }
  .map-card { left:12px; right:12px; bottom:12px; }
  .map-time { display:none; }
  .process-grid { grid-template-columns:1fr; }
  .project-copy h3, .project-card:not(.project-large) .project-copy h3 { font-size:24px; }
  .about-photo { min-height:480px; }
  .about-badge { width:105px; height:105px; right:-6px; }
  .about-values div { grid-template-columns:32px 1fr; }
  .about-values small { grid-column:2; }
  .cta-inner h2 { font-size:52px; }
  .cta-actions { flex-direction:column; }
  .cta-actions .btn { width:100%; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-brand, .footer-contact { grid-column:auto; }
  .footer-bottom { align-items:flex-start; flex-direction:column; }
  .modal { padding:10px; }
  .modal-dialog { padding:30px 18px 22px; border-radius:20px; }
  .modal-copy h2 { font-size:30px; padding-right:30px; }
  .modal-form-grid { grid-template-columns:1fr; }
  .full-width { grid-column:auto; }
  .toast { left:12px; right:12px; bottom:12px; min-width:0; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior:auto !important; animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .reveal { opacity:1; transform:none; }
}
