:root {
  --bg: #0f1720;
  --bg-soft: #16212c;
  --panel: #ffffff;
  --panel-soft: #f4f7fa;
  --text: #12202e;
  --muted: #586779;
  --line: #d9e1e8;
  --primary: #0f5d84;
  --primary-2: #0c7bb1;
  --accent: #d89b2b;
  --shadow: 0 20px 60px rgba(9, 24, 39, 0.12);
  --radius: 20px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.topbar {
  background: #0b1118;
  color: #d3dde7;
  font-size: 14px;
}
.topbar .container {
  display: flex; justify-content: space-between; gap: 16px; padding: 10px 0; flex-wrap: wrap;
}
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,93,132,.08);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 16px 0;
}
.brand {
  display: flex; align-items: center; gap: 14px;
}
.logo {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), #0a3550);
  color: white; display: grid; place-items: center; font-weight: 800; letter-spacing: .08em;
  box-shadow: var(--shadow);
}
.brand-title { font-size: 20px; font-weight: 800; letter-spacing: .03em; }
.brand-sub { font-size: 12px; color: var(--muted); text-transform: uppercase; letter-spacing: .18em; }
.nav { display: flex; gap: 22px; align-items: center; flex-wrap: wrap; }
.nav a { color: #243444; font-weight: 600; }
.nav a:hover { color: var(--primary); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 700; transition: .2s ease;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.btn-secondary { border: 1px solid rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.08); }
.btn-secondary-dark { border: 1px solid var(--line); background: #fff; color: var(--text); }
.hero {
  position: relative; color: #fff;
  background: linear-gradient(rgba(8,15,24,.55), rgba(8,15,24,.6)), url('../images/warehouse-roof.png') center/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,22,36,.65), rgba(10,22,36,.35) 55%, rgba(10,22,36,.1));
}
.hero .container { position: relative; z-index: 1; padding: 90px 0 100px; }
.eyebrow {
  display: inline-block; padding: 8px 14px; border-radius: 999px;
  font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.16);
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 36px; align-items: end; margin-top: 26px;
}
.hero h1 { font-size: clamp(40px, 6vw, 68px); line-height: 1.02; margin: 18px 0 16px; max-width: 780px; }
.hero p.lead { max-width: 690px; font-size: 19px; color: #dbe5ef; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.metrics {
  display: grid; grid-template-columns: repeat(2,1fr); gap: 16px;
}
.metric-card {
  padding: 22px; border-radius: var(--radius); background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,.12);
}
.metric-number { font-size: 30px; font-weight: 800; }
.metric-label { font-size: 14px; color: #d7e3ee; }
.section { padding: 84px 0; }
.section-alt { background: var(--panel-soft); }
.section-dark { background: var(--bg); color: #fff; }
.section-title { font-size: clamp(30px, 4vw, 46px); line-height: 1.08; margin: 0 0 14px; }
.section-intro { color: var(--muted); max-width: 720px; font-size: 18px; }
.section-dark .section-intro { color: #bfd0e0; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 30px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card {
  background: var(--panel); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); border: 1px solid rgba(15,93,132,.08);
}
.card h3 { margin-top: 0; font-size: 24px; }
.card p:last-child { margin-bottom: 0; }
.service-card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow);
}
.service-card .content { padding: 24px; }
.service-card h3 { margin: 0 0 10px; font-size: 23px; }
.service-card p { color: var(--muted); }
.icon {
  width: 54px; height: 54px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(15,93,132,.15), rgba(12,123,177,.09)); color: var(--primary); font-size: 22px; font-weight: 800;
}
.media-card {
  overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); background: #fff; border: 1px solid var(--line);
}
.media-card img { width: 100%; height: 100%; object-fit: cover; }
.media-card.tall { min-height: 440px; }
.list-check { padding-left: 0; list-style: none; margin: 20px 0 0; }
.list-check li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.list-check li::before { content: '•'; position: absolute; left: 10px; color: var(--accent); font-weight: 900; }
.feature-strip {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 34px;
}
.feature-strip .card { padding: 22px; }
.process-step {
  position: relative; padding: 26px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
}
.process-step span {
  display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 999px;
  background: rgba(216,155,43,.15); color: #ffd488; font-weight: 800; margin-bottom: 16px;
}
.gallery { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 18px; }
.gallery .media-card:first-child { grid-row: span 2; min-height: 530px; }
.banner {
  background: linear-gradient(135deg, #0b2233, #11496b); color: #fff; border-radius: 28px; overflow: hidden;
}
.banner-inner { display: grid; grid-template-columns: 1fr .9fr; gap: 30px; align-items: center; }
.banner-copy { padding: 50px; }
.banner-copy h2 { margin-top: 0; font-size: clamp(28px, 4vw, 44px); }
.banner-copy p { color: #dbe6f1; }
.banner img { height: 100%; min-height: 340px; object-fit: cover; width: 100%; }
.cta {
  background: linear-gradient(135deg, #0f5d84, #0a2d44); color: white; border-radius: 30px; padding: 44px;
  box-shadow: var(--shadow);
}
.cta-row { display: flex; justify-content: space-between; gap: 24px; align-items: center; flex-wrap: wrap; }
.footer {
  background: #0a1016; color: #c9d4de; padding: 26px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr .8fr .8fr .9fr; gap: 22px; padding: 34px 0 28px;
}
.footer h4 { color: #fff; margin-top: 0; }
.footer a { color: #c9d4de; }
.footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 14px 0 24px; font-size: 14px; color: #93a4b4; }
.page-hero {
  background: linear-gradient(135deg, #102334, #114c70); color: #fff; padding: 70px 0;
}
.page-hero h1 { margin: 12px 0 10px; font-size: clamp(36px,5vw,58px); }
.breadcrumbs { color: #cfe0ec; font-size: 14px; }
.stats-grid { display:grid; grid-template-columns: repeat(4,1fr); gap:18px; margin-top: 26px; }
.stats-grid .card { text-align:center; }
.stat-number { font-size: 34px; font-weight: 800; color: var(--primary); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; }
.form-card input, .form-card textarea, .form-card select {
  width: 100%; border: 1px solid var(--line); border-radius: 14px; padding: 14px 16px; font: inherit; margin-bottom: 14px;
}
.form-card textarea { min-height: 140px; resize: vertical; }
.project-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.project-card { overflow:hidden; border-radius: var(--radius); background:white; box-shadow: var(--shadow); border:1px solid var(--line); }
.project-card img { height: 220px; width:100%; object-fit:cover; }
.project-card .content { padding: 22px; }
.small { font-size: 14px; color: var(--muted); }
@media (max-width: 980px) {
  .hero-grid, .grid-2, .grid-3, .banner-inner, .contact-grid, .project-grid, .footer-grid, .feature-strip, .gallery, .stats-grid { grid-template-columns: 1fr; }
  .gallery .media-card:first-child { grid-row: auto; min-height: auto; }
  .hero .container { padding: 72px 0 82px; }
  .banner-copy { padding: 36px; }
}
@media (max-width: 760px) {
  .nav { display:none; }
  .header-inner { justify-content: space-between; }
  .section { padding: 64px 0; }
  .hero h1 { font-size: 40px; }
  .cta { padding: 30px; }
}
