:root {
  --bg: #F7F5F0;
  --surface: #FFFFFF;
  --ink: #1A1A2E;
  --ink-light: #4A4A6A;
  --accent: #1B6CA8;
  --accent-light: #E8F2FB;
  --gold: #C9A84C;
  --border: #E2DDD4;
  --radius: 16px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Tajawal', 'Noto Naskh Arabic', sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 18px;
  line-height: 1.7;
}
/* NAV */
nav {
  background: var(--surface);
  border-bottom: 2px solid var(--border);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}
.logo-text {
  line-height: 1.2;
}
.logo-text .name {
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.logo-text .domain {
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink-light);
  font-size: 17px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 10px;
  transition: all 0.2s;
}
.nav-links a:hover {
  background: var(--accent-light);
  color: var(--accent);
}
.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 12px 24px !important;
}
.nav-cta:hover {
  background: #145a8e !important;
  color: white !important;
}
/* HERO */
.hero {
  padding: 80px 40px 60px;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 520px;
}
.hero-content {
  animation: fadeUp 0.7s ease both;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-light);
  color: var(--accent);
  border: 1.5px solid #bee3f8;
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '🇯🇴';
  font-size: 16px;
}
h1 {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}
h1 span {
  color: var(--accent);
}
.hero-sub {
  font-size: 19px;
  color: var(--ink-light);
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 440px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(27,108,168,0.25);
  font-family: 'Tajawal', sans-serif;
}
.btn-primary:hover {
  background: #145a8e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,108,168,0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--border);
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s;
  font-family: 'Tajawal', sans-serif;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
/* Hero Visual */
.hero-visual {
  animation: fadeUp 0.7s ease 0.15s both;
}
.hero-card {
  background: var(--surface);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
  border: 1.5px solid var(--border);
}
.hero-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-card-title::before {
  content: '';
  width: 24px;
  height: 3px;
  background: var(--accent);
  border-radius: 3px;
}
.service-mini-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-mini-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg);
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  border: 1.5px solid transparent;
  transition: all 0.2s;
  cursor: default;
}
.service-mini-item:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}
.service-mini-item .icon {
  font-size: 22px;
  width: 40px;
  height: 40px;
  background: var(--surface);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  flex-shrink: 0;
}
/* STATS */
.stats-bar {
  background: var(--accent);
  padding: 28px 40px;
  margin: 0;
}
.stats-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  color: white;
}
.stat-num {
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 15px;
  opacity: 0.85;
  font-weight: 400;
}
/* SERVICES */
.section {
  padding: 80px 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 16px;
}
h2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-sub {
  font-size: 18px;
  color: var(--ink-light);
  max-width: 560px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 2px solid var(--border);
  transition: all 0.25s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s;
}
.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27,108,168,0.12);
}
.service-card:hover::after {
  transform: scaleX(1);
}
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.service-card h3 {
  font-size: 21px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.65;
}
/* WHY US */
.why-section {
  background: var(--ink);
  padding: 80px 40px;
  margin: 0;
}
.why-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.why-section .section-tag {
  background: rgba(255,255,255,0.1);
  color: white;
}
.why-section h2 {
  color: white;
}
.why-section .section-sub {
  color: rgba(255,255,255,0.65);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.why-item {
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  transition: background 0.2s;
}
.why-item:hover {
  background: rgba(255,255,255,0.1);
}
.why-check {
  width: 42px;
  height: 42px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  color: white;
}
.why-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 6px;
}
.why-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
}
/* CTA */
.cta-section {
  padding: 80px 40px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-section h2 {
  font-size: 40px;
  margin-bottom: 16px;
}
.cta-section p {
  font-size: 18px;
  color: var(--ink-light);
  margin-bottom: 40px;
}
.cta-card {
  background: var(--surface);
  border-radius: 24px;
  padding: 48px 40px;
  border: 2px solid var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.contact-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.contact-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  border: 2px solid var(--border);
  text-decoration: none;
  color: var(--ink);
  transition: all 0.2s;
  display: block;
}
.contact-card:hover {
  border-color: var(--accent);
  background: var(--accent-light);
  transform: translateY(-2px);
}
.contact-card .c-icon {
  font-size: 32px;
  margin-bottom: 10px;
}
.contact-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.contact-card p {
  font-size: 14px;
  color: var(--ink-light);
  margin: 0;
}
/* FOOTER */
footer {
  background: var(--surface);
  border-top: 2px solid var(--border);
  padding: 32px 40px;
  text-align: center;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}
.footer-logo span { color: var(--accent); }
footer p {
  font-size: 15px;
  color: var(--ink-light);
}
.footer-links {
  display: flex;
  gap: 20px;
  list-style: none;
}
.footer-links a {
  color: var(--ink-light);
  text-decoration: none;
  font-size: 15px;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
/* NAV APP LINK */
.nav-app {
  background: linear-gradient(135deg, #6366f1, #8b5cf6) !important;
  color: white !important;
  font-weight: 700 !important;
  border-radius: 10px !important;
  padding: 10px 18px !important;
}
.nav-app:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #4f52d9, #7c3aed) !important;
}
/* AJYAL PLUS SECTION */
.ajyal-section {
  background: linear-gradient(135deg, #0f0c29, #1a1040, #24243e);
  padding: 90px 40px;
  position: relative;
  overflow: hidden;
}
.ajyal-section::before {
  content: '';
  position: absolute;
  top: -120px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99,102,241,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.ajyal-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ajyal-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.ajyal-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(99,102,241,0.2);
  border: 1.5px solid rgba(99,102,241,0.4);
  border-radius: 50px;
  padding: 8px 20px;
  color: #a5b4fc;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 40px;
}
.soon-dot {
  width: 10px;
  height: 10px;
  background: #6366f1;
  border-radius: 50%;
  animation: pulse 1.5s infinite;
  display: inline-block;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.6); }
  50% { box-shadow: 0 0 0 7px rgba(99,102,241,0); }
}
.ajyal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.ajyal-logo-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.ajyal-icon {
  font-size: 36px;
  width: 60px;
  height: 60px;
  background: rgba(99,102,241,0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ajyal-title {
  font-size: 42px;
  font-weight: 800;
  color: white;
  background: linear-gradient(135deg, #a5b4fc, #c4b5fd, #818cf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
  text-align: right;
}
.ajyal-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 32px;
}
.ajyal-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 40px;
}
.ajyal-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 10px 14px;
}
.feat-icon { font-size: 18px; }
.ajyal-notify {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 24px;
}
.notify-label {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
}
.notify-form {
  display: flex;
  gap: 10px;
}
.notify-input {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  padding: 12px 16px;
  color: white;
  font-size: 15px;
  font-family: 'Tajawal', sans-serif;
  text-align: right;
  outline: none;
  transition: border-color 0.2s;
}
.notify-input:focus { border-color: #6366f1; }
.notify-input::placeholder { color: rgba(255,255,255,0.35); }
.notify-btn {
  background: linear-gradient(135deg, #6366f1, #8b5cf6);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Tajawal', sans-serif;
  transition: all 0.2s;
  white-space: nowrap;
}
.notify-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}
/* PHONE MOCKUP */
.ajyal-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}
.phone-frame {
  width: 280px;
  background: #1e1b4b;
  border-radius: 36px;
  padding: 16px;
  border: 2px solid rgba(99,102,241,0.4);
  box-shadow: 0 0 60px rgba(99,102,241,0.25), 0 20px 60px rgba(0,0,0,0.5);
}
.phone-screen {
  background: #0f0e1a;
  border-radius: 24px;
  padding: 20px 16px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-logo {
  font-size: 16px;
  font-weight: 800;
  background: linear-gradient(135deg, #a5b4fc, #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.phone-status {
  font-size: 8px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
}
.phone-welcome {
  font-size: 15px;
  font-weight: 600;
  color: white;
  text-align: right;
}
.phone-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.phone-card {
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-card.blue { background: rgba(59,130,246,0.15); }
.phone-card.green { background: rgba(34,197,94,0.12); }
.phone-card.purple { background: rgba(139,92,246,0.15); }
.pc-icon { font-size: 20px; }
.pc-label {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  text-align: right;
}
.pc-ready {
  font-size: 12px;
  color: #4ade80;
  font-weight: 700;
  white-space: nowrap;
}
.phone-sync {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px;
  padding: 10px;
  font-size: 13px;
  color: #4ade80;
  font-weight: 600;
  margin-top: auto;
}
.sync-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
  display: inline-block;
}
@media (max-width: 768px) {
  .ajyal-section { padding: 60px 20px; }
  .ajyal-content { grid-template-columns: 1fr; gap: 40px; }
  .ajyal-mockup { display: none; }
  .ajyal-features { grid-template-columns: 1fr; }
  .ajyal-title { font-size: 32px; }
}
/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeUp 0.6s ease both;
}
/* RESPONSIVE */
@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 40px 20px; gap: 40px; min-height: auto; }
  h1 { font-size: 36px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-options { grid-template-columns: 1fr; }
  .section { padding: 60px 20px; }
  .stats-bar { padding: 24px 20px; }
  .why-section { padding: 60px 20px; }
  .cta-section { padding: 60px 20px; }
  .footer-inner { flex-direction: column; text-align: center; }
}