:root {
  --navy: #15324a;
  --navy-deep: #0d2436;
  --teal: #107b75;
  --coral: #f36e52;
  --gold: #f5bd42;
  --ink: #213440;
  --muted: #657580;
  --paper: #faf8f2;
  --white: #ffffff;
  --line: #dbe1df;
  --max: 1180px;
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, .button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: rgba(21, 50, 74, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.brand { display: inline-flex; gap: 12px; align-items: center; font-weight: 850; letter-spacing: .03em; }
.brand-mark { width: 18px; height: 18px; border-radius: 50%; background: var(--gold); box-shadow: 9px 0 0 -5px var(--coral); }
.site-header > nav:not(.mobile-nav) { display: flex; gap: 30px; align-items: center; font-size: .93rem; }
.site-header > nav:not(.mobile-nav) a:not(.nav-cta) { color: #d8e4eb; }
.site-header > nav:not(.mobile-nav) a:hover { color: var(--white); }
.language-switcher { display: inline-flex; gap: 3px; padding: 3px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.15); border-radius: 999px; }
.site-header > nav:not(.mobile-nav) .language-switcher a { min-width: 34px; padding: 5px 8px; color: #d8e4eb; text-align: center; border-radius: 999px; font-size: .75rem; font-weight: 800; }
.site-header > nav:not(.mobile-nav) .language-switcher a.active { color: var(--navy-deep); background: var(--white); }
.nav-cta { padding: 10px 17px; color: var(--navy-deep); background: var(--gold); border-radius: 999px; font-weight: 750; }
.menu-button, .site-header > .mobile-nav { display: none; }
.site-header > .mobile-nav[hidden] { display: none !important; }

.hero {
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  min-height: 650px;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--navy);
}
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 68px clamp(30px, 6vw, 86px); color: var(--white); }
.eyebrow { margin: 0 0 16px; color: var(--teal); font-size: .78rem; font-weight: 850; letter-spacing: .16em; }
.hero .eyebrow { color: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1 { margin-bottom: 24px; font-size: clamp(3.2rem, 6vw, 6.4rem); line-height: .94; letter-spacing: -.055em; }
h1 span { color: var(--gold); }
.hero-intro { max-width: 580px; color: #dbe7ed; font-size: 1.18rem; line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 15px 0 26px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 22px; border: 0; border-radius: 999px; font-weight: 800; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.16); }
.button-primary { color: var(--navy-deep); background: var(--gold); }
.button-secondary { color: var(--white); border: 1px solid rgba(255,255,255,.35); }
.button-coral { color: var(--white); background: var(--coral); }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 0; color: #bfd0d8; font-size: .9rem; list-style: none; }
.hero-points li::before { content: ""; display: inline-block; width: 7px; height: 7px; margin-right: 8px; background: var(--coral); border-radius: 50%; vertical-align: 1px; }
.hero-visual { position: relative; min-height: 650px; overflow: hidden; }
.hero-visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(21,50,74,.25), transparent 40%); pointer-events: none; }
.hero-visual img { height: 100%; object-fit: cover; }
.capacity-badge { position: absolute; z-index: 2; right: 28px; bottom: 28px; display: grid; min-width: 190px; padding: 18px 22px; color: var(--navy); background: var(--gold); border-radius: 18px; box-shadow: 0 16px 40px rgba(0,0,0,.2); }
.capacity-badge strong { font-size: 1.45rem; }
.capacity-badge span { font-size: .86rem; font-weight: 700; }

.proof-strip { display: grid; grid-template-columns: repeat(4, 1fr); max-width: var(--max); margin: -1px auto 0; background: var(--white); border-radius: 0 0 var(--radius) var(--radius); box-shadow: 0 16px 45px rgba(29,46,57,.08); }
.proof-strip div { display: grid; gap: 2px; padding: 27px 30px; border-right: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong { color: var(--teal); font-size: 1.55rem; line-height: 1.1; }
.proof-strip span { color: var(--muted); font-size: .82rem; }

.section { max-width: var(--max); margin: 0 auto; padding: 110px 24px; }
.section-heading { display: grid; grid-template-columns: .7fr 1.1fr .9fr; gap: 38px; align-items: end; margin-bottom: 48px; }
.section-heading .eyebrow { align-self: start; }
h2 { margin-bottom: 0; font-size: clamp(2.25rem, 4vw, 4rem); line-height: 1.05; letter-spacing: -.04em; }
.section-heading > p:last-child { margin-bottom: 0; color: var(--muted); }
.product-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 22px; }
.feature-image { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--navy); }
.feature-image img { height: 100%; min-height: 520px; object-fit: cover; }
.feature-image figcaption { position: absolute; left: 18px; bottom: 18px; max-width: 80%; padding: 12px 16px; color: var(--white); background: rgba(13,36,54,.82); border-radius: 12px; backdrop-filter: blur(10px); }
.feature-cards { display: grid; gap: 14px; }
.feature-cards article { padding: 27px; background: var(--white); border: 1px solid #edf0ee; border-radius: 18px; box-shadow: 0 10px 32px rgba(29,46,57,.05); }
.feature-cards article > span { color: var(--coral); font-size: .78rem; font-weight: 850; }
.feature-cards h3 { margin: 6px 0 6px; font-size: 1.18rem; }
.feature-cards p { margin: 0; color: var(--muted); font-size: .93rem; }

.capacity-section { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; max-width: none; padding-right: max(24px, calc((100vw - var(--max)) / 2)); padding-left: max(24px, calc((100vw - var(--max)) / 2)); color: var(--white); background: var(--navy-deep); }
.eyebrow-light { color: var(--gold); }
.capacity-copy p:not(.eyebrow) { max-width: 440px; margin-top: 23px; color: #bacbd4; }
.text-link { display: inline-flex; gap: 10px; margin-top: 20px; color: var(--gold); font-weight: 800; }
.capacity-table-wrap { align-self: center; overflow: hidden; background: var(--white); border-radius: var(--radius); box-shadow: 0 24px 70px rgba(0,0,0,.25); }
table { width: 100%; color: var(--ink); border-collapse: collapse; }
caption { padding: 22px 24px 12px; text-align: left; color: var(--navy); font-size: 1.12rem; font-weight: 850; }
th, td { padding: 17px 24px; text-align: left; border-bottom: 1px solid var(--line); }
th { color: var(--muted); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
td:last-child { color: var(--teal); font-weight: 850; }
.capacity-note { display: grid; grid-template-columns: auto auto; align-items: baseline; gap: 4px 16px; padding: 22px 24px; color: var(--navy); background: #fff1ca; }
.capacity-note span { font-size: .82rem; font-weight: 750; }
.capacity-note strong { font-size: 1.25rem; }
.capacity-note small { grid-column: 1 / -1; color: #6d6551; }

.section-heading.compact { display: flex; align-items: flex-end; justify-content: space-between; }
.application-grid { display: grid; grid-template-columns: 1fr 1fr .72fr; gap: 20px; }
.application-grid figure { margin: 0; overflow: hidden; background: var(--white); border-radius: var(--radius); }
.application-grid figure img { height: 370px; object-fit: cover; }
.application-grid figcaption { display: grid; gap: 4px; padding: 22px; }
.application-grid figcaption strong { font-size: 1.1rem; }
.application-grid figcaption span { color: var(--muted); font-size: .9rem; }
.application-callout { display: flex; flex-direction: column; justify-content: center; padding: 34px; color: var(--white); background: var(--teal); border-radius: var(--radius); }
.application-callout p { margin-bottom: 18px; color: #aee4df; font-size: .78rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.application-callout ul { display: grid; gap: 16px; padding: 0; margin: 0; list-style: none; }
.application-callout li { padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.2); font-size: 1.15rem; font-weight: 750; }

.quote-section { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; max-width: none; padding-right: max(24px, calc((100vw - var(--max)) / 2)); padding-left: max(24px, calc((100vw - var(--max)) / 2)); color: var(--white); background: var(--teal); }
.quote-copy > p:not(.eyebrow) { max-width: 480px; margin: 24px 0; color: #d6f0ed; }
.contact-lines { display: grid; gap: 10px; margin-top: 34px; }
.contact-lines a { display: grid; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.25); }
.contact-lines span { color: #b7e1dd; font-size: .77rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-lines strong { font-size: 1.12rem; }
.quote-form { display: grid; gap: 16px; padding: 30px; color: var(--ink); background: var(--white); border-radius: var(--radius); box-shadow: 0 24px 70px rgba(0,0,0,.16); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.quote-form label { display: grid; gap: 7px; font-size: .84rem; font-weight: 750; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #f7f8f6; border: 1px solid #dde3e0; border-radius: 10px; outline: none; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(16,123,117,.13); }
.quote-form textarea { resize: vertical; }
.quote-form .button { justify-self: start; margin-top: 4px; }
.form-note { margin: 0; color: var(--muted); font-size: .78rem; }

footer { padding: 48px max(24px, calc((100vw - var(--max)) / 2)); color: #cbd8df; background: var(--navy-deep); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; }
.brand-footer { color: var(--white); }
.footer-main p { margin: 0; }
.footer-main > a:last-child { color: var(--gold); font-weight: 750; }
.privacy { margin-top: 28px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,.13); border-bottom: 1px solid rgba(255,255,255,.13); }
.privacy summary { color: var(--white); font-weight: 750; cursor: pointer; }
.privacy p { max-width: 820px; margin: 15px 0 0; color: #aebfc8; font-size: .9rem; }
.privacy a { color: var(--gold); }
.copyright { margin: 26px 0 0; color: #8fa4af; font-size: .82rem; }

.mobile-languages { display: flex; gap: 8px; padding: 8px 13px 3px; border-top: 1px solid var(--line); }
.mobile-languages a { flex: 1; text-align: center; background: #eef4f3; }
.mobile-languages a.active { color: var(--white); background: var(--teal); }

[dir="rtl"] body { font-family: "Noto Sans Arabic", Tahoma, Arial, sans-serif; }
[dir="rtl"] .brand,
[dir="rtl"] .hero-actions,
[dir="rtl"] .hero-points,
[dir="rtl"] .text-link,
[dir="rtl"] .language-switcher,
[dir="rtl"] .mobile-languages { direction: rtl; }
[dir="rtl"] .hero-points li::before { margin-right: 0; margin-left: 8px; }
[dir="rtl"] caption,
[dir="rtl"] th,
[dir="rtl"] td { text-align: right; }
[dir="rtl"] .feature-image figcaption { right: 18px; left: auto; }
[dir="rtl"] .capacity-badge { right: auto; left: 28px; }
[dir="rtl"] .quote-form .button { justify-self: start; }

@media (max-width: 980px) {
  .site-header > nav:not(.mobile-nav) { display: none; }
  .menu-button { display: grid; gap: 4px; padding: 10px; background: transparent; border: 0; cursor: pointer; }
  .menu-button span:not(.sr-only) { width: 24px; height: 2px; background: var(--white); }
  .site-header > .mobile-nav { position: absolute; top: 78px; right: 20px; left: 20px; display: grid; gap: 4px; padding: 15px; background: var(--white); border-radius: 16px; box-shadow: 0 18px 48px rgba(0,0,0,.22); }
  .site-header > .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 12px 13px; color: var(--navy); border-radius: 10px; }
  .mobile-nav a:hover { background: #eef4f3; }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { min-height: 560px; }
  .hero-visual { min-height: 500px; }
  .proof-strip { grid-template-columns: 1fr 1fr; margin: 0 20px; border-radius: var(--radius); }
  .proof-strip div:nth-child(2) { border-right: 0; }
  .proof-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .section-heading { grid-template-columns: 1fr; gap: 12px; }
  .product-grid, .capacity-section, .quote-section { grid-template-columns: 1fr; }
  .application-grid { grid-template-columns: 1fr 1fr; }
  .application-callout { grid-column: 1 / -1; }
  .capacity-section, .quote-section { gap: 45px; }
  .footer-main { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .site-header { min-height: 68px; }
  .brand { font-size: .86rem; }
  .mobile-nav { top: 68px; }
  .hero-copy { min-height: auto; padding: 70px 24px 58px; }
  h1 { font-size: clamp(3rem, 17vw, 4.6rem); }
  .hero-visual { min-height: 390px; }
  .capacity-badge { right: 16px; bottom: 16px; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip div:last-child { border-bottom: 0; }
  .section { padding-top: 78px; padding-bottom: 78px; }
  .feature-image img { min-height: 390px; }
  .capacity-section, .quote-section { padding-top: 78px; padding-bottom: 78px; }
  th, td { padding: 14px 13px; font-size: .83rem; }
  .capacity-note { grid-template-columns: 1fr; }
  .application-grid { grid-template-columns: 1fr; }
  .application-callout { grid-column: auto; }
  .application-grid figure img { height: 320px; }
  .field-row { grid-template-columns: 1fr; }
  .quote-form { padding: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
