:root {
  --blue: #0B3D91;
  --blue-dark: #0A2540;
  --blue-deep: #081c34;
  --gold: #C8A24A;
  --gold-soft: #ead9b0;
  --green: #1faf5d;
  --white: #ffffff;
  --paper: #f7f9fc;
  --paper-alt: #eef4fb;
  --text: #17202c;
  --muted: #5d6978;
  --line: rgba(10, 37, 64, 0.12);
  --shadow: 0 18px 40px rgba(10, 37, 64, 0.10);
  --radius: 24px;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(10,37,64,0.08);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
  color: var(--blue-dark);
}

.brand-text strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.brand-text small {
  font-size: 0.73rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
  font-weight: 700;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--blue-dark);
  font-size: 0.95rem;
  font-weight: 600;
}

.nav a:hover { color: var(--blue); }

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--blue-dark);
  border: 0;
  font-size: 1.6rem;
}

.hero {
  background:
    radial-gradient(circle at 82% 14%, rgba(200,162,74,0.13), transparent 18%),
    linear-gradient(180deg, #f9fbfe 0%, #eff5fb 100%);
  padding: 76px 0 58px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 34px;
  align-items: center;
}

.eyebrow {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(11,61,145,0.08);
  color: var(--blue);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow.dark { background: rgba(11,61,145,0.08); color: var(--blue); }
.eyebrow.gold { background: rgba(200,162,74,0.12); color: var(--gold-soft); }

.hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1.03;
  letter-spacing: -0.045em;
  color: var(--blue-dark);
}

.hero h1 span { color: var(--blue); }

.hero p {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 650px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn:hover { transform: translateY(-1px); }
.btn-sm { min-height: 40px; padding: 0 18px; }
.btn.full { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-soft));
  color: var(--blue-dark);
  box-shadow: 0 10px 30px rgba(200,162,74,0.25);
}

.btn-outline {
  border-color: rgba(10,37,64,0.12);
  color: var(--blue-dark);
  background: transparent;
}

.btn-outline-dark {
  border-color: rgba(10,37,64,0.14);
  color: var(--blue-dark);
  background: rgba(255,255,255,0.72);
}

.btn-outline-light {
  border-color: rgba(255,255,255,0.22);
  color: var(--white);
  background: rgba(255,255,255,0.04);
}

.hero-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-list li {
  position: relative;
  padding-left: 18px;
  color: var(--blue-dark);
  font-weight: 600;
}

.hero-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.hero-side {
  display: grid;
  gap: 18px;
}

.hero-panel {
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-panel-primary {
  padding: 30px;
  min-height: 280px;
  background: linear-gradient(150deg, #113a67 0%, #0a2540 68%, #081c34 100%);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-panel-primary h2 {
  margin: 0 0 10px;
  font-size: 1.65rem;
}

.hero-panel-primary p {
  color: rgba(255,255,255,0.80);
  margin-bottom: 20px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  font-size: 0.86rem;
  font-weight: 600;
}

.hero-panel-secondary {
  padding: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(10,37,64,0.08);
  display: grid;
  gap: 14px;
}

.mini-stat {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--paper);
  border: 1px solid rgba(10,37,64,0.07);
}

.mini-stat strong {
  display: block;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.mini-stat span {
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-bar {
  padding: 18px 0;
  background: var(--white);
  border-top: 1px solid rgba(10,37,64,0.06);
  border-bottom: 1px solid rgba(10,37,64,0.06);
}

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

.trust-grid div {
  padding: 10px 14px;
}

.trust-grid strong {
  display: block;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.trust-grid span { color: var(--muted); font-size: 0.92rem; }

.section { padding: 86px 0; }
.section-alt { background: var(--paper-alt); }
.section-dark {
  background: linear-gradient(135deg, #0a2540, #0f365f);
  color: var(--white);
}

.section-head {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-head.align-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2,
.split-grid h2,
.contact-grid h2,
.cta-grid h2 {
  margin: 14px 0 12px;
  font-size: clamp(1.9rem, 3vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--blue-dark);
}

.section-dark .cta-grid h2 { color: var(--white); }
.section-head p,
.split-grid p,
.contact-grid p,
.cta-grid p { color: var(--muted); }
.section-dark .cta-grid p { color: rgba(255,255,255,0.82); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(10,37,64,0.08);
  box-shadow: var(--shadow);
}

.icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(11,61,145,0.08);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card h3 {
  margin: 0 0 10px;
  color: var(--blue-dark);
  font-size: 1.18rem;
}

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

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.step {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(10,37,64,0.08);
  box-shadow: var(--shadow);
}

.step-number {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.step h3 { margin: 0 0 10px; color: var(--blue-dark); }
.step p { margin: 0; color: var(--muted); }

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.bullet-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.bullet-list div {
  padding: 18px 20px;
  background: var(--paper);
  border-radius: 18px;
  border: 1px solid rgba(10,37,64,0.08);
}

.bullet-list strong {
  display: block;
  color: var(--blue-dark);
  margin-bottom: 6px;
}

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

.info-card {
  padding: 28px;
  background: linear-gradient(160deg, #113a67 0%, #0a2540 100%);
  color: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.info-card h3 {
  margin: 0 0 16px;
  font-size: 1.5rem;
}

.info-card ul {
  margin: 0 0 22px;
  padding-left: 18px;
  color: rgba(255,255,255,0.86);
}

.info-card li + li { margin-top: 10px; }

.cta-band { padding: 72px 0; }

.cta-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid rgba(10,37,64,0.10);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  color: var(--blue-dark);
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { color: var(--muted); margin: 12px 0 0; }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 28px;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.contact-card {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.contact-card strong {
  display: block;
  color: var(--blue-dark);
  margin-bottom: 4px;
}

.contact-card a,
.contact-card span { color: var(--muted); }

.lead-form {
  padding: 28px;
  background: var(--white);
  border: 1px solid rgba(10,37,64,0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.form-field {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.form-field label {
  font-weight: 600;
  color: var(--blue-dark);
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(10,37,64,0.14);
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: var(--paper);
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: rgba(11,61,145,0.45);
  box-shadow: 0 0 0 4px rgba(11,61,145,0.08);
}

.form-feedback {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-feedback.success { color: #0e7f45; }

.site-footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.82);
  padding-top: 54px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(180px, 0.7fr));
  gap: 28px;
  align-items: start;
}

.brand-footer { margin-bottom: 16px; }
.brand-text-light { color: var(--white); }
.brand-text-light small { color: var(--gold-soft); }

.site-footer h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 1rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.footer-bottom {
  padding: 18px 0 24px;
  margin-top: 26px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #24d366, var(--green));
  box-shadow: 0 18px 30px rgba(31,175,93,0.28);
  font-weight: 700;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.20);
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .cta-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .steps,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-actions { justify-content: flex-start; }
}

@media (max-width: 760px) {
  .brand-text { display: none; }

  .nav-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 16px;
    right: 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    background: rgba(255,255,255,0.98);
    border: 1px solid rgba(10,37,64,0.08);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .nav.open { display: flex; }

  .hero,
  .section,
  .cta-band { padding: 64px 0; }

  .cards-grid,
  .steps,
  .trust-grid,
  .hero-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
