:root {
  --primary: #0e63f4;
  --primary-dark: #0846b0;
  --primary-light: #e8f0fe;
  --accent: #ff7a00;
  --accent-dark: #e06a00;
  --ink: #16233c;
  --muted: #5b6b84;
  --bg: #ffffff;
  --bg-soft: #f5f8fd;
  --line: #e6ecf5;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(14, 99, 244, 0.12);
  --font: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--ink);
  line-height: 1.6;
  background: var(--bg);
}

a { color: var(--primary); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: min(1160px, 92%); margin-inline: auto; }

/* ---------- Utility ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(14, 99, 244, 0.35); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary-light); }
.btn-white { background: #fff; color: var(--primary); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2); }

.section { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 12px; }
.section-head p { color: var(--muted); }
.kicker {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

/* ---------- Top strip ---------- */
.top-strip {
  background: linear-gradient(90deg, var(--primary), #2f83ff);
  color: #fff;
  font-size: 0.85rem;
  text-align: center;
  padding: 8px 14px;
}
.top-strip b { color: #ffe08a; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-size: 1.35rem; font-weight: 800; color: var(--ink); }
.brand .logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #4ea6ff);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}
.brand small { display: block; font-size: 0.62rem; font-weight: 600; color: var(--accent); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 0.95rem; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone { display: flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 700; }
.nav-phone span { font-size: 0.78rem; color: var(--muted); font-weight: 500; display: block; }

.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; color: var(--ink); cursor: pointer; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(700px 400px at 85% 10%, rgba(78, 166, 255, 0.25), transparent 60%),
    radial-gradient(500px 300px at 5% 90%, rgba(255, 122, 0, 0.12), transparent 60%),
    linear-gradient(180deg, #eef5ff 0%, #ffffff 100%);
  padding: 56px 0 80px;
  overflow: hidden;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.15; margin-bottom: 16px; }
.hero h1 .hl { color: var(--primary); }
.hero p.sub { color: var(--muted); font-size: 1.1rem; max-width: 480px; margin-bottom: 28px; }

.hero-offer {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.offer-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow);
  flex: 1;
  min-width: 190px;
}
.offer-chip .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.offer-chip b { font-size: 1rem; display: block; }
.offer-chip small { color: var(--muted); font-size: 0.8rem; }
.offer-chip.accent .ic { background: #fff0e0; color: var(--accent); }

.hero-visual { position: relative; }
.hero-bubble {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 26px;
}
.hero-bubble .row { display: flex; justify-content: space-between; gap: 12px; padding: 10px 0; border-bottom: 1px dashed var(--line); }
.hero-bubble .row:last-child { border-bottom: 0; }
.hero-bubble .row span { color: var(--muted); font-size: 0.9rem; }
.hero-bubble .row b { font-size: 1.05rem; }
.hero-bubble h4 { margin-bottom: 8px; display: flex; align-items: center; gap: 8px; color: var(--primary); }

.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 10px 18px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.float-chip.one { top: -18px; right: -10px; color: var(--accent); }
.float-chip.two { bottom: -16px; left: -14px; color: var(--primary); }

/* ---------- Marquee / cities ---------- */
.city-strip { border-block: 1px solid var(--line); background: #fff; padding: 18px 0; }
.city-strip-inner { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.city-strip .label { font-weight: 800; color: var(--primary); white-space: nowrap; }
.city-strip .tags { display: flex; gap: 10px; flex-wrap: wrap; }
.city-tag {
  background: var(--bg-soft);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Services / Pricing ---------- */
.services-bg { background: var(--bg-soft); }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card .ic {
  width: 68px; height: 68px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  display: grid;
  place-items: center;
}
.service-card:nth-child(2) .ic { background: #eafbf1; color: #12a150; }
.service-card:nth-child(3) .ic { background: #fff0e0; color: var(--accent); }
.service-card:nth-child(4) .ic { background: #f3edff; color: #7c3aed; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.service-card .price { font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.service-card .price small { font-size: 0.85rem; color: var(--muted); font-weight: 600; }
.service-card .eta { color: var(--muted); font-size: 0.86rem; margin: 4px 0 14px; }
.tag-new {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.extra-services { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-top: 32px; }
.extra {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.extra small { display: block; color: var(--primary); font-size: 0.78rem; margin-top: 4px; }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 44px; height: 44px;
  margin: 0 auto 14px;
  border-radius: 12px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 16px rgba(14, 99, 244, 0.35);
}
.step:nth-child(2)::before { background: #12a150; box-shadow: 0 8px 16px rgba(18, 161, 80, 0.3); }
.step:nth-child(3)::before { background: var(--accent); box-shadow: 0 8px 16px rgba(255, 122, 0, 0.3); }
.step:nth-child(4)::before { background: #7c3aed; box-shadow: 0 8px 16px rgba(124, 58, 237, 0.3); }
.step .ic { width: 64px; height: 64px; margin: 0 auto 16px; color: var(--primary); }
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Promise ---------- */
.promise {
  background: linear-gradient(135deg, var(--primary) 0%, #2f83ff 100%);
  color: #fff;
}
.promise .section-head h2 { color: #fff; }
.promise .section-head p { color: rgba(255, 255, 255, 0.85); }
.promise .kicker { background: rgba(255, 255, 255, 0.2); color: #fff; }
.promise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.promise-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  backdrop-filter: blur(4px);
}
.promise-card .ic { width: 60px; height: 60px; margin: 0 auto 14px; }
.promise-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.promise-card p { font-size: 0.88rem; color: rgba(255, 255, 255, 0.85); }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 4px 14px rgba(22, 35, 60, 0.05);
}
.tcard .stars { color: #ffb400; letter-spacing: 2px; margin-bottom: 12px; }
.tcard p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 800;
  display: grid;
  place-items: center;
}
.tcard .who b { display: block; font-size: 0.95rem; }
.tcard .who small { color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 760px; margin-inline: auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; background: #fff; }
.faq-item summary {
  padding: 18px 22px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--primary); font-weight: 800; transition: transform 0.2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item[open] { box-shadow: var(--shadow); }
.faq-body { padding: 0 22px 18px; color: var(--muted); }

/* ---------- Franchise CTA ---------- */
.franchise { background:
  radial-gradient(500px 300px at 90% 30%, rgba(255, 122, 0, 0.18), transparent 60%),
  var(--bg-soft);
}
.franchise-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; }
.franchise h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin-bottom: 10px; }
.franchise p { color: var(--muted); max-width: 560px; }
.franchise .btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- SEO ---------- */
.seo { border-top: 1px solid var(--line); background: #fff; }
.seo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.seo-col h3 { font-size: 1.05rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.seo-col h3 .ic { color: var(--primary); }
.seo-col p { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ---------- Footer ---------- */
.footer { background: #0d1630; color: #c6d0e8; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; padding: 60px 0 40px; }
.footer .brand { color: #fff; margin-bottom: 16px; }
.footer h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer a { color: #c6d0e8; font-size: 0.92rem; display: block; padding: 5px 0; }
.footer a:hover { color: #fff; }
.footer .about p { font-size: 0.92rem; color: rgba(198, 208, 232, 0.8); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(198, 208, 232, 0.7);
}
.footer .contact-line { display: flex; align-items: center; gap: 10px; color: #c6d0e8; font-size: 0.92rem; padding: 6px 0; }
.socials { display: flex; gap: 10px; margin-top: 14px; }
.socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.9rem;
}
.socials a:hover { background: var(--primary); }

/* ---------- Modals ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(13, 22, 48, 0.55);
  backdrop-filter: blur(4px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}
.modal-overlay.open { display: flex; }
.modal {
  background: #fff;
  border-radius: 18px;
  width: min(480px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  padding: 28px;
  position: relative;
  animation: pop 0.2s ease;
}
@keyframes pop { from { transform: translateY(12px) scale(0.98); opacity: 0; } to { transform: none; opacity: 1; } }
.modal .close-btn {
  position: absolute;
  top: 14px; right: 14px;
  width: 34px; height: 34px;
  border: 0; border-radius: 50%;
  background: var(--bg-soft);
  color: var(--muted);
  font-size: 1.1rem;
  cursor: pointer;
}
.modal h3 { text-align: center; margin-bottom: 6px; font-size: 1.4rem; }
.modal .sub { text-align: center; color: var(--muted); margin-bottom: 20px; font-size: 0.92rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.82rem; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 99, 244, 0.15);
}
.form-hint { font-size: 0.78rem; color: var(--muted); text-align: center; margin-top: 14px; }
.form-success { text-align: center; padding: 20px 10px; }
.form-success .tick {
  width: 72px; height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #eafbf1;
  color: #12a150;
  display: grid;
  place-items: center;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45);
  z-index: 60;
  transition: transform 0.2s;
}
.wa-float:hover { transform: scale(1.08); }

/* ---------- Page sections ---------- */
.page-hero {
  background:
    radial-gradient(600px 300px at 90% 20%, rgba(78, 166, 255, 0.25), transparent 60%),
    linear-gradient(180deg, #eef5ff, #fff);
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: 10px; }
.page-hero p { color: var(--muted); max-width: 560px; margin-inline: auto; font-size: 1.05rem; }

.price-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.price-table { width: 100%; border-collapse: collapse; min-width: 640px; background: #fff; }
.price-table th { background: var(--primary); color: #fff; text-align: left; padding: 14px 18px; font-size: 0.9rem; }
.price-table td { padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: 0.95rem; }
.price-table tr:nth-child(even) td { background: var(--bg-soft); }
.price-table .amt { font-weight: 800; color: var(--primary); white-space: nowrap; }
.price-table .eyebrow { color: var(--muted); font-size: 0.82rem; display: block; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-info h3 { font-size: 1.25rem; margin-bottom: 14px; }
.contact-info .line { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.contact-info .line .ic { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: var(--primary-light); color: var(--primary); display: grid; place-items: center; }
.contact-info .line b { display: block; }
.contact-info .line p { color: var(--muted); font-size: 0.9rem; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .franchise-grid, .contact-grid { grid-template-columns: 1fr; }
  .cards, .steps, .promise-grid { grid-template-columns: repeat(2, 1fr); }
  .extra-services { grid-template-columns: repeat(3, 1fr); }
  .testimonials, .seo-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--line);
    display: none;
    padding: 12px 0;
    box-shadow: 0 20px 30px rgba(13, 22, 48, 0.12);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 6%; width: 100%; }
  .nav-toggle { display: block; }
  .nav-phone { display: none; }
  .hero-visual { margin-top: 10px; }
}

@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .cards, .steps, .promise-grid, .testimonials, .seo-grid { grid-template-columns: 1fr; }
  .extra-services { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
}