:root {
  --primary: #0f172a;
  --secondary: #16a34a;
  --accent: #f59e0b;
  --light: #f8fafc;
  --text: #1e293b;
  --muted: #64748b;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 20px 40px rgba(2, 6, 23, 0.08);
  --radius: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'El Messiri', sans-serif;
  background: var(--light);
  color: var(--text);
  line-height: 1.9;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { width: min(1150px, calc(100% - 32px)); margin: auto; }

.topbar {
  background: var(--primary);
  color: var(--white);
  font-size: 15px;
  padding: 10px 0;
}

.topbar .wrap,
.hero-grid,
.stats,
.service-grid,
.cities-grid,
.steps-grid,
.faq-grid,
.footer-grid {
  display: grid;
  gap: 20px;
}

.topbar .wrap {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.topbar .cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mini-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 20px;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
}

.logo span { color: var(--secondary); }

.nav-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 16px;
}

.nav-call {
  background: var(--secondary);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 22px;
  cursor: pointer;
}

.hero {
  background: linear-gradient(135deg, #eff6ff 0%, #f8fafc 45%, #ecfdf5 100%);
  padding: 80px 0 50px;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
}

.hero-media img {
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: var(--white);
}

.badge {
  display: inline-block;
  background: rgba(22, 163, 74, 0.1);
  color: var(--secondary);
  border: 1px solid rgba(22, 163, 74, 0.2);
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 15px;
  margin-bottom: 18px;
}

h1, h2, h3, h4 {
  line-height: 1.35;
  margin: 0 0 14px;
  color: var(--primary);
}

h1 { font-size: clamp(34px, 5vw, 54px); }
h2 { font-size: clamp(28px, 4vw, 38px); }
h3 { font-size: 22px; }

.hero p,
.section p,
.faq-item p,
.card p,
.city-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  padding: 15px 22px;
  font-size: 16px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 0;
}

.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  box-shadow: var(--shadow);
  cursor: pointer;
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border: 1px solid var(--border);
}

.hero-card,
.card,
.city-card,
.faq-item,
.form-box,
.section-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card,
.card,
.city-card,
.faq-item,
.form-box {
  padding: 26px;
}

.card-image {
  width: 100%;
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--border);
  margin-bottom: 18px;
  background: #fff;
}

.hero-card ul,
.section-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-card li,
.section-box li {
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
}

.hero-card li:last-child,
.section-box li:last-child { border-bottom: 0; }

.section { padding: 70px 0; }
.section-tight { padding-top: 35px; }
.section-head { max-width: 860px; margin-bottom: 35px; }

.stats {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 34px;
}

.stat {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 32px;
  color: var(--secondary);
  margin-bottom: 8px;
}

.service-grid,
.cities-grid,
.steps-grid,
.faq-grid {
  grid-template-columns: repeat(3, 1fr);
}

.icon,
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(245, 158, 11, 0.12);
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 16px;
  font-size: 20px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.section-box { padding: 28px; }

.progress {
  height: 10px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 24px;
}

.progress-bar {
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--secondary), #22c55e);
  transition: width .3s ease;
}

.step { display: none; }
.step.active { display: block; }

.options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.option-btn, input, select {
  width: 100%;
  font-family: inherit;
  font-size: 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 16px;
  background: var(--white);
  color: var(--text);
}

.option-btn {
  text-align: center;
  cursor: pointer;
  transition: 0.25s ease;
}

.option-btn:hover,
.option-btn.active {
  border-color: var(--secondary);
  background: rgba(22, 163, 74, 0.08);
  color: var(--secondary);
  font-weight: 700;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.form-actions {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--primary);
  cursor: pointer;
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border: 0;
  cursor: pointer;
}

.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 30px;
}

.footer-grid {
  grid-template-columns: 1.2fr .9fr .9fr;
  align-items: start;
}

.footer h3, .footer h4 { color: var(--white); }

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li { margin-bottom: 10px; }

.copyright {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  text-align: center;
  font-size: 14px;
}

.floating-actions {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.floating-actions a {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  box-shadow: var(--shadow);
  font-size: 18px;
  font-weight: 700;
}

.floating-call { background: var(--secondary); }
.floating-wa { background: #25d366; }

@media (max-width: 992px) {
  .topbar .wrap,
  .hero-grid,
  .stats,
  .service-grid,
  .cities-grid,
  .steps-grid,
  .faq-grid,
  .footer-grid,
  .split,
  .nav-inner {
    grid-template-columns: 1fr;
  }

  .topbar .wrap { text-align: center; }
  .topbar .cta { justify-content: center; }

  .menu-toggle { display: inline-block; }
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 14px;
  }
  .nav-links.show { display: flex; }

  .nav-call { justify-self: start; }
  .field-grid,
  .options-grid { grid-template-columns: 1fr; }
}

@media (max-width: 576px) {
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  .hero, .section { padding: 55px 0; }
  .floating-actions { left: 14px; bottom: 14px; }
}
