:root {
  --ink: #102033;
  --muted: #5c6877;
  --line: #dce3ea;
  --soft: #f4f7f9;
  --soft-2: #eef4f6;
  --white: #ffffff;
  --navy: #0c2742;
  --blue: #1d5f8f;
  --teal: #0c9a95;
  --green: #3d7a57;
  --gold: #c8982e;
  --shadow: 0 18px 45px rgba(12, 39, 66, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(220, 227, 234, 0.75);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 330px;
}

.brand img {
  width: 76px;
  height: 76px;
  border-radius: 6px;
  object-fit: contain;
}

.brand-name {
  max-width: 260px;
  color: #39485a;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.12;
}

.brand-sub {
  display: block;
  color: #39485a;
  font-size: 20px;
  font-weight: 900;
}

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  color: #25384c;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

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

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-size: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.15;
  text-align: center;
  cursor: pointer;
}

.button.primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 10px 24px rgba(12, 154, 149, 0.18);
}

.button.secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button.dark {
  color: var(--white);
  background: var(--navy);
}

.button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f1f7f8 0%, #ffffff 48%, #f5f7fa 100%);
}

.hero-inner,
.section-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero-inner {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 48px;
  padding: 64px 0 50px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

h1 {
  max-width: 820px;
  font-size: clamp(36px, 5vw, 64px);
}

.hero h1 {
  font-size: clamp(34px, 4.4vw, 58px);
}

h2 {
  max-width: 820px;
  font-size: clamp(28px, 3.1vw, 42px);
}

h3 {
  font-size: 21px;
}

p {
  margin: 0;
}

.lead {
  max-width: 760px;
  margin-top: 18px;
  color: #34495e;
  font-size: 18px;
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
  align-items: center;
}

.page-hero .hero-actions {
  justify-content: center;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.page-hero .trust-row {
  justify-content: center;
}

.pill {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--line);
  color: #2f4052;
  font-size: 14px;
  font-weight: 800;
}

.hero-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.hero-card-body {
  padding: 22px;
}

.hero-card-body strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.hero-card-body span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

section {
  padding: 72px 0;
}

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

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-dark .lead,
.section-dark p,
.section-dark li {
  color: rgba(255, 255, 255, 0.82);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  gap: 16px;
}

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

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(12, 39, 66, 0.05);
}

.card p {
  margin-top: 12px;
  color: var(--muted);
}

.card .button {
  margin-top: 20px;
}

.section-dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.16);
}

.section-dark .card p {
  color: rgba(255, 255, 255, 0.78);
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
}

.steps {
  counter-reset: step;
}

.step {
  position: relative;
  padding-left: 68px;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 22px;
  top: 26px;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--blue);
  font-weight: 900;
}

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

.contact-panel {
  padding: 26px;
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-panel h3 {
  margin-bottom: 14px;
}

.contact-info-stack {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.info-box {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(12, 39, 66, 0.04);
}

.info-box h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.info-box p {
  color: var(--muted);
}

.form {
  display: grid;
  gap: 12px;
}

.form label {
  display: grid;
  gap: 6px;
  color: #31465b;
  font-size: 14px;
  font-weight: 800;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.form textarea {
  min-height: 132px;
  resize: vertical;
}

.small {
  color: var(--muted);
  font-size: 14px;
}

.contact-detail {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.contact-detail a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 48px 0;
  color: rgba(255, 255, 255, 0.78);
  background: #081a2a;
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 30px;
}

.site-footer strong {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  box-shadow: var(--shadow);
}

.page-hero {
  background: linear-gradient(135deg, #edf5f6 0%, #ffffff 55%, #f3f6fa 100%);
}

.page-hero .hero-inner {
  min-height: 390px;
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(34px, 4.3vw, 56px);
}

.page-hero .lead {
  max-width: 860px;
}

.faq details {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.faq p {
  max-width: 850px;
  margin-top: 12px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .nav {
    min-height: 72px;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 72px;
    display: none;
    padding: 16px 22px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    text-align: center;
    font-size: 16px;
    box-shadow: 0 16px 30px rgba(12, 39, 66, 0.08);
    justify-content: center;
  }

  .nav-links.open {
    display: grid;
    justify-items: center;
    justify-content: center;
    gap: 6px;
  }

  .nav-links a {
    padding: 8px 0;
  }

  .nav-links .button {
    display: none;
  }

  .hero-inner,
  .section-head,
  .split,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 46px 0 38px;
  }

  .grid.two,
  .grid.three {
    grid-template-columns: 1fr;
  }

  section {
    padding: 52px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 64px;
    height: 64px;
  }

  .brand-name {
    font-size: 16px;
  }
}

@media (max-width: 560px) {
  .brand {
    min-width: 0;
  }

  .brand-sub {
    display: none;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand-name {
    max-width: 190px;
    font-size: 15px;
  }

  .button {
    width: 100%;
  }

  .nav-links .button {
    display: none;
  }

  h1 {
    font-size: clamp(32px, 10vw, 42px);
  }

  h2 {
    font-size: clamp(25px, 8vw, 34px);
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: clamp(29px, 8vw, 38px);
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .actions {
    width: 100%;
  }

  .whatsapp-float {
    left: auto;
    right: 14px;
    bottom: 14px;
    width: auto;
    min-width: 0;
    min-height: 48px;
    padding: 12px 14px;
    border-radius: 999px;
    font-size: 14px;
    box-shadow: 0 10px 26px rgba(12, 39, 66, 0.2);
  }
}
