:root {
  --navy: #0a1628;
  --navy-2: #12233a;
  --ink: #142033;
  --muted: #5b6b7c;
  --line: rgba(20, 32, 51, 0.12);
  --paper: #f5f8fc;
  --white: #ffffff;
  --cyan: #0ea5e9;
  --cyan-deep: #0369a1;
  --cyan-soft: rgba(14, 165, 233, 0.12);
  --amber: #d97706;
  --radius: 14px;
  --shadow: 0 18px 50px rgba(10, 22, 40, 0.08);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --max: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan-deep); text-decoration: none; }
a:hover { color: var(--cyan); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
  color: var(--navy);
}
p { margin: 0 0 1rem; color: var(--muted); }
ul { margin: 0; padding-left: 1.2rem; color: var(--muted); }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(245, 248, 252, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 68px;
  flex-wrap: nowrap;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
  white-space: nowrap;
  line-height: 1.1;
}
.brand svg { flex-shrink: 0; color: var(--cyan); }
.brand .brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
}
.brand .brand-text strong {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.brand .brand-text small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.nav-links {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 0.15rem;
  list-style: none;
  padding: 0 !important;
  margin: 0 !important;
  flex: 1 1 auto;
  min-width: 0;
}
.nav-links > li {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li > a,
.nav-links .nav-drop-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
  padding: 0.45rem 0.65rem;
  border-radius: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}
.nav-links > li > a:hover,
.nav-links > li > a.active,
.nav-links .nav-drop-btn:hover,
.nav-links .nav-drop.open .nav-drop-btn {
  color: var(--cyan-deep);
  background: var(--cyan-soft);
}
.nav-drop-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 0.4rem;
  z-index: 60;
  list-style: none;
  margin: 0;
}
.nav-drop.open .nav-drop-menu { display: block; }
.nav-drop-menu a {
  display: block;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.nav-drop-menu a:hover { background: var(--paper); color: var(--cyan-deep); }
.nav-cta {
  display: none;
  gap: 0.45rem;
  align-items: center;
  flex: 0 0 auto;
}
.nav-cta .btn {
  padding: 0.55rem 0.9rem;
  font-size: 0.85rem;
  white-space: nowrap;
}
.menu-btn {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 10px;
  padding: 0.55rem 0.75rem;
  cursor: pointer;
  font: inherit;
  flex: 0 0 auto;
  margin-left: auto;
}
.mobile-panel {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 0.5rem 0 1.25rem;
}
.mobile-panel.open { display: block; }
.mobile-panel a {
  display: block;
  padding: 0.75rem 0;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-panel .mobile-group {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 1rem 0 0.35rem;
}
@media (min-width: 1100px) {
  .nav-links, .nav-cta { display: flex; }
  .menu-btn, .mobile-panel { display: none !important; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.85rem 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  transition: 0.2s ease;
  cursor: pointer;
  text-align: center;
}
.btn-primary {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(14, 165, 233, 0.28);
}
.btn-primary:hover { background: var(--cyan-deep); color: var(--white); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: rgba(10, 22, 40, 0.18);
}
.btn-secondary:hover { border-color: var(--cyan); color: var(--cyan-deep); }
.btn-dark {
  background: var(--navy);
  color: var(--white);
}
.btn-dark:hover { background: var(--navy-2); color: var(--white); }
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(14, 165, 233, 0.16), transparent 34%),
    linear-gradient(180deg, #eef5fb 0%, var(--paper) 70%);
}
.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 3rem; }
  .hero { padding: 4.5rem 0 5rem; min-height: calc(100dvh - 72px); display: flex; align-items: center; }
}
.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 1rem;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  max-width: 14ch;
  margin-bottom: 1rem;
}
.hero .lede {
  font-size: 1.12rem;
  max-width: 38ch;
  color: var(--muted);
}
.hero-panel {
  background: var(--navy);
  color: #dbe7f3;
  border-radius: 24px;
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -40% 20%;
  height: 180px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.35), transparent 65%);
}
.hero-panel h2 {
  color: #fff;
  font-size: 1.25rem;
  position: relative;
}
.hero-panel p { color: #a9bdd0; position: relative; }
.hero-panel ul { position: relative; color: #c5d5e5; margin-top: 1rem; }
.hero-panel li { margin-bottom: 0.45rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }
.section-dark {
  background: var(--navy);
  color: #dbe7f3;
}
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark p, .section-dark li { color: #a9bdd0; }
.section-white { background: var(--white); }
.section-head {
  max-width: 640px;
  margin-bottom: 2rem;
}
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
.label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 0.75rem;
}

.grid-2, .grid-3, .grid-4 {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 760px) {
  .grid-2 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
  box-shadow: 0 1px 0 rgba(255,255,255,0.6);
}
.card h3 { font-size: 1.2rem; }
.card .meta {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-deep);
  margin-bottom: 0.5rem;
}
.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.6rem;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.offer-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14, 165, 233, 0.4);
}
.offer-card .tag {
  align-self: flex-start;
  background: var(--cyan-soft);
  color: var(--cyan-deep);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.offer-card .grow { flex: 1; }
.offer-card .btn { margin-top: 1.25rem; width: 100%; }

.trust-strip {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
}
.trust-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 1.1rem;
}
.trust-item strong {
  display: block;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1.1rem;
}
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: 0.5rem;
}

