:root{
  --bg:#fffdf7;
  --bg-soft:#f8f4ea;
  --card:#ffffff;
  --emerald:#0f6a5b;
  --emerald-dark:#0b4f45;
  --emerald-soft:#dff2ec;
  --gold:#caa85c;
  --text:#17312b;
  --muted:#5d746d;
  --border:rgba(15,106,91,.14);
  --shadow:0 12px 40px rgba(17,49,43,.08);
  --max:1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(202,168,92,.10), transparent 24%),
    radial-gradient(circle at left center, rgba(15,106,91,.08), transparent 18%),
    var(--bg);
  color:var(--text);
}
body.rtl{
  font-family:"Noto Naskh Arabic", Inter, sans-serif;
}

a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}

.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:40;
  backdrop-filter: blur(10px);
  background:rgba(255,253,247,.84);
  border-bottom:1px solid var(--border);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  min-height:76px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  color:var(--emerald-dark);
  letter-spacing:-.02em;
}

.brand-logo{
  height:54px;
  width:auto;
  display:block;
}

.nav-right{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.lang-select{
  appearance:none;
  border:1px solid var(--border);
  background:#fff;
  color:var(--emerald-dark);
  padding:12px 14px;
  border-radius:14px;
  font-weight:600;
  outline:none;
  cursor:pointer;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 22px;
  border-radius:999px;
  border:1px solid transparent;
  font-weight:700;
  transition:.2s ease;
  cursor:pointer;
  font:inherit;
}

.btn-primary{
  background:linear-gradient(135deg, var(--emerald), var(--emerald-dark));
  color:#fff;
  box-shadow:0 14px 30px rgba(15,106,91,.22);
}
.btn-primary:hover{transform:translateY(-1px)}
.btn-secondary{
  border-color:var(--border);
  background:#fff;
  color:var(--emerald-dark);
}

.hero{
  padding:56px 0 36px;
}

.hero-wrap{
  display:grid;
  grid-template-columns:1.12fr .88fr;
  gap:28px;
  align-items:center;
}

.hero-card{
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.92)),
    linear-gradient(135deg, rgba(15,106,91,.10), rgba(202,168,92,.08));
  border:1px solid var(--border);
  border-radius:30px;
  box-shadow:var(--shadow);
  padding:52px;
  position:relative;
  overflow:hidden;
}

.hero-card::before,
.hero-card::after{
  content:"";
  position:absolute;
  border-radius:50%;
  filter:blur(6px);
}
.hero-card::before{
  width:220px;height:220px;
  background:rgba(15,106,91,.09);
  right:-60px; top:-60px;
}
.hero-card::after{
  width:180px;height:180px;
  background:rgba(202,168,92,.13);
  left:-40px; bottom:-50px;
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:var(--emerald-soft);
  color:var(--emerald-dark);
  font-weight:700;
  font-size:14px;
  margin-bottom:18px;
}

h1{
  margin:0 0 16px;
  font-size:clamp(38px, 6vw, 68px);
  line-height:1.02;
  letter-spacing:-.04em;
  color:var(--emerald-dark);
}

.hero p{
  margin:0;
  max-width:720px;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

.hero-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
  margin-top:26px;
  color:var(--muted);
  font-size:14px;
  font-weight:600;
}

.hero-visual{
  display:grid;
  gap:16px;
}

.deal-panel{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:28px;
  padding:22px;
  box-shadow:var(--shadow);
}

.panel-title{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:16px;
}

.panel-title h3{
  margin:0;
  font-size:18px;
  color:var(--emerald-dark);
}

.badge{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(202,168,92,.16);
  color:#8a6c2d;
  font-weight:800;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.04em;
}

.deal-list{
  display:grid;
  gap:14px;
}

.deal-item{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  padding:16px;
  border-radius:18px;
  background:var(--bg-soft);
  border:1px solid rgba(15,106,91,.08);
}

.deal-item strong{
  display:block;
  color:var(--emerald-dark);
  font-size:16px;
  margin-bottom:4px;
}

.deal-item span{
  color:var(--muted);
  font-size:14px;
}

.price{
  white-space:nowrap;
  color:var(--emerald-dark);
  font-weight:800;
  font-size:18px;
}

.section{
  padding:34px 0 22px;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}

.section h2{
  margin:0;
  font-size:clamp(28px, 4vw, 42px);
  color:var(--emerald-dark);
  letter-spacing:-.03em;
}

