:root {
  --green-950: #062417;
  --green-900: #0a3020;
  --green-800: #0e3f2c;
  --green-700: #145137;
  --green-100: #e9f1eb;
  --beige-50: #fbf7ef;
  --beige-100: #f2eadb;
  --beige-200: #dfcfb1;
  --gold: #d8b66a;
  --text: #17231d;
  --muted: #66756d;
  --white: #ffffff;
  --line: rgba(14, 63, 44, 0.14);
  --shadow: 0 22px 60px rgba(6, 36, 23, 0.14);
  --radius: 26px;
  --radius-sm: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, "Noto Sans Arabic", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fff 0%, var(--beige-50) 55%, #fff 100%);
  line-height: 1.6;
  overflow-x: hidden;
}
body[dir="rtl"] {
  font-family: "Noto Sans Arabic", "Segoe UI", Tahoma, Arial, sans-serif;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 36px), var(--max)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 12px; z-index: 99; background: var(--green-900); color: #fff; padding: 10px 14px; border-radius: 12px;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(14, 63, 44, 0.1);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; min-height: 78px; gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: max-content; }
.brand-mark {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 12px; background: linear-gradient(135deg, var(--green-900), var(--green-700));
  box-shadow: 0 10px 26px rgba(14, 63, 44, .22);
}
.brand-mark span { width: 21px; height: 16px; display: block; border: 4px solid var(--white); border-radius: 2px; }
.brand-text strong { display: block; font-size: clamp(1.12rem, 2vw, 1.48rem); letter-spacing: -.04em; color: var(--green-900); line-height: 1.05; }
.brand-text small { display: block; color: var(--muted); font-weight: 700; font-size: .75rem; text-transform: uppercase; letter-spacing: .06em; }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(12px, 2vw, 26px); flex: 1; }
.main-nav a { font-weight: 800; color: var(--green-950); font-size: .92rem; position: relative; padding-block: 26px; }
.main-nav a::after { content: ""; position: absolute; inset-inline: 0; bottom: 18px; height: 3px; border-radius: 10px; background: var(--green-700); transform: scaleX(0); transition: transform .22s ease; }
.main-nav a:hover::after, .main-nav a:focus::after { transform: scaleX(1); }
.lang-switch { display: flex; align-items: center; gap: 8px; font-weight: 900; color: var(--green-900); }
.lang-btn { border: 0; background: transparent; color: var(--muted); font-weight: 900; cursor: pointer; padding: 7px 3px; }
.lang-btn.active { color: var(--green-900); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; cursor: pointer; }
.menu-toggle span { display: block; width: 25px; height: 3px; background: var(--green-900); border-radius: 99px; margin: 5px 0; }

