:root {
  --navy: #06264a;
  --deep: #021a35;
  --blue: #064f91;
  --teal: #16a6a3;
  --aqua: #35d0c7;
  --ink: #132238;
  --muted: #5f6f82;
  --line: #dce8f1;
  --soft: #f4f9fc;
  --white: #fff;
  --shadow: 0 18px 45px rgba(6, 38, 74, .14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
body.rtl { direction: rtl; font-family: "Segoe UI", Tahoma, Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; object-fit: cover; }
.container { width: min(1140px, calc(100% - 36px)); margin: 0 auto; }

.topbar {
  background: linear-gradient(90deg, var(--deep), var(--blue));
  color: var(--white);
  font-size: .88rem;
}
.topbar-inner { min-height: 42px; display: flex; align-items: center; gap: 26px; }
.topbar a, .topbar span { opacity: .95; }
.socials { margin-left: auto; display: flex; gap: 14px; font-weight: 800; }
body.rtl .socials { margin-left: 0; margin-right: auto; }

.main-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  box-shadow: 0 8px 26px rgba(6, 38, 74, .08);
  backdrop-filter: blur(14px);
}
.nav-inner { min-height: 108px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo { display: flex; align-items: center; gap: 16px; min-width: 240px; }
.logo img {
  width: 86px;
  height: 70px;
  border-radius: var(--radius);
  object-fit: cover;
  object-position: center;
}
.logo strong { display: block; color: var(--blue); font-size: 2rem; line-height: 1; letter-spacing: .05em; }
.logo small { display: block; color: #4e5e6c; max-width: 160px; font-size: .76rem; font-weight: 700; text-transform: uppercase; line-height: 1.2; }
.nav-menu { display: flex; align-items: center; gap: 26px; }
.nav-menu a {
  position: relative;
  color: #111827;
  font-size: .94rem;
  font-weight: 800;
  text-transform: uppercase;
}
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: auto;
  bottom: -18px;
  width: 0;
  height: 3px;
  background: var(--teal);
  transition: width .25s ease;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }
.lang-select {
  height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  padding: 0 8px;
}
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.menu-btn span { display: block; width: 22px; height: 2px; margin: 5px auto; background: var(--navy); }

.hero {
  min-height: 610px;
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 36%, rgba(255,255,255,.06) 70%), url("assets/images/hero-real.png") center/cover no-repeat;
}
body.rtl .hero {
  background: linear-gradient(270deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.72) 36%, rgba(255,255,255,.06) 70%), url("assets/images/hero-real.png") center/cover no-repeat;
}
.hero-content { padding: 80px 0; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
.hero h1 { max-width: 560px; margin-bottom: 20px; color: var(--navy); font-size: clamp(2.6rem, 5.5vw, 4.6rem); line-height: 1.08; text-transform: uppercase; }
.hero p:not(.eyebrow) { max-width: 470px; color: #14263b; font-size: 1.08rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 30px; }
.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  padding: 0 24px;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn.primary { color: var(--white); background: linear-gradient(135deg, var(--blue), var(--teal)); }
.btn.secondary { color: var(--navy); border: 2px solid var(--teal); background: rgba(255,255,255,.82); }

.feature-strip { padding: 34px 0; background: var(--white); box-shadow: 0 12px 34px rgba(6,38,74,.06); }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.mini-feature { display: flex; align-items: center; gap: 16px; }
.mini-feature span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 62px;
  border: 3px solid var(--teal);
  border-radius: 50%;
  color: var(--teal);
  font-size: 1.8rem;
  font-weight: 900;
}
.mini-feature h3 { margin-bottom: 4px; color: var(--navy); font-size: .95rem; text-transform: uppercase; }
.mini-feature p { margin: 0; color: var(--muted); font-size: .9rem; }

.section { padding: 74px 0; }
.section.soft { width: 100%; background: var(--soft); }
.section-title { text-align: center; margin-bottom: 34px; }
.section-title h2, .split-copy h2, .page-hero h1 { color: var(--navy); font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; text-transform: uppercase; }
.section-title h2::after, .split-copy h2::after {
  content: "";
  display: block;
  width: 62px;
  height: 4px;
  margin: 14px auto 0;
  background: var(--teal);
}
.split { width: min(1140px, calc(100% - 36px)); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 72px; }
.split-img { width: 100%; height: 330px; border-radius: var(--radius); box-shadow: var(--shadow); }
.split-copy p { color: var(--muted); }
.split-copy h2::after { margin-left: 0; }
body.rtl .split-copy h2::after { margin-right: 0; margin-left: auto; }

.card-grid { display: grid; gap: 22px; }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.service-card, .product-tile, .info-card, .news-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 22px rgba(6,38,74,.06);
  transition: transform .28s ease, box-shadow .28s ease;
}
.service-card:hover, .product-tile:hover, .info-card:hover, .news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.service-card { position: relative; text-align: center; padding-bottom: 24px; }
.service-card img { width: 100%; height: 145px; }
.service-card span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: -27px auto 12px;
  position: relative;
  border-radius: 50%;
  color: var(--white);
  background: var(--teal);
  font-size: 1.5rem;
  font-weight: 900;
}
.service-card h3 { margin-bottom: 8px; color: var(--navy); text-transform: uppercase; font-size: 1rem; }
.service-card p { margin: 0 auto; max-width: 220px; color: var(--muted); font-size: .92rem; }

