:root {
  --primary: #002870;
  --primary-2: #0b4fb3;
  --sky: #5f98ff;
  --yellow: #ffd050;
  --soft: #f1f6f9;
  --text: #172033;
  --muted: #5f697a;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(0, 40, 112, 0.12);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: IBM Plex Sans Arabic, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.8;
}

a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 40, 112, 0.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }

.brand {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.brand-logo {
    width: auto;
    height: 42px;      
    max-width: 180px;  
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .brand-logo {
        height: 42px;  
        max-width: 180px;
    }
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--sky), var(--primary));
  color: var(--white);
  font-size: 20px;
}
.brand small { display: block; color: var(--muted); line-height: 1.2; }
.nav-links { display: flex; gap: 22px; color: var(--primary); font-weight: 700; font-size: 16.50px; }
.nav-links a:hover { color: var(--sky); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--sky) 0%, var(--primary) 65%, #00194a 100%);
  padding: 78px 0 115px;
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image: radial-gradient(circle at 20px 20px, #fff 2px, transparent 2px);
  background-size: 42px 42px;
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 44px; align-items: center; }
.badge {
  display: inline-flex;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 208, 80, 0.18);
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 18px;
}
h1 { font-size: clamp(34px, 5vw, 62px); line-height: 1.25; margin: 0 0 18px; }
.hero p { color: rgba(255, 255, 255, 0.9); font-size: 18px; margin: 0 0 28px; max-width: 660px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-actions.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--yellow); color: var(--primary); }
.btn-secondary { background: rgba(255,255,255,0.16); color: var(--white); border: 1px solid rgba(255,255,255,0.36); }
.btn-light { background: var(--white); color: var(--primary); }

.hero-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 18px;
  backdrop-filter: blur(10px);
}
.mini-card { background: rgba(255,255,255,0.12); border-radius: 22px; padding: 20px; margin-bottom: 14px; }
.mini-card.active { background: var(--white); color: var(--primary); }
.mini-card span { color: var(--yellow); font-weight: 900; }
.mini-card.active span { color: var(--sky); }
.mini-card strong { display: block; font-size: 20px; margin: 4px 0; }
.mini-card p { font-size: 14px; margin: 0; color: inherit; opacity: 0.86; }
.wave {
  position: absolute;
  right: -5%; left: -5%; bottom: -70px;
  height: 150px;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 52% 52% 0 0;
}

.section { padding: 84px 0; }
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.split.reverse { grid-template-columns: 1.1fr 0.9fr; }
.illustration {
  width: 230px; height: 230px; margin: auto;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--soft);
  color: var(--primary);
  font-size: 92px;
  box-shadow: inset 0 0 0 18px rgba(95,152,255,0.12);
}
h2 { color: var(--primary); font-size: clamp(26px, 3vw, 40px); line-height: 1.35; margin: 0 0 18px; }
.section p { color: var(--muted); margin: 0 0 22px; }
.check-list { padding: 0; margin: 24px 0 0; list-style: none; }
.check-list li { position: relative; padding: 9px 34px 9px 0; color: var(--text); }
.check-list li::before { content: "✓"; position: absolute; right: 0; top: 9px; color: var(--primary); font-weight: 900; }

.soft-bg { background: var(--soft); }
.section-title { text-align: center; max-width: 700px; margin: 0 auto 38px; }
.cards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.service-card {
  background: var(--white);
  border: 1px solid rgba(0, 40, 112, 0.07);
  border-radius: 24px;
  padding: 26px 22px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,40,112,0.06);
}
.icon { font-size: 42px; margin-bottom: 10px; }
.service-card h3 { color: var(--primary); margin: 0 0 10px; font-size: 20px; }
.service-card p { font-size: 14px; margin: 0; }

.products-section { background: linear-gradient(180deg, #fff, #f8fbff); }
.product-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.product-tags span { background: var(--soft); color: var(--primary); border-radius: 999px; padding: 8px 14px; font-weight: 700; font-size: 14px; }
.product-preview {
  min-height: 330px;
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.preview-top { height: 130px; margin: -28px -28px 24px; background: linear-gradient(135deg, var(--primary), var(--sky)); }
.product-preview h3 { color: var(--primary); font-size: 28px; margin: 0 0 8px; }
.product-preview p { color: var(--muted); margin: 0 0 22px; }
.preview-line, .preview-line.short { height: 14px; border-radius: 99px; background: var(--soft); margin-bottom: 12px; }
.preview-line.short { width: 58%; }

.cta-section { padding: 80px 0; }
.cta-box { text-align: center; background: var(--yellow); border-radius: 999px; padding: 42px 24px; box-shadow: var(--shadow); }
.cta-box h2 { margin-bottom: 8px; }
.cta-box p { color: #3e4553; margin-bottom: 22px; }

.whatsapp-float {
  position: fixed;
  z-index: 30;
  left: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
}
.footer { background: #111827; color: var(--white); padding: 34px 0; border-radius: 70px 70px 0 0; }
.footer-inner { display: flex; justify-content: center; align-items: center; gap: 22px; flex-wrap: wrap; color: rgba(255,255,255,0.78); }
.footer strong { color: #fff; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hero { padding-top: 52px; }
  .hero-grid, .split, .split.reverse { grid-template-columns: 1fr; }
  .hero-card { order: 2; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-box { border-radius: 34px; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 24px, 1120px); }
  .hero-actions, .hero-actions.center { flex-direction: column; }
  .btn { width: 100%; }
  .cards-grid { grid-template-columns: 1fr; }
  .illustration { width: 170px; height: 170px; font-size: 68px; }
  .section { padding: 58px 0; }
  .footer { border-radius: 40px 40px 0 0; }
}