.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  margin-bottom: 0.75rem;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}
.faq details p { margin: 0.75rem 0 0; }

.logo-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 700px) { .logo-wall { grid-template-columns: repeat(4, 1fr); } }
.logo-slot {
  min-height: 84px;
  border: 1px dashed rgba(20, 32, 51, 0.18);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #fafcfe;
  color: var(--muted);
  font-size: 0.85rem;
  text-align: center;
  padding: 0.75rem;
}

.cta-band {
  background: linear-gradient(135deg, var(--navy), #163456 55%, #0c4a6e);
  color: #fff;
  border-radius: 24px;
  padding: 2rem;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #c5d5e5; }

.page-hero {
  padding: 3rem 0 2rem;
  background: linear-gradient(180deg, #eef5fb, var(--paper));
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); max-width: 18ch; }
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.breadcrumbs a { color: var(--muted); }

.split {
  display: grid;
  gap: 2rem;
}
@media (min-width: 860px) {
  .split { grid-template-columns: 1.2fr 0.8fr; align-items: start; }
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.4rem;
  position: sticky;
  top: 92px;
}
.contact-card a.line {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.contact-card a.line:last-child { border-bottom: 0; }

form .field { margin-bottom: 1rem; }
form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--navy);
}
form input, form select, form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
form input:focus, form select:focus, form textarea:focus {
  outline: 2px solid rgba(14, 165, 233, 0.25);
  border-color: var(--cyan);
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.form-note { font-size: 0.85rem; color: var(--muted); }
.form-status {
  margin-top: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
}
.form-status.ok { color: #15803d; }
.form-status.err { color: #b91c1c; }
.form-success {
  text-align: center;
  padding: 2rem 1.5rem;
}
.form-success[hidden] { display: none !important; }
.form-success-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(21, 128, 61, 0.12);
  color: #15803d;
  font-size: 1.75rem;
  font-weight: 700;
}
.form-success .btn-row { justify-content: center; }

.site-footer {
  background: var(--navy);
  color: #a9bdd0;
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.site-footer a { color: #dbe7f3; }
.site-footer a:hover { color: var(--cyan); }
.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.5fr repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 1100px) {
  .footer-grid { grid-template-columns: 1.6fr repeat(4, minmax(0, 1fr)); }
}
.site-footer h4 {
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}
.site-footer ul { list-style: none; padding: 0; }
.site-footer li { margin-bottom: 0.45rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  font-size: 0.85rem;
}

.float-contact {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.float-contact a {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: var(--shadow);
}
.float-contact .wa { background: #128c7e; }
.float-contact .call { background: var(--navy); }

.media-frame {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #e8eef5;
  aspect-ratio: 16/10;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }

.check-list { list-style: none; padding: 0; }
.check-list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.55rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--cyan);
}

.footer-legal-name {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.75rem;
}
.site-footer p { color: #a9bdd0; }
.site-footer .footer-bottom a { color: #dbe7f3; }
