* { box-sizing: border-box; margin: 0; }

:root {
  --green: #0f766e;
  --green-dark: #0b5b55;
  --gold: #d9a63c;
  --gold-light: #f2ce73;
  --bg: #f6f5f2;
  --ink: #1e2430;
  --muted: #6b7280;
  --line: #e5e2da;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

.container { max-width: 1020px; margin: 0 auto; padding: 0 20px; }

/* Header */
header {
  background: var(--green);
  color: #fff;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 10;
}
header .container { display: flex; align-items: center; gap: 12px; }
header img { width: 38px; height: 38px; border-radius: 10px; }
header .name { font-size: 20px; font-weight: 800; letter-spacing: 2px; }
header nav { margin-left: auto; display: flex; gap: 18px; }
header nav a { color: #e6f2f0; text-decoration: none; font-size: 14px; }
header nav a:hover { color: #fff; }

/* Hero */
.hero {
  background: linear-gradient(160deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 80px 20px 90px;
}
.hero img.logo { width: 120px; height: 120px; border-radius: 28px; box-shadow: 0 18px 50px rgba(0,0,0,0.3); }
.hero h1 { font-size: 46px; letter-spacing: 8px; margin-top: 22px; font-weight: 800; }
.hero .arabic { font-size: 26px; color: var(--gold-light); margin-top: 4px; }
.hero p.tag { max-width: 560px; margin: 18px auto 0; font-size: 18px; color: #d9ebe8; }
.hero .cta { margin-top: 32px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn {
  display: inline-block; padding: 14px 28px; border-radius: 12px;
  text-decoration: none; font-weight: 700; font-size: 15px;
}
.btn.gold { background: var(--gold); color: #fff; }
.btn.gold:hover { background: #c2922f; }
.btn.outline { border: 2px solid rgba(255,255,255,0.7); color: #fff; }
.btn.outline:hover { background: rgba(255,255,255,0.12); }

/* Sections */
section { padding: 64px 0; }
section h2 { font-size: 30px; text-align: center; color: var(--green-dark); }
section p.lead { text-align: center; color: var(--muted); max-width: 620px; margin: 12px auto 0; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; margin-top: 40px; }
.feature {
  background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 26px;
}
.feature .icon { font-size: 34px; }
.feature h3 { margin: 12px 0 6px; font-size: 17px; }
.feature p { color: var(--muted); font-size: 14px; }

/* Plans */
.plans { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 18px; margin-top: 40px; }
.plan {
  background: #fff; border: 2px solid var(--line); border-radius: 18px;
  padding: 28px 22px; text-align: center; position: relative;
}
.plan.popular { border-color: var(--gold); }
.plan .badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: #fff; font-size: 11px; font-weight: 800;
  padding: 3px 12px; border-radius: 99px; letter-spacing: 0.5px;
}
.plan .months { font-size: 20px; font-weight: 800; color: var(--green-dark); }
.plan .price { font-size: 32px; font-weight: 800; margin-top: 8px; }
.plan .per { color: var(--muted); font-size: 13px; margin-top: 4px; }
.plan ul { list-style: none; padding: 0; margin: 16px 0 0; color: var(--muted); font-size: 13px; }
.plan ul li { padding: 3px 0; }

/* Steps */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 18px; margin-top: 40px; counter-reset: step; }
.step { text-align: center; padding: 0 10px; }
.step .num {
  width: 44px; height: 44px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 18px; margin: 0 auto 12px;
}
.step h3 { font-size: 16px; }
.step p { color: var(--muted); font-size: 14px; }

/* CGU / documents */
.doc { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 40px; margin: 40px auto; max-width: 820px; }
.doc h1 { color: var(--green-dark); font-size: 28px; }
.doc h2 { font-size: 19px; margin: 26px 0 8px; color: var(--green-dark); text-align: left; }
.doc p, .doc li { color: #374151; font-size: 15px; }
.doc ul { padding-left: 22px; }
.doc .updated { color: var(--muted); font-size: 13px; margin-top: 6px; }

/* Footer */
footer { background: var(--green-dark); color: #cfe5e2; padding: 36px 0; margin-top: 40px; }
footer .container { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
footer a { color: var(--gold-light); text-decoration: none; margin-right: 16px; }
footer .small { font-size: 13px; }
