:root {
  --linen: #F6F1E7;
  --linen-deep: #EDE4D3;
  --ink: #1E3D39;
  --teal: #2F6F72;
  --teal-deep: #1F4B4D;
  --gold: #E8B34C;
  --sage: #6FA287;
  --white: #FFFDF9;
  --font-display: 'Almarai', sans-serif;
  --font-body: 'IBM Plex Sans Arabic', sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-body);
  background: var(--linen);
  color: var(--ink);
  line-height: 1.7;
}
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
a {
  color: inherit;
}

/* ---------- NAV ---------- */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--teal-deep);
}
.nav-cta {
  background: var(--teal);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
}

/* ---------- HERO ---------- */
.hero {
  padding: 60px 24px 40px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.35;
  color: var(--teal-deep);
  margin-bottom: 18px;
}
.hero h1 span {
  color: var(--gold);
}
.hero p {
  font-size: 17px;
  color: #4A5C58;
  margin-bottom: 28px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--gold);
  color: #2B1F0B;
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(232, 179, 76, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--teal-deep);
  border: 1.5px solid var(--teal-deep);
  padding: 15px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

/* phone mockup with whatsapp bubble */
.phone-mock {
  background: #122A25;
  border-radius: 38px;
  padding: 14px;
  box-shadow: 0 30px 60px rgba(30, 61, 57, 0.25);
  max-width: 290px;
  margin: 0 auto;
}
.phone-screen {
  background: #0E211D;
  border-radius: 26px;
  padding: 20px 14px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}
.wa-bubble {
  background: #DCF8C6;
  color: #1E3D2E;
  padding: 12px 14px;
  border-radius: 14px 14px 3px 14px;
  font-size: 13.5px;
  align-self: flex-end;
  max-width: 85%;
  font-family: var(--font-body);
}
.wa-meta {
  font-size: 10px;
  color: #4A5C58;
  margin-top: 20px;
  text-align: center;
}

/* ---------- SECTION: PROBLEM ---------- */
.section {
  padding: 70px 24px;
}
.section-narrow {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.eyebrow {
  color: var(--teal);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.5px;
  margin-bottom: 10px;
}
.section h2 {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 800;
  color: var(--teal-deep);
  margin-bottom: 16px;
}
.section p {
  color: #4A5C58;
  font-size: 16px;
}

/* ---------- STEPS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.step-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 22px;
  border: 1px solid rgba(30, 61, 57, 0.08);
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.step-card p {
  font-size: 14px;
}

/* ---------- FEATURES ---------- */
.features {
  background: var(--linen-deep);
  padding: 70px 24px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  max-width: 900px;
  margin-inline: auto;
}
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 18px;
  padding: 22px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--teal);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
}
.feature-item h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.feature-item p {
  font-size: 13.5px;
}

/* ---------- DOWNLOAD ---------- */
.download {
  background: var(--teal-deep);
  color: var(--white);
  padding: 70px 24px;
  text-align: center;
  border-radius: 32px;
  margin: 0 24px 70px;
  max-width: 1032px;
  margin-inline: auto;
}
.download h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.download p {
  color: #C9DAD6;
  max-width: 480px;
  margin: 0 auto 30px;
}
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: #2B1F0B;
  padding: 16px 34px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
}
.download-note {
  font-size: 12.5px;
  color: #9FB6B1;
  margin-top: 18px;
  max-width: 420px;
  margin-inline: auto;
  line-height: 1.8;
}

/* ---------- FAQ ---------- */
.faq-item {
  background: var(--white);
  border-radius: 16px;
  padding: 20px 22px;
  margin-bottom: 12px;
  text-align: right;
}
.faq-item h4 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 6px;
}
.faq-item p {
  font-size: 14px;
}

footer {
  text-align: center;
  padding: 36px 24px;
  color: #7C8B87;
  font-size: 13px;
}

@media (max-width: 760px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .steps,
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 32px;
  }
}
