@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Urbanist:wght@500;600;700;800&display=swap");

:root {
  --bg: #f2f6ff;
  --surface: #ffffff;
  --surface-soft: #f8fbff;
  --ink: #15233d;
  --ink-soft: #5c6e8b;
  --brand: #0f766e;
  --brand-2: #1d4ed8;
  --accent: #ea580c;
  --line: #d9e2f2;
  --hero-dark: #0f172a;
  --hero-glow: #dff4ff;
  --success: #0f9f6e;
  --shadow: 0 12px 34px rgba(16, 34, 71, 0.14);
  --radius-lg: 22px;
  --radius-md: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% -8%, #d3f8f1 0%, transparent 32%),
    radial-gradient(circle at 88% -12%, #dbe9ff 0%, transparent 35%),
    var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

.topbar {
  background: linear-gradient(90deg, #0b3f3a 0%, #1f4bb5 100%);
  color: #e9f3ff;
  font-size: 0.9rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  flex-wrap: wrap;
}
.topbar-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #e9f3ff;
  font-weight: 600;
}
.icon-chip {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.75rem;
  background: rgba(231, 242, 255, 0.16);
  border: 1px solid rgba(221, 234, 255, 0.32);
}

header {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(217, 226, 242, 0.88);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(9px);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Urbanist", sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.2px;
}
.brand-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 0 5px rgba(29, 78, 216, 0.12);
}

.nav-row { display: flex; align-items: center; gap: 1.1rem; }

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

nav a {
  color: var(--ink-soft);
  font-weight: 600;
  padding: 0.45rem 0.65rem;
  border-radius: 999px;
  transition: all .2s ease;
}

nav a:hover,
nav a.active {
  color: #0f2b73;
  background: #e8efff;
}

.nav-cta {
  background: linear-gradient(90deg, var(--accent), #fb923c);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  padding: 0.62rem 0.9rem;
  white-space: nowrap;
}

.hero { padding: 3.6rem 0 2.7rem; }

.hero-shell {
  background: linear-gradient(140deg, #0d1b35 0%, #112856 55%, #153e85 100%);
  color: #ecf3ff;
  border-radius: 28px;
  padding: 2rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px rgba(8, 20, 45, 0.3);
}

.hero-shell::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  right: -110px;
  top: -120px;
  background: radial-gradient(circle, rgba(151, 224, 255, 0.28) 0%, rgba(151, 224, 255, 0) 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  border: 1px solid rgba(185, 216, 255, 0.42);
  color: #d6e8ff;
  background: rgba(145, 195, 255, 0.15);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2px;
  padding: 0.24rem 0.68rem;
  border-radius: 999px;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.2;
  font-family: "Urbanist", "Plus Jakarta Sans", sans-serif;
}

h1 { font-size: clamp(2rem, 4.7vw, 3.25rem); margin: 0.85rem 0 0.95rem; }
h2 { font-size: clamp(1.4rem, 2.8vw, 2rem); margin-bottom: 0.7rem; }
h3 { font-size: 1.16rem; margin-bottom: 0.5rem; }

.lead { color: #d2ddf6; font-size: 1.04rem; margin: 0; }

.hero-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 1rem;
}
.hero-points span {
  font-size: 0.92rem;
  color: #d8e5ff;
  background: rgba(232, 243, 255, 0.11);
  border: 1px solid rgba(196, 223, 255, 0.25);
  border-radius: 999px;
  padding: 0.3rem 0.62rem;
}

.hero-panel {
  background: #f6fbff;
  color: var(--ink);
  border-radius: 16px;
  padding: 1rem;
  border: 1px solid #d7e7fb;
}
.hero-panel h3 {
  text-align: center;
}
.hero-panel-rich {
  display: grid;
  gap: 0.68rem;
}
.mini-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
}
.mini-highlights div {
  border: 1px solid #d6e2f5;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  padding: 0.48rem 0.35rem;
}
.mini-highlights strong {
  display: block;
  color: #12366f;
  font-family: "Urbanist", sans-serif;
  font-size: 0.95rem;
  line-height: 1.15;
}
.mini-highlights span {
  color: #5c7093;
  font-size: 0.78rem;
}
.feature-list {
  display: grid;
  gap: 0.55rem;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  border: 1px solid #d8e4f6;
  border-radius: 11px;
  background: #fff;
  padding: 0.56rem;
}
.feature-item strong {
  display: block;
  color: #163a74;
  font-size: 0.9rem;
  line-height: 1.2;
}
.feature-item span {
  color: #5d7091;
  font-size: 0.82rem;
}

.panel-kpi { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.55rem; margin: 0.8rem 0; }
.panel-kpi div {
  background: #fff;
  border: 1px solid #d8e3f4;
  border-radius: 10px;
  padding: 0.58rem;
  text-align: center;
}
.panel-kpi strong { display: block; font-family: "Urbanist", sans-serif; font-size: 1.15rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.05rem; }
.btn {
  display: inline-block;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.68rem 1rem;
  border: 1px solid transparent;
  transition: all .18s ease;
}
.btn-primary { background: linear-gradient(90deg, var(--accent), #fb923c); color: #fff; }
.btn-primary:hover { transform: translateY(-1px); }
.btn-ghost { background: #fff; color: #0f2b73; border-color: #b6c7ea; }
.btn-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.btn-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.74rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.btn-ghost .btn-icon {
  background: #eef3ff;
  border-color: #cad8f2;
}
.trusted-actions {
  align-items: center;
  flex-wrap: nowrap;
}

body.modal-open { overflow: hidden; }

.lead-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.lead-modal.open {
  opacity: 1;
  visibility: visible;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 20, 44, 0.64);
  backdrop-filter: blur(5px);
}

.lead-modal-dialog {
  position: relative;
  width: min(560px, 100%);
  max-height: min(86vh, 740px);
  overflow: auto;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid #d7e3f5;
  border-radius: 18px;
  box-shadow: 0 20px 48px rgba(7, 20, 44, 0.32);
  padding: 1.15rem;
  transform: translateY(14px) scale(0.97);
  transition: transform .24s ease;
}

.lead-modal.open .lead-modal-dialog {
  transform: translateY(0) scale(1);
}

.lead-modal-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
}

.lead-modal-top p {
  margin: 0.45rem 0 0;
  color: var(--ink-soft);
}

.lead-modal-close {
  border: 1px solid #d6e2f5;
  background: #fff;
  border-radius: 10px;
  min-width: 38px;
  height: 38px;
  cursor: pointer;
  color: #2e4677;
  font-size: 1.2rem;
  line-height: 1;
}

.lead-form {
  display: grid;
  gap: 0.72rem;
}

.lead-field {
  display: grid;
  gap: 0.35rem;
}

.lead-field label {
  font-size: 0.88rem;
  color: #1f3d7a;
  font-weight: 700;
}

.lead-field input,
.lead-field select,
.lead-field textarea {
  width: 100%;
  border: 1px solid #ccdbf2;
  border-radius: 10px;
  padding: 0.68rem 0.72rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.lead-field textarea {
  min-height: 84px;
  resize: vertical;
}

.lead-field input:focus,
.lead-field select:focus,
.lead-field textarea:focus {
  outline: 2px solid rgba(29, 78, 216, 0.25);
  border-color: #3e69ca;
}

.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.lead-note {
  margin: 0.2rem 0 0;
  color: #2f4d80;
  font-size: 0.9rem;
}

.section { padding: 1.3rem 0 2.2rem; }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  margin-bottom: 0.9rem;
}
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.8px;
  font-weight: 700;
  color: #1b4aa7;
  background: #eaf0ff;
  border: 1px solid #cfdbf7;
  border-radius: 999px;
  padding: 0.22rem 0.62rem;
}

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

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.12rem;
  box-shadow: var(--shadow);
}
.card.soft { background: linear-gradient(170deg, #ffffff 0%, var(--surface-soft) 100%); }
.card-link { display: block; transition: transform .18s ease, box-shadow .18s ease; }
.card-link:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(30, 58, 116, 0.16); }

.list { margin: 0; padding-left: 1.08rem; }
.list li { margin: 0.45rem 0; }

.steps { display: grid; gap: 0.72rem; }
.step {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.68rem;
}
.step .num {
  min-width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.88rem;
}

.stats-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.7rem; }
.stats-strip .item {
  text-align: center;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.8rem 0.6rem;
}
.stats-strip strong { font-family: "Urbanist", sans-serif; font-size: 1.42rem; display: block; }

.split-banner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 1rem;
  background: linear-gradient(120deg, #f6faff 0%, #edf6ff 100%);
  border: 1px solid #d5e3f9;
  border-radius: var(--radius-lg);
  padding: 1.2rem;
}

.table-like { width: 100%; border-collapse: collapse; }
.table-like th, .table-like td { text-align: left; padding: 0.68rem 0.52rem; border-bottom: 1px solid var(--line); }
.table-like th { color: #2a447b; font-family: "Urbanist", sans-serif; }

.notice {
  border-left: 4px solid var(--accent);
  padding: 0.65rem 0.8rem;
  background: #fff5ed;
  color: #7f300d;
  border-radius: 0 10px 10px 0;
  font-size: 0.94rem;
}

footer {
  margin-top: 2.1rem;
  background: linear-gradient(120deg, #0b1730 0%, #123369 100%);
  color: #ebf2ff;
  padding: 2rem 0;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 1rem; }
.footer-links-list {
  margin: 0;
  padding-left: 1.1rem;
  columns: 2;
  column-gap: 1.2rem;
}
.footer-links-list li {
  margin: 0.45rem 0;
  color: #d4e2ff;
}
.footer-links-list a {
  color: #d4e2ff;
  border-bottom: 1px solid transparent;
}
.footer-links-list a:hover {
  color: #ffffff;
  border-bottom-color: rgba(255, 255, 255, 0.45);
}
.footer-contact-line {
  margin: 0.45rem 0;
}
.footer-contact-line a {
  color: #ccdbf8;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-bottom {
  border-top: 1px solid rgba(206, 221, 255, 0.2);
  margin-top: 1rem;
  padding-top: 1rem;
}
.small { font-size: 0.93rem; color: #ccdbf8; }

.direct-contact-panel {
  background: linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
}
.contact-cards {
  display: grid;
  gap: 0.7rem;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 0.68rem;
  border: 1px solid #d4e1f5;
  border-radius: 12px;
  background: #fff;
  padding: 0.62rem 0.7rem;
  transition: transform .18s ease, box-shadow .18s ease;
}
.contact-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(22, 46, 93, 0.14);
}
.contact-card strong {
  display: block;
  color: #13346d;
  line-height: 1.25;
}
.contact-card span {
  color: #53698f;
  font-size: 0.92rem;
}

.quick-call-btn {
  margin-top: 0.6rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
  color: #fff;
  background: linear-gradient(90deg, #ea580c, #f97316);
  border-radius: 12px;
  font-weight: 800;
  padding: 0.72rem 0.84rem;
}
.quick-extra {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.72rem;
}
.quick-extra div {
  border: 1px solid #d6e3f7;
  border-radius: 10px;
  background: #fff;
  text-align: center;
  padding: 0.5rem;
}
.quick-extra strong {
  display: block;
  color: #13356f;
  font-family: "Urbanist", sans-serif;
}
.quick-extra span {
  color: #5f7292;
  font-size: 0.84rem;
}
.quick-note {
  margin-top: 0.62rem;
  color: #3f5479;
  font-size: 0.9rem;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 180;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25d366, #1fa955);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 26px rgba(25, 104, 56, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.28);
}
.wa-float:hover {
  transform: translateY(-1px);
}
.wa-logo {
  width: 30px;
  height: 30px;
  color: #fff;
  display: block;
}

@media (max-width: 1024px) {
  .hero-grid, .grid-3, .stats-strip, .split-banner, .footer-grid { grid-template-columns: 1fr; }
  .footer-links-list { columns: 1; }
}

@media (max-width: 860px) {
  .nav-wrap { flex-direction: column; align-items: flex-start; }
  .nav-row { width: 100%; flex-direction: column; align-items: stretch; }
  nav { width: 100%; }
  nav ul { gap: 0.4rem; width: 100%; }
  nav li { width: 100%; }
  nav a { display: block; }
  .nav-cta { width: 100%; text-align: center; }
  .hero-points, .grid-2, .panel-kpi { grid-template-columns: 1fr; }
  .mini-highlights { grid-template-columns: 1fr; }
  .topbar .container { flex-direction: column; align-items: flex-start; }
  .topbar-row { width: 100%; }
  .hero-shell { padding: 1.2rem; border-radius: 22px; }
  .btn-row .btn { width: 100%; text-align: center; }
  .trusted-actions { justify-content: center; flex-wrap: wrap; }
  .trusted-actions .btn {
    width: min(320px, 100%);
    justify-content: center;
  }
  .card { padding: 0.95rem; }
  .quick-extra { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { width: min(1180px, 94vw); }
  h1 { font-size: clamp(1.72rem, 9vw, 2.16rem); }
  h2 { font-size: clamp(1.26rem, 6.8vw, 1.7rem); }
  .hero { padding-top: 2.2rem; }
  .section { padding: 1rem 0 1.8rem; }
  .stats-strip .item strong { font-size: 1.2rem; }
  .table-like {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
    width: 100%;
  }
  .lead-modal-dialog { padding: 0.9rem; border-radius: 14px; }
  .wa-float {
    right: 12px;
    bottom: 12px;
    width: 54px;
    height: 54px;
  }
  .wa-logo {
    width: 28px;
    height: 28px;
  }
}
