:root {
  --bg: #f4f8ff;
  --bg-soft: #ecf3ff;
  --text: #1b2430;
  --muted: #5a6678;
  --primary: #ff7a00;
  --primary-dark: #de6500;
  --accent: #0f4c81;
  --dark: #0d1b2a;
  --card: #ffffff;
  --border: #dbe6f5;
  --shadow: 0 12px 30px rgba(14, 30, 54, 0.08);
  --radius: 16px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fbff 0%, #f3f8ff 100%);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), #ffa145);
  box-shadow: var(--shadow);
  font-size: 1.1rem;
}

.brand-text strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.2px;
}

.brand-text small {
  color: var(--muted);
  font-size: 0.82rem;
}

.menu {
  display: flex;
  align-items: center;
  gap: 18px;
}

.menu a {
  text-decoration: none;
  color: var(--text);
  font-weight: 500;
}

.menu a:hover { color: var(--accent); }

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
}

.hero {
  padding: 78px 0 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 30px;
  align-items: center;
}

.tag {
  margin: 0 0 10px;
  color: var(--accent);
  font-weight: 700;
}

h1 {
  margin: 0;
  line-height: 1.14;
  font-size: clamp(2rem, 4vw, 3.15rem);
  color: var(--dark);
}

.hero-subtitle {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: all .25s ease;
}

.btn-sm {
  padding: 8px 12px;
  font-size: 0.9rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), #ff9538);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--primary-dark), #ff8a24);
}

.btn-outline {
  color: var(--accent);
  border-color: var(--accent);
  background: #fff;
}

.btn-outline:hover { background: #eef6ff; }

.quick-points {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  color: #334155;
}

.quick-points li { margin: 6px 0; }

.hero-image-wrap img {
  border-radius: 20px;
  height: 450px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--bg-soft);
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 0;
  color: var(--dark);
  font-size: clamp(1.5rem, 2.7vw, 2.25rem);
}

.cards {
  display: grid;
  gap: 18px;
}

.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}

.card h3 {
  margin-top: 0;
  margin-bottom: 8px;
  color: var(--dark);
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fff3e6;
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.two-col {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
  align-items: stretch;
}

.check-list {
  margin: 16px 0 0;
  padding-left: 18px;
}

.check-list li { margin-bottom: 8px; }

.highlight-box {
  background: linear-gradient(145deg, #0d1b2a, #12385e);
  color: #e9f2ff;
  border-radius: 18px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.highlight-box h3 { margin-top: 0; color: #fff; }
.highlight-box .btn { margin-top: 8px; }

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

.trust-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}

.map-box {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
  box-shadow: var(--shadow);
}

.map-box iframe {
  border: 0;
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.faq-list details {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 18px;
  margin-bottom: 10px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--dark);
}

.cta-final { padding-top: 52px; }

.cta-box {
  background: linear-gradient(135deg, #0d1b2a, #1d4e89);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cta-box h2 { margin: 0 0 8px; }

.site-footer {
  background: #08111d;
  color: #cad8eb;
  padding-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-top: 0;
}

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

.site-footer li { margin: 8px 0; }
.site-footer a { color: #e0ecff; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.footer-bottom {
  margin-top: 22px;
  border-top: 1px solid rgba(202, 216, 235, 0.2);
  padding: 14px 0 18px;
  font-size: 0.95rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  background: #25D366;
  color: #fff;
  font-size: 1.4rem;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
  z-index: 1001;
}

@media (max-width: 1024px) {
  .hero-grid,
  .two-col,
  .cards-4,
  .cards-3,
  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-wrap img { height: 340px; }

  .menu-toggle { display: block; }

  .menu {
    position: absolute;
    top: 70px;
    right: 4%;
    min-width: 230px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px;
    gap: 10px;
  }

  .menu.active { display: flex; }

  .cta-box {
    flex-direction: column;
    align-items: flex-start;
  }
}
