:root {
  --green: #45a535;
  --green-dark: #247223;
  --red: #d43b34;
  --black: #07131a;
  --navy: #081018;
  --cream: #f4f3ee;
  --text: #101010;
  --muted: #5f6670;
  --shadow: 0 16px 36px rgba(0,0,0,.14);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #eef1f2;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1320px, calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
}
.desktop-nav {
  display: flex;
  gap: 26px;
  font-weight: 600;
  color: #1e2a35;
}
.desktop-nav a:hover { color: var(--green-dark); }
.menu-btn {
  display: none;
  border: 0;
  background: #fff;
  font-size: 1.6rem;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0 16px 16px;
  gap: 14px;
  font-weight: 600;
}
.mobile-nav.open { display: flex; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.brand-large .brand-text strong { font-size: 2rem; }
.brand-mark {
  position: relative;
  width: 72px;
  height: 72px;
  display: inline-block;
}
.brand-circle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    linear-gradient(135deg, transparent 0 30%, #000 31% 40%, transparent 41%),
    linear-gradient(180deg, #e13f3a 0 33%, #fff 33% 66%, #35a336 66% 100%);
  box-shadow: inset 0 0 0 8px #fff, inset 0 0 0 11px #111;
}
.brand-truck {
  position: absolute;
  right: 8px;
  top: 21px;
  width: 34px;
  height: 22px;
  background: var(--green);
  border-radius: 5px 7px 4px 4px;
  box-shadow: -18px 6px 0 0 #111;
}
.brand-truck::before,
.brand-truck::after {
  content: "";
  position: absolute;
  bottom: -6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111;
}
.brand-truck::before { left: -11px; }
.brand-truck::after { right: 1px; }
.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-text strong {
  font-size: 1.35rem;
  line-height: 1;
  letter-spacing: .02em;
}
.brand-text small {
  margin-top: 6px;
  color: #2a2f34;
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.hero {
  padding: 24px 0 18px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.04fr 1.35fr .78fr;
  gap: 0;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}
.hero-copy {
  padding: 42px 38px 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(255,255,255,.94)),
    url('assets/reference-layout.jpg') center left/cover no-repeat;
}
.hero-copy h1 {
  margin: 36px 0 14px;
  font-size: clamp(2.7rem, 4vw, 4rem);
  line-height: .95;
  letter-spacing: -.04em;
}
.hero-copy h1 span {
  color: var(--green);
}
.hero-copy p {
  margin: 0 0 28px;
  color: #24303a;
  font-size: 1.3rem;
  line-height: 1.5;
  max-width: 520px;
}
.hero-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0 26px;
}
.hero-icons div {
  text-align: center;
  border-right: 1px solid rgba(0,0,0,.08);
  padding-right: 10px;
}
.hero-icons div:last-child { border-right: 0; }
.hero-icons span {
  display: block;
  font-size: 1.9rem;
  margin-bottom: 8px;
}
.hero-icons b {
  font-size: .92rem;
  line-height: 1.3;
  text-transform: uppercase;
}
.site-url {
  display: inline-block;
  background: linear-gradient(90deg, #051018, #10222f);
  color: #fff;
  padding: 16px 28px;
  border-radius: 18px 18px 0 0;
  font-weight: 700;
}
.hero-visual {
  min-height: 620px;
  background:
    linear-gradient(rgba(255,255,255,.06), rgba(255,255,255,.02)),
    url('assets/reference-layout.jpg') center center/cover no-repeat;
  background-position: 56% 16%;
}
.corridor-panel {
  background: linear-gradient(180deg, #041018 0%, #08131c 100%);
  color: #fff;
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.corridor-panel h2,
.panel h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2vw, 2rem);
  line-height: 1;
  color: var(--green);
}
.corridor-list {
  display: grid;
  gap: 16px;
}
.route {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(255,255,255,.18);
}
.route span {
  font-weight: 700;
  text-transform: uppercase;
}
.route small {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.68);
  font-size: .76rem;
}
.route b {
  color: var(--green);
  font-size: 2rem;
}
.map-card {
  position: relative;
  min-height: 300px;
  border-radius: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 45%, rgba(95,123,146,.24), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02)),
    url('assets/reference-brochure.jpg') 86% 10%/cover no-repeat,
    #0c1822;
}
.map-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.route-line {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}
.route-line.green { stroke: #65d84f; }
.route-line.red { stroke: #d74239; }
.route-line.dotted { stroke-dasharray: 8 9; }
.map-label {
  position: absolute;
  z-index: 1;
  background: rgba(0,0,0,.56);
  color: #fff;
  border: 1px solid rgba(255,255,255,.1);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
}
.dubai { right: 16px; top: 42px; }
.tangier { left: 14px; top: 58px; }
.berbera { right: 12px; bottom: 44px; }
.hargeisa { right: 22px; bottom: 14px; }

.feature-grid,
.info-grid {
  padding: 18px 0;
}
.grid-3,
.grid-info {
  display: grid;
  gap: 18px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-info { grid-template-columns: 1fr 1fr 1fr; }
.feature-card,
.panel {
  border-radius: 24px;
  overflow: hidden;
  min-height: 300px;
  box-shadow: var(--shadow);
}
.feature-card {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-color: #dfe8eb;
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 10%, rgba(0,0,0,.46) 100%);
}
.feature-ribbon,
.feature-content {
  position: relative;
  z-index: 1;
}
.feature-ribbon {
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 16px 22px 16px 18px;
  font-weight: 800;
  font-size: 1.15rem;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0 100%);
}
.feature-content {
  padding: 24px;
  color: #fff;
  font-size: 1.14rem;
  line-height: 1.55;
}
.sea { background: url('assets/reference-layout.jpg') 17% 69%/260% no-repeat; }
.warehouse { background: url('assets/reference-layout.jpg') 50% 72%/240% no-repeat; }
.customs { background: url('assets/reference-layout.jpg') 85% 73%/245% no-repeat; }

.dark-panel {
  background: linear-gradient(180deg, #071018, #09141e);
  color: #fff;
  padding: 30px 28px;
}
.industry-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.industry-list div {
  text-align: center;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 20px 10px;
  font-weight: 700;
}
.industry-list span {
  display: block;
  font-size: 2rem;
  margin-bottom: 10px;
}
.green-panel {
  background: linear-gradient(135deg, #1d6e24, #3ea132);
  color: #fff;
  padding: 30px 28px;
}
.green-panel h2 { color: #fff; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
}
.check-list li {
  position: relative;
  padding-left: 34px;
  font-weight: 600;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -2px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.26);
}
.light-panel {
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.96)),
    url('assets/reference-layout.jpg') right center/cover no-repeat;
  padding: 30px 28px;
}
.contact-card {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 24px;
  align-items: center;
  min-height: 100%;
}
.contact-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 14px;
  color: #24303a;
  font-weight: 600;
}
.contact-brand {
  display: grid;
  place-items: center;
  min-height: 240px;
  background: linear-gradient(180deg, #081018, #10222e);
  border-radius: 20px;
  color: #fff;
  padding: 18px;
}
.contact-brand .brand-text small { color: rgba(255,255,255,.72); }
.bottom-bar {
  padding: 0 0 22px;
}
.bottom-items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(90deg, #051018 0%, #08131c 54%, #bd2628 100%);
  color: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bottom-items div {
  padding: 24px 18px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: .02em;
  border-right: 1px solid rgba(255,255,255,.12);
}
.bottom-items div:last-child { border-right: 0; }
.site-footer {
  padding: 0 0 26px;
}
.footer-wrap {
  display: flex;
  justify-content: space-between;
  color: #42505d;
  font-weight: 600;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { min-height: 420px; }
  .corridor-panel { min-height: auto; }
  .grid-3,
  .grid-info,
  .bottom-items,
  .check-list,
  .industry-list,
  .contact-card,
  .hero-icons {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .desktop-nav { display: none; }
  .menu-btn { display: block; }
  .hero-copy,
  .corridor-panel,
  .dark-panel,
  .green-panel,
  .light-panel { padding: 26px 22px; }
  .hero-copy h1 { margin-top: 24px; }
  .grid-3,
  .grid-info,
  .bottom-items,
  .check-list,
  .industry-list,
  .contact-card,
  .hero-icons { grid-template-columns: 1fr; }
  .feature-card,
  .panel { min-height: 260px; }
  .brand-large .brand-text strong { font-size: 1.55rem; }
}
