
:root {
  --navy: #0D1B2A;
  --blue: #1E5AA8;
  --green: #00A676;
  --gold: #F3B21A;
  --light: #F5F7FA;
  --charcoal: #222B45;
  --white: #FFFFFF;
  --muted: #5D6877;
  --line: #DDE3EA;
  --radius: 18px;
  --shadow: 0 20px 60px rgba(13, 27, 42, 0.12);
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
.skip-link {
  position: absolute; top: -60px; left: 16px; padding: 10px 14px;
  background: var(--navy); color: white; z-index: 1000;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(221,227,234,.9);
}
.nav-wrap { min-height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: 245px; height: 64px; object-fit: contain; object-position: left center; }
.nav { display: flex; align-items: center; gap: 24px; font-weight: 650; font-size: 14px; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--blue); }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 28px; }
.button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 999px; padding: 13px 20px; font-weight: 750; border: 1px solid transparent;
  transition: .2s ease; cursor: pointer; font: inherit;
}
.button:hover { transform: translateY(-1px); }
.button-primary { background: var(--blue); color: white; box-shadow: 0 12px 30px rgba(30,90,168,.22); }
.button-primary:hover { background: #164b8e; }
.button-secondary { background: white; color: var(--navy); border-color: var(--line); }
.button-dark { background: var(--navy); color: white; }
.eyebrow {
  margin: 0 0 12px; color: var(--blue); font-weight: 800; text-transform: uppercase;
  letter-spacing: .13em; font-size: 12px;
}
.hero {
  position: relative; overflow: hidden; padding: 96px 0 84px;
  background:
    radial-gradient(circle at 88% 18%, rgba(0,166,118,.15), transparent 25%),
    radial-gradient(circle at 68% 80%, rgba(30,90,168,.15), transparent 30%),
    linear-gradient(135deg, #f9fbfd 0%, #ffffff 48%, #f3f7fb 100%);
}
.hero::after {
  content: ""; position: absolute; inset: auto -8% -55% auto; width: 560px; height: 560px;
  border: 80px solid rgba(13,27,42,.035); transform: rotate(35deg); border-radius: 80px;
}
.hero-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 64px; align-items: center; }
h1, h2, h3 { color: var(--navy); line-height: 1.1; margin-top: 0; }
h1 { font-size: clamp(48px, 7vw, 82px); letter-spacing: -.05em; margin-bottom: 22px; }
h2 { font-size: clamp(34px, 4vw, 52px); letter-spacing: -.035em; margin-bottom: 18px; }
h3 { font-size: 22px; margin-bottom: 10px; }
.lead { font-size: 20px; color: var(--muted); max-width: 700px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 28px; color: var(--muted); font-size: 14px; font-weight: 650; }
.trust-row span::before { content: "✓"; color: var(--green); margin-right: 7px; font-weight: 900; }
.hero-card {
  background: var(--navy); color: white; border-radius: 28px; padding: 34px;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.hero-card::before {
  content: ""; position: absolute; width: 240px; height: 240px; border: 46px solid rgba(255,255,255,.06);
  border-radius: 48px; right: -80px; top: -100px; transform: rotate(30deg);
}
.hero-card h3 { color: white; font-size: 28px; }
.hero-card p { color: #c8d4e3; }
.steps { margin: 28px 0 0; padding: 0; list-style: none; display: grid; gap: 17px; }
.steps li { display: grid; grid-template-columns: 38px 1fr; gap: 12px; align-items: start; }
.step-num {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: var(--blue); color: white; font-weight: 850;
}
section { padding: 86px 0; }
.section-muted { background: var(--light); }
.section-dark { background: var(--navy); color: white; }
.section-dark h2, .section-dark h3 { color: white; }
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head p { color: var(--muted); font-size: 18px; }
.section-dark .section-head p { color: #c8d4e3; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: white; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px;
  box-shadow: 0 10px 30px rgba(13,27,42,.05);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: rgba(30,90,168,.1); color: var(--blue); font-size: 22px; margin-bottom: 18px;
}
.card p { color: var(--muted); margin-bottom: 0; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.category {
  padding: 18px 20px; border: 1px solid var(--line); border-radius: 14px; background: white;
  font-weight: 750; display: flex; align-items: center; gap: 11px;
}
.category::before { content: ""; width: 9px; height: 9px; border-radius: 50%; background: var(--green); }
.callout {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 36px; align-items: center;
  padding: 44px; border-radius: 24px; background: linear-gradient(130deg, var(--navy), #143b69);
  color: white; box-shadow: var(--shadow);
}
.callout h2 { color: white; }
.callout p { color: #d6e0ec; }
.callout-actions { display: flex; justify-content: flex-end; gap: 12px; flex-wrap: wrap; }
.page-hero { padding: 72px 0 54px; background: linear-gradient(135deg, var(--light), white); }
.page-hero h1 { font-size: clamp(42px, 6vw, 66px); max-width: 900px; }
.form-shell { max-width: 840px; margin: 0 auto; }
.form-note {
  background: #eef6ff; border: 1px solid #cfe3fa; border-radius: 14px; padding: 16px 18px;
  color: #294b70; margin-bottom: 24px;
}
form { display: grid; gap: 18px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: grid; gap: 7px; font-weight: 750; color: var(--navy); }
input, select, textarea {
  width: 100%; border: 1px solid #cfd7e2; border-radius: 12px; padding: 13px 14px;
  font: inherit; color: var(--charcoal); background: white;
}
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(30,90,168,.14); border-color: var(--blue); }
textarea { min-height: 150px; resize: vertical; }
.checkbox { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; color: var(--muted); }
.checkbox input { width: auto; margin-top: 5px; }
.notice { display: none; padding: 14px 16px; border-radius: 12px; background: #e9f8f2; color: #126147; }
.prose { max-width: 850px; }
.prose h2 { font-size: 32px; margin-top: 42px; }
.prose p, .prose li { color: var(--muted); }
.site-footer { background: #091522; color: #c3cedb; padding: 58px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; }
.footer-grid h3 { color: white; font-size: 17px; }
.footer-logo { width: 260px; background: white; border-radius: 10px; padding: 5px 10px; margin-bottom: 16px; }
.footer-links { display: grid; gap: 9px; }
.footer-links a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 34px; padding-top: 20px; font-size: 13px; }
.badge { display: inline-flex; padding: 7px 11px; border-radius: 999px; background: rgba(0,166,118,.12); color: #007e59; font-weight: 750; font-size: 13px; }
.founding-card { border: 1px dashed #aeb9c6; background: linear-gradient(135deg, white, #f8fafc); }
.small { font-size: 13px; color: var(--muted); }
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    display: none; position: absolute; top: 78px; left: 0; right: 0; padding: 22px;
    background: white; border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch;
  }
  .nav.open { display: flex; }
  .hero-grid, .callout, .footer-grid { grid-template-columns: 1fr; }
  .callout-actions { justify-content: flex-start; }
  .grid-3, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 68px; }
}
@media (max-width: 620px) {
  .container { width: min(100% - 28px, var(--max)); }
  .brand img { width: 205px; }
  .grid-3, .grid-2, .category-grid, .form-grid { grid-template-columns: 1fr; }
  section { padding: 64px 0; }
  .hero-card, .callout { padding: 27px; }
  .nav-wrap { min-height: 70px; }
  .nav { top: 70px; }
}


.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #25D366;
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.24);
  transition: transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(13, 27, 42, 0.3);
}
.whatsapp-float::before {
  content: "◉";
  font-size: 18px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}
@media (max-width: 620px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    padding: 12px 15px;
    font-size: 14px;
  }
}


.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  display: block;
  margin-bottom: 22px;
  padding: 15px 18px;
  border-radius: 12px;
  font-weight: 700;
}
.form-status-success {
  background: #e9f8f2;
  border: 1px solid #b9e7d5;
  color: #126147;
}
.form-status-error {
  background: #fff0f0;
  border: 1px solid #f0c4c4;
  color: #8a2727;
}
