:root {
  --primary: #3f51ff;
  --primary-dark: #2f3dc2;
  --accent: #00c2a8;
  --bg: #f5f8ff;
  --text: #1b2333;
  --muted: #5d6b82;
  --white: #ffffff;
  --card: #ffffff;
  --border: #dbe4f5;
  --shadow: 0 12px 30px rgba(27, 35, 51, 0.1);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(219, 228, 245, 0.8);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 0.95rem; }
.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: #fff;
  font-weight: 800;
}

.menu { display: flex; align-items: center; gap: 20px; }
.menu a { font-weight: 600; color: #2c3750; }
.menu .menu-cta {
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1b2333;
  margin: 5px 0;
}

.hero {
  padding: 80px 0 50px;
  background: radial-gradient(circle at top right, #d8e3ff, transparent 40%), linear-gradient(180deg, #f9fbff 0%, #f2f6ff 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.kicker {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

h1, h2, h3, h4 { line-height: 1.2; margin-top: 0; }
h1 { font-size: clamp(1.9rem, 4.2vw, 3rem); margin-bottom: 16px; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); margin-bottom: 12px; }

.hero-subtitle { color: var(--muted); font-size: 1.06rem; }

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
}
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; }
.btn-secondary { background: #eaf0ff; color: #243255; }
.btn-outline { border-color: var(--primary); color: var(--primary); background: transparent; }

.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 20px; color: #42506a; font-weight: 600; }
.hero-image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #dbe4f5;
}

.section { padding: 72px 0; }
.section-heading { max-width: 760px; margin-bottom: 28px; }
.section-heading h2 { margin-bottom: 0; }

.cards-grid {
  display: grid;
  gap: 18px;
}
.cards-grid.four { grid-template-columns: repeat(4, 1fr); }
.cards-grid.three { grid-template-columns: repeat(3, 1fr); }

.card, .service-card {
  background: var(--card);
  padding: 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(40, 57, 102, 0.08);
}
.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #edf3ff;
  margin-bottom: 14px;
  font-size: 1.2rem;
}

.why-grid, .trust-grid, .location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: start;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}
.check-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}

.highlight-box {
  background: linear-gradient(160deg, #3f51ff, #27328f);
  color: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.highlight-box .btn-outline { color: #fff; border-color: rgba(255,255,255,0.7); }

.trust-cards { display: grid; gap: 12px; }
.trust-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.map-frame {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(40, 57, 102, 0.1);
}
.map-frame iframe { width: 100%; min-height: 320px; border: 0; }

.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 10px;
}
.faq-list summary { cursor: pointer; font-weight: 700; }

.final-cta-box {
  background: linear-gradient(125deg, #18244f, #2e3ea7);
  color: #fff;
  border-radius: 20px;
  padding: 36px;
  text-align: center;
  box-shadow: var(--shadow);
}

.footer {
  background: #0f1731;
  color: #d6def8;
  padding-top: 46px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.footer h3, .footer h4 { color: #fff; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 8px; }
.footer a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin-top: 24px;
  padding: 14px 0 20px;
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 10px 24px rgba(0,0,0,0.2);
  z-index: 1100;
}

@media (max-width: 980px) {
  .cards-grid.four { grid-template-columns: repeat(2, 1fr); }
  .cards-grid.three { grid-template-columns: 1fr; }
  .hero-grid, .why-grid, .trust-grid, .location-grid, .footer-grid { grid-template-columns: 1fr; }

  .menu-toggle { display: block; }
  .menu {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 14px 4%;
    flex-direction: column;
    align-items: flex-start;
    display: none;
  }
  .menu.open { display: flex; }
}

@media (max-width: 560px) {
  .cards-grid.four { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .final-cta-box { padding: 28px 18px; }
}