.product-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.product-tile { text-align: center; background: var(--soft); }
.product-tile img { width: 100%; height: 108px; }
.product-tile strong { display: block; padding: 13px 8px 16px; color: var(--navy); font-size: .82rem; text-transform: uppercase; }

.cta-band {
  padding: 42px 0;
  color: var(--white);
  background: linear-gradient(90deg, rgba(2,26,53,.96), rgba(6,79,145,.88)), url("assets/images/features-logistics.svg") center/cover;
}
.cta-inner { display: grid; grid-template-columns: 1.1fr 1fr auto; align-items: center; gap: 34px; }
.cta-inner h2 { margin: 0; font-size: 1.75rem; line-height: 1.25; text-transform: uppercase; }
.cta-inner p { margin: 0; color: rgba(255,255,255,.86); font-size: 1.08rem; }

.page-hero {
  padding: 86px 0;
  color: var(--white);
  background: linear-gradient(90deg, rgba(2,26,53,.88), rgba(6,79,145,.5)), url("assets/images/hero-real.png") center/cover;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p { max-width: 680px; color: rgba(255,255,255,.86); }
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.info-card { padding: 28px; }
.info-card h3 { color: var(--navy); }
.info-card p, .news-card p { color: var(--muted); }
.wide-photo { width: 100%; height: 420px; border-radius: var(--radius); box-shadow: var(--shadow); }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: stretch; }
.contact-box { padding: 30px; border-radius: var(--radius); background: var(--soft); border: 1px solid var(--line); }
.contact-form { display: grid; gap: 14px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  font: inherit;
}
.contact-form textarea { min-height: 136px; resize: vertical; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.news-card img { width: 100%; height: 170px; }
.news-card div { padding: 22px; }

.footer {
  padding: 42px 0 0;
  color: rgba(255,255,255,.82);
  background: linear-gradient(135deg, var(--deep), var(--blue));
}
.footer-grid { display: grid; grid-template-columns: 1.25fr .8fr .85fr 1fr; gap: 34px; }
.footer-logo { width: 150px; height: 86px; margin-bottom: 14px; border-radius: var(--radius); object-fit: cover; }
.footer h4 { margin: 0 0 14px; color: var(--white); text-transform: uppercase; }
.footer a, .footer p { display: block; margin: 7px 0; color: rgba(255,255,255,.82); }
.footer-bottom { margin-top: 34px; padding: 18px; text-align: center; border-top: 1px solid rgba(255,255,255,.14); font-size: .9rem; }

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

@media (max-width: 1080px) {
  .menu-btn { display: block; }
  .nav-menu {
    position: absolute;
    top: 108px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: .25s ease;
  }
  .nav-menu.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-menu a { padding: 12px; }
  .nav-menu a::after { bottom: 6px; }
  .lang-select { margin: 8px 12px; }
  .strip-grid, .card-grid.four, .product-row, .info-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .split, .contact-grid, .cta-inner { grid-template-columns: 1fr; }
}

@media (max-width: 680px) {
  .topbar-inner { flex-wrap: wrap; gap: 10px 16px; padding: 10px 0; }
  .nav-inner { min-height: 86px; }
  .nav-menu { top: 86px; }
  .logo img { width: 64px; height: 58px; }
  .logo strong { font-size: 1.55rem; }
  .logo small { display: none; }
  .hero { min-height: 560px; background-position: 62% center; }
  .hero h1 { font-size: 2.55rem; }
  .strip-grid, .card-grid.four, .product-row, .info-grid, .news-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .split { gap: 28px; }
  .split-img, .wide-photo { height: 260px; }
}
