@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --beige: #FAF6F0;
  --beige-dark: #F0E9DF;
  --orange: #E8541A;
  --orange-hover: #C94415;
  --navy: #1B2D3E;
  --navy-light: #243847;
  --text-dark: #1A1A1A;
  --text-mid: #444444;
  --text-light: #777777;
  --green-wa: #25D366;
  --green-wa-hover: #1ebe5a;
  --border: #E2D9CE;
  --white: #ffffff;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  direction: rtl;
  background-color: var(--beige);
  color: var(--text-dark);
  font-size: 16px;
  line-height: 1.7;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.navbar-logo .logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
}
.navbar-logo .logo-text span { color: var(--orange); }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--orange); }
.navbar-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}
.btn-wa-nav {
  background: var(--green-wa);
  color: var(--white);
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background 0.2s;
}
.btn-wa-nav:hover { background: var(--green-wa-hover); }
.btn-wa-nav svg { width: 18px; height: 18px; fill: white; }

/* ── HERO ── */
.hero {
  padding: 70px 0 60px;
  background: var(--beige);
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-left {}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #FFF0E8;
  border: 1px solid #F5C9B0;
  color: var(--orange);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-badge span { font-size: 16px; }
.hero-title {
  font-size: 46px;
  font-weight: 900;
  line-height: 1.25;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.hero-title em {
  font-style: normal;
  color: var(--orange);
}
.hero-subtitle {
  font-size: 18px;
  color: var(--text-mid);
  margin-bottom: 32px;
  font-weight: 400;
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-bottom: 36px;
}
.stat-item { text-align: center; }
.stat-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--orange);
  display: block;
}
.stat-label {
  font-size: 13px;
  color: var(--text-light);
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover { background: var(--orange-hover); transform: translateY(-1px); }
.btn-wa {
  background: var(--green-wa);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-wa:hover { background: var(--green-wa-hover); }
.btn-wa svg, .btn-primary svg { width: 20px; height: 20px; fill: white; flex-shrink: 0; }

/* Hero form card */
.hero-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.hero-form-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
  text-align: center;
}
.hero-form-card p {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: var(--beige);
  transition: border-color 0.2s;
  direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 80px; }
.btn-form {
  width: 100%;
  background: var(--orange);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 10px;
  font-family: 'Cairo', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}
.btn-form:hover { background: var(--orange-hover); }
.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: #F0FFF4;
  border: 1px solid #86efac;
  border-radius: 8px;
  color: #166534;
  font-weight: 600;
  font-size: 14px;
  margin-top: 12px;
}

/* ── TRUSTED BY ── */
.trusted {
  background: var(--white);
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trusted .container {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}
.trusted-label {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
  white-space: nowrap;
}
.trusted-logos {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.trusted-logos .brand-pill {
  background: var(--beige);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mid);
}

/* ── SECTION HEADER ── */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: #FFF0E8;
  color: var(--orange);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.section-title {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.3;
}
.section-subtitle {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
}

/* ── BENEFITS ── */
.benefits { padding: 80px 0; background: var(--beige); }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.benefit-card {
  background: var(--white);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.benefit-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.benefit-icon {
  width: 56px;
  height: 56px;
  background: #FFF0E8;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
}
.benefit-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.benefit-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ── SCREENSHOTS ── */
.screenshots { padding: 80px 0; background: var(--beige-dark); }
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.screenshot-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}
.screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.screenshot-card img {
  width: 100%;
  display: block;
  height: 200px;
  object-fit: cover;
}
.screenshot-label {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  border-top: 1px solid var(--border);
}
.screenshot-card.wide { grid-column: span 2; }
.screenshot-card.wide img { height: 220px; }

/* ── FREE DEMO SECTION ── */
.demo-section {
  padding: 80px 0;
  background: var(--beige);
}
.demo-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
}
.demo-left h2 {
  font-size: 38px;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.3;
}
.demo-left h2 em { font-style: normal; color: var(--orange); }
.demo-left p {
  font-size: 17px;
  color: var(--text-mid);
  margin-bottom: 28px;
}
.demo-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.demo-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text-mid);
  font-weight: 500;
}
.demo-features li::before {
  content: '✓';
  background: var(--orange);
  color: white;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}
.demo-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.demo-form-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  text-align: center;
}
.demo-form-card p {
  font-size: 13px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 28px;
}

/* ── TESTIMONIALS ── */
.testimonials {
  padding: 80px 0;
  background: var(--navy);
}
.testimonials .section-title { color: var(--white); }
.testimonials .section-subtitle { color: #A8BCC8; }
.testimonials .section-tag {
  background: rgba(255,255,255,0.1);
  color: #F5A87A;
}
.ratings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}
.rating-card {
  background: var(--navy-light);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.rating-source {
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.stars { font-size: 22px; color: #F5A87A; margin-bottom: 8px; }
.rating-number {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  display: block;
}
.rating-count { font-size: 13px; color: #A8BCC8; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--navy-light);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,0.08);
}
.testimonial-text {
  font-size: 15px;
  color: #D0DDE6;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}
.author-name {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  display: block;
}
.author-role { font-size: 12px; color: #A8BCC8; }

/* ── FINAL CTA ── */
.final-cta {
  padding: 80px 0;
  background: var(--orange);
  text-align: center;
}
.final-cta h2 {
  font-size: 40px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}
.final-cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-white {
  background: var(--white);
  color: var(--orange);
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 16px;
  transition: transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-white:hover { transform: translateY(-2px); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 15px 32px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid rgba(255,255,255,0.7);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.15s;
}
.btn-outline-white:hover { border-color: white; }
.btn-outline-white svg, .btn-white svg { width: 20px; height: 20px; fill: currentColor; }

/* ── FOOTER ── */
.footer {
  background: var(--text-dark);
  color: #A8A8A8;
  padding: 50px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-brand .logo-text {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
  display: block;
}
.footer-brand .logo-text span { color: var(--orange); }
.footer-brand p { font-size: 14px; line-height: 1.8; }
.footer-col h4 {
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: #A8A8A8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; }
.footer-wa {
  background: var(--green-wa);
  color: white;
  padding: 9px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}
.footer-wa svg { width: 16px; height: 16px; fill: white; }

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 28px;
  left: 28px;
  background: var(--green-wa);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.float-wa svg { width: 30px; height: 30px; fill: white; }
.float-wa-pulse {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 50%;
  background: var(--green-wa);
  animation: pulse 2s infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 500px; margin: 0 auto; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshots-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshot-card.wide { grid-column: span 1; }
  .demo-inner { grid-template-columns: 1fr; }
  .demo-form-card { max-width: 500px; margin: 0 auto; }
  .ratings-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hero-title { font-size: 34px; }
}

@media (max-width: 600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .screenshots-grid { grid-template-columns: 1fr; }
  .ratings-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 28px; }
  .section-title { font-size: 26px; }
  .hero-stats { gap: 20px; }
}
