* { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #f5f8ff;
  --white: #ffffff;
  --dark: #0f172a;
  --text: #1e293b;
  --muted: #64748b;
  --primary: #0ea5a4;
  --primary-dark: #0b7f7e;
  --secondary: #2563eb;
  --line: #e2e8f0;
  --radius: 16px;
  --shadow: 0 14px 35px rgba(2, 8, 23, 0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

.container { width: min(1120px, 92%); margin: 0 auto; }
.section { padding: 88px 0; }
.section-alt { background: linear-gradient(180deg, #eef4ff 0%, #f8fbff 100%); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(148,163,184,0.2);
}
.header-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--dark); font-weight: 800; }
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: grid; place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
}
.menu { display: flex; gap: 20px; align-items: center; }
.menu a { text-decoration: none; color: var(--text); font-weight: 600; }
.menu a:hover { color: var(--secondary); }

.btn {
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
  transition: .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { padding: 9px 14px; font-size: .92rem; }
.btn-ghost {
  color: var(--secondary);
  background: transparent;
  border: 1.5px solid #bfdbfe;
  box-shadow: none;
}
.btn-light { background: #fff; color: var(--secondary); box-shadow: none; }

.hero { position: relative; overflow: hidden; padding: 92px 0 72px; }
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 10%, rgba(37,99,235,0.2), transparent 40%),
    radial-gradient(circle at 85% 10%, rgba(14,165,164,0.2), transparent 40%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 34px;
  align-items: center;
}
.badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 14px;
}
.hero h1 { font-size: clamp(2rem, 4vw, 3rem); line-height: 1.15; margin-bottom: 14px; color: var(--dark); }
.hero p { color: var(--muted); }
.hero-actions { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { margin-top: 18px; display: flex; gap: 16px; flex-wrap: wrap; color: #334155; font-weight: 600; }
.hero-card {
  background: var(--white);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-card img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; display: block; }

.section-head { max-width: 760px; margin-bottom: 30px; }
.kicker { color: var(--secondary); font-weight: 700; margin-bottom: 8px; text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; }
.section-head h2 { font-size: clamp(1.5rem, 2.8vw, 2.3rem); line-height: 1.2; color: var(--dark); }

.cards { display: grid; gap: 18px; }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.card {
  background: var(--white);
  border: 1px solid #e6edf8;
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: 0 12px 26px rgba(15,23,42,.06);
}
.card h3 { margin: 10px 0; color: var(--dark); }
.card p { color: var(--muted); }
.icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, #dbeafe, #ccfbf1);
  font-size: 1.25rem;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.check-list { list-style: none; margin-top: 16px; display: grid; gap: 10px; }
.check-list li::before { content: '✔'; color: var(--primary-dark); font-weight: 800; margin-right: 8px; }
.panel {
  background: linear-gradient(140deg, #1e3a8a, #0f766e);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.panel h3 { margin-bottom: 10px; }
.panel p { color: rgba(255,255,255,.88); margin-bottom: 16px; }

.section-dark { background: linear-gradient(135deg, #0f172a, #1e293b); color: #fff; }
.section-dark .light h2, .section-dark .kicker { color: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.trust-item { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.2); padding: 18px; border-radius: 14px; }
.trust-item p { color: rgba(255,255,255,.9); margin-top: 6px; }

.map-wrap { border-radius: 18px; overflow: hidden; min-height: 320px; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; }
address { margin: 14px 0; font-style: normal; color: #334155; }
.mini-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

.faq-list { display: grid; gap: 12px; }
.faq-list details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
}
.faq-list summary { cursor: pointer; font-weight: 700; color: var(--dark); }
.faq-list p { margin-top: 10px; color: var(--muted); }

.cta-final { padding-top: 24px; }
.cta-box {
  background: linear-gradient(135deg, #dbeafe, #ccfbf1);
  border: 1px solid #c7d2fe;
  border-radius: 20px;
  text-align: center;
  padding: 34px;
}
.cta-box h2 { color: #0f172a; margin-bottom: 8px; }
.cta-box p { color: #334155; }

.site-footer {
  background: #0b1220;
  color: rgba(255,255,255,.85);
  padding-top: 48px;
}
.footer-grid { display: grid; grid-template-columns: 1.1fr 1fr 1fr 1fr; gap: 20px; }
.footer-grid h3, .footer-grid h4 { color: #fff; margin-bottom: 10px; }
.footer-grid ul { list-style: none; display: grid; gap: 8px; }
.footer-grid a { color: #93c5fd; text-decoration: none; }
.footer-grid a:hover { text-decoration: underline; }
.footer-bottom { margin-top: 28px; border-top: 1px solid rgba(255,255,255,.15); padding: 14px 0; text-align: center; font-size: .92rem; }

.float-whats {
  position: fixed; right: 18px; bottom: 18px;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: 1.4rem;
  text-decoration: none;
  color: #fff;
  background: #22c55e;
  box-shadow: 0 12px 25px rgba(34,197,94,.35);
  z-index: 30;
}

.nav-toggle { display: none; }

@media (max-width: 980px) {
  .hero-grid, .split { grid-template-columns: 1fr; }
  .cols-4 { grid-template-columns: repeat(2,1fr); }
  .cols-3 { grid-template-columns: 1fr 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .menu {
    position: absolute;
    top: 78px; right: 4%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: var(--shadow);
    padding: 14px;
    display: none;
    flex-direction: column;
    min-width: 230px;
    align-items: flex-start;
  }
  .menu.open { display: flex; }
  .nav-toggle {
    display: inline-flex;
    width: 42px; height: 42px;
    border: 1px solid #cbd5e1;
    background: #fff;
    border-radius: 10px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
  }
  .nav-toggle span { height: 2px; background: #334155; width: 100%; }
  .cols-4, .cols-3, .trust-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 72px 0; }
}