.hero { position: relative; min-height: 680px; display: grid; align-items: center; overflow: hidden; }
.hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(6, 36, 23, .88) 0%, rgba(6, 36, 23, .62) 36%, rgba(6, 36, 23, .08) 78%),
              linear-gradient(0deg, rgba(6, 36, 23, .22), rgba(6, 36, 23, .04));
}
body[dir="rtl"] .hero-overlay {
  background: linear-gradient(-90deg, rgba(6, 36, 23, .88) 0%, rgba(6, 36, 23, .62) 36%, rgba(6, 36, 23, .08) 78%),
              linear-gradient(0deg, rgba(6, 36, 23, .22), rgba(6, 36, 23, .04));
}
.hero-content { position: relative; z-index: 2; max-width: 800px; color: #fff; padding-block: 90px; }
.eyebrow, .section-kicker {
  margin: 0 0 12px; font-size: .82rem; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; color: var(--gold);
}
.hero h1 { font-size: clamp(2.55rem, 5vw, 5.2rem); line-height: .98; letter-spacing: -.06em; margin: 0 0 22px; max-width: 760px; }
.hero-lead { max-width: 610px; margin: 0 0 30px; font-size: clamp(1.02rem, 1.4vw, 1.22rem); color: rgba(255,255,255,.92); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 13px 20px; border-radius: 999px;
  border: 1px solid transparent; font-weight: 900; cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--green-800); color: #fff; box-shadow: 0 15px 40px rgba(6,36,23,.28); }
.btn-light { background: rgba(255,255,255,.92); color: var(--green-900); }
.btn-outline { border-color: var(--green-700); color: var(--green-800); background: transparent; }
.btn-gold { background: linear-gradient(135deg, var(--gold), #f0daa3); color: var(--green-950); width: 100%; }

.values { margin-top: -58px; position: relative; z-index: 3; }
.value-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  background: rgba(255,255,255,.94); border: 1px solid rgba(255,255,255,.8);
  border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden;
}
.value-card { padding: 30px 24px; min-height: 150px; border-inline-end: 1px solid var(--line); }
.value-card:last-child { border-inline-end: 0; }
.value-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; background: var(--green-100); color: var(--green-800); font-weight: 1000; font-size: 1.45rem; margin-bottom: 12px; }
.value-card h3 { margin: 0 0 6px; color: var(--green-900); font-size: 1rem; }
.value-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.section { padding: 92px 0; }
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(28px, 5vw, 72px); align-items: center; }
.split-text-first { grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); }
.section-copy h2, .section-head h2, .contact-band h2 {
  margin: 0 0 18px; color: var(--green-950); font-size: clamp(2rem, 3.5vw, 3.5rem); line-height: 1.05; letter-spacing: -.05em;
}
.section-copy p, .section-head p:not(.section-kicker) { color: var(--muted); font-size: 1.05rem; margin: 0 0 20px; }
.centered { text-align: center; max-width: 780px; margin: 0 auto 38px; }
.image-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid rgba(14,63,44,.10); background: #fff; }
.image-card img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
.stacked-card { position: relative; }
.stacked-card::before { content:""; position:absolute; z-index:-1; inset: 24px -18px -18px 24px; border-radius: var(--radius); background: var(--green-100); }
.mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 30px; }
.mini-stats span { background: #fff; border: 1px solid var(--line); padding: 17px; border-radius: var(--radius-sm); box-shadow: 0 12px 24px rgba(6,36,23,.06); }
.mini-stats strong { display: block; color: var(--green-900); font-size: 1.25rem; line-height: 1; }
.mini-stats small { display: block; color: var(--muted); margin-top: 7px; font-weight: 700; }

.products { background: radial-gradient(circle at top, #fff 0%, var(--beige-50) 62%); }
.product-grid { display: grid; grid-template-columns: 1.3fr .85fr .85fr; gap: 20px; }
.product-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 44px rgba(6,36,23,.08);
  display: flex; flex-direction: column; min-height: 100%;
}
.product-card-wide { display: grid; grid-template-columns: .85fr 1.15fr; }
.product-visual { background: linear-gradient(160deg, #fff, var(--beige-100)); display: grid; place-items: center; padding: 24px; }
.product-visual img { width: min(270px, 100%); height: auto; filter: drop-shadow(0 20px 30px rgba(6,36,23,.15)); }
.product-visual.single img { width: min(310px, 100%); }
.product-info { padding: 28px; display: flex; flex-direction: column; justify-content: center; }
.product-info h3 { margin: 0 0 4px; color: var(--green-900); font-size: 1.35rem; }
.product-sub, .product-info p { color: var(--muted); margin: 0 0 18px; }
.price-list { list-style: none; padding: 0; margin: 8px 0 0; }
.price-list li { display: flex; justify-content: space-between; gap: 14px; border-top: 1px dashed rgba(14,63,44,.24); padding: 12px 0; color: var(--text); align-items: center; }
.price-list li::before { content: "✓"; flex: 0 0 26px; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; background: var(--green-100); color: var(--green-900); font-weight: 900; }
.price-list span { flex: 1; }
.price-list strong { color: var(--green-900); white-space: nowrap; }
.big-price { margin-top: auto !important; color: var(--green-900) !important; font-size: 1.55rem; font-weight: 1000; letter-spacing: -.03em; }
.compact { min-height: 230px; }

.process-section { background: #fff; }
.check-list { padding: 0; margin: 26px 0 0; list-style: none; display: grid; gap: 12px; }
.check-list li { position: relative; padding-inline-start: 34px; font-weight: 800; color: var(--green-900); }
.check-list li::before { content: "✓"; position: absolute; inset-inline-start: 0; top: 1px; width: 23px; height: 23px; border-radius: 50%; background: var(--green-100); display: grid; place-items: center; }
body[dir="rtl"] .check-list li { padding-inline-start: 0; padding-inline-end: 34px; }
body[dir="rtl"] .check-list li::before { inset-inline-start: auto; inset-inline-end: 0; }
.team-img img { object-position: center top; }

.contact-band { padding: 82px 0; background: linear-gradient(135deg, var(--green-950), var(--green-800)); color: #fff; }
.contact-band .section-kicker.light { color: var(--gold); }
.contact-band h2 { color: #fff; }
.contact-band p { color: rgba(255,255,255,.82); }
.contact-grid { display: grid; grid-template-columns: 1fr minmax(300px, 430px); gap: clamp(28px, 5vw, 70px); align-items: start; }
.contact-lines { display: grid; gap: 8px; margin-top: 24px; }
.contact-lines p { margin: 0; }
.contact-form { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); padding: 24px; border-radius: var(--radius); backdrop-filter: blur(16px); }
.contact-form label { display: grid; gap: 7px; margin-bottom: 14px; font-weight: 800; }
.contact-form input, .contact-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.20); border-radius: 15px; padding: 13px 14px; background: rgba(255,255,255,.95); color: var(--text); outline: none; }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(216,182,106,.22); }
.form-note { font-size: .88rem; margin: 12px 0 0 !important; color: rgba(255,255,255,.75) !important; }

.footer { background: var(--green-950); color: rgba(255,255,255,.8); padding: 48px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 28px; }
.footer .brand-text strong { color: #fff; }
.footer .brand-text small, .footer a, .footer p { color: rgba(255,255,255,.72); }
.footer h3 { color: #fff; margin: 0 0 12px; }
.footer a { display: block; margin: 6px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 30px; padding-top: 18px; font-size: .92rem; }
.footer-bottom p { margin: 0; }
.floating-contact { position: fixed; inset-inline-end: 18px; bottom: 18px; z-index: 40; width: 56px; height: 56px; display: grid; place-items: center; background: var(--gold); color: var(--green-950); border-radius: 50%; box-shadow: 0 15px 35px rgba(6,36,23,.28); font-size: 1.35rem; }

@media (max-width: 1020px) {
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute; left: 18px; right: 18px; top: calc(100% + 8px); display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border-radius: 20px; background: #fff; box-shadow: var(--shadow); border: 1px solid var(--line);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 13px 15px; border-radius: 12px; }
  .main-nav a:hover { background: var(--green-100); }
  .main-nav a::after { display: none; }
  .hero { min-height: 620px; }
  .value-grid { grid-template-columns: repeat(2, 1fr); }
  .value-card:nth-child(2) { border-inline-end: 0; }
  .value-card:nth-child(1), .value-card:nth-child(2) { border-bottom: 1px solid var(--line); }
  .split, .split-text-first, .contact-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card-wide { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .header-inner { min-height: 70px; }
  .brand-mark { width: 38px; height: 38px; }
  .brand-text strong { font-size: 1.05rem; }
  .brand-text small { font-size: .65rem; }
  .lang-switch { gap: 4px; }
  .hero { min-height: 610px; }
  .hero-content { padding-block: 70px; }
  .hero-actions { align-items: stretch; flex-direction: column; max-width: 310px; }
  .value-grid { grid-template-columns: 1fr; border-radius: 20px; }
  .value-card { border-inline-end: 0 !important; border-bottom: 1px solid var(--line); padding: 24px; }
  .value-card:last-child { border-bottom: 0; }
  .section { padding: 64px 0; }
  .mini-stats { grid-template-columns: 1fr; }
  .product-info { padding: 22px; }
  .price-list li { align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
}