.section-sub{
  max-width:720px;
  color:var(--muted);
  line-height:1.75;
  font-size:17px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:26px;
  box-shadow:var(--shadow);
  padding:28px;
}

.icon{
  width:54px;height:54px;
  border-radius:16px;
  display:grid;
  place-items:center;
  background:var(--emerald-soft);
  color:var(--emerald-dark);
  font-weight:800;
  margin-bottom:16px;
  font-size:22px;
}

.card h3{
  margin:0 0 10px;
  color:var(--emerald-dark);
  font-size:22px;
  letter-spacing:-.02em;
}

.card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
  font-size:15px;
}

.deals-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:20px;
}

.deal-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:26px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.deal-thumb{
  height:170px;
  background:
    linear-gradient(180deg, rgba(15,106,91,.15), rgba(11,79,69,.25)),
    radial-gradient(circle at top, rgba(202,168,92,.55), transparent 40%),
    linear-gradient(135deg, #f5f0e2, #dff2ec);
  position:relative;
}

.deal-thumb::after{
  content:"";
  position:absolute;
  inset:18px;
  border-radius:22px;
  border:1px solid rgba(255,255,255,.65);
}

.deal-content{
  padding:22px;
}

.deal-content h3{
  margin:0 0 8px;
  color:var(--emerald-dark);
  font-size:22px;
}

.deal-meta{
  display:flex;
  justify-content:space-between;
  gap:12px;
  color:var(--muted);
  font-size:14px;
  margin-bottom:16px;
}

.deal-price{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  font-weight:800;
  color:var(--emerald-dark);
}

.partners{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:16px;
}

.partner{
  border:1px solid var(--border);
  border-radius:18px;
  background:#fff;
  padding:18px 16px;
  text-align:center;
  color:var(--emerald-dark);
  font-weight:700;
  box-shadow:0 10px 24px rgba(17,49,43,.04);
}

.join-wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
}

.join-box{
  background:linear-gradient(180deg, rgba(15,106,91,.05), rgba(202,168,92,.06));
  border:1px solid var(--border);
  border-radius:28px;
  box-shadow:var(--shadow);
  padding:30px;
}

.join-box h3{
  margin:0 0 10px;
  color:var(--emerald-dark);
  font-size:28px;
  letter-spacing:-.03em;
}

.join-box p{
  margin:0 0 20px;
  color:var(--muted);
  line-height:1.75;
}

.field{
  display:grid;
  gap:8px;
  margin-bottom:16px;
}

.field label{
  font-size:14px;
  font-weight:700;
  color:var(--emerald-dark);
}

.input, .select, textarea{
  width:100%;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--text);
  outline:none;
  font:inherit;
}

textarea{
  min-height:120px;
  resize:vertical;
}

.form-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:8px;
}

.form-status{
  margin-top:14px;
  color:var(--muted);
  font-size:14px;
}

.benefits{
  display:grid;
  gap:14px;
}

.benefit{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 0;
  border-bottom:1px dashed rgba(15,106,91,.16);
}

.benefit:last-child{border-bottom:none}
.check{
  width:30px;height:30px;
  flex:0 0 30px;
  border-radius:50%;
  background:var(--emerald);
  color:#fff;
  display:grid;
  place-items:center;
  font-size:15px;
  font-weight:800;
  margin-top:2px;
}

footer{
  margin-top:34px;
  padding:28px 0 48px;
  border-top:1px solid var(--border);
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:center;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
}

.footer-brand{
  color:var(--emerald-dark);
  font-weight:800;
}

[dir="rtl"] .nav,
[dir="rtl"] .panel-title,
[dir="rtl"] .deal-item,
[dir="rtl"] .section-head,
[dir="rtl"] .deal-meta,
[dir="rtl"] .deal-price,
[dir="rtl"] .footer-wrap{
  direction:rtl;
}

@media (max-width: 1024px){
  .hero-wrap,
  .join-wrap,
  .grid-3,
  .deals-grid{
    grid-template-columns:1fr;
  }
  .partners{
    grid-template-columns:repeat(2, 1fr);
  }
  .hero-card{padding:34px 24px}
}

@media (max-width: 720px){
  .nav{
    align-items:flex-start;
    padding:12px 0;
  }
  .nav-right{
    width:100%;
    justify-content:flex-start;
  }
  .brand-logo{
    height:44px;
  }
  h1{font-size:40px}
  .partners{grid-template-columns:1fr}
  .deal-item{
    flex-direction:column;
    align-items:flex-start;
  }
  .hero-meta{
    flex-direction:column;
    gap:10px;
  }
}