:root {
  --blue: #0b183c;
  --blue-2: #22487f;
  --green: #006434;
  --green-2: #39b54a;
  --yellow: #fdc904;

  --white: #ffffff;
  --soft: #f6f8fb;
  --soft-green: #f5fbf7;
  --text: #13203a;
  --muted: #626d80;
  --border: #dfe6ef;

  --blue-gradient: linear-gradient(135deg, var(--blue), var(--blue-2));
  --green-gradient: linear-gradient(135deg, var(--green), var(--green-2));
  --shadow: 0 16px 36px rgba(11, 24, 60, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

a { color: inherit; }

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

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

.brand { display: flex; align-items: center; text-decoration: none; }

.brand-logo {
  display: block;
  width: 210px;
  max-height: 58px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 20px;
  font-size: 0.92rem;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--green); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  background: var(--green-gradient);
  color: var(--white);
  text-decoration: none;
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 24px rgba(0, 100, 52, 0.18);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 100, 52, 0.24);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 0;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
}

.hero-dots {
  position: absolute;
  top: 35px;
  right: 0;
  width: 310px;
  height: 190px;
  background-image: radial-gradient(rgba(57, 181, 74, 0.22) 2px, transparent 2px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,.12));
  -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,.12));
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 38px;
  align-items: center;
  padding-bottom: 58px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--green);
  text-transform: uppercase;
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.eyebrow-light { color: rgba(255,255,255,0.86); }

h1, h2, h3, .stamp, .step-number {
  font-family: "Fira Sans", Arial, sans-serif;
  margin-top: 0;
  line-height: 1.05;
}

h1 {
  margin-bottom: 14px;
  font-size: clamp(3.1rem, 7vw, 5.4rem);
  letter-spacing: -0.05em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin-bottom: 14px;
  letter-spacing: -0.04em;
  color: var(--blue);
  font-weight: 700;
}

h3 {
  font-size: 1.24rem;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
  color: var(--blue);
  font-weight: 600;
}

.line-blue, .block-blue { display: block; color: var(--blue); }
.line-yellow, .block-yellow { display: block; color: var(--yellow); }

.hero-text,
.section-heading p:not(.eyebrow),
.content-block p,
.card p,
.step p,
.branch p,
.highlight-card li,
.feature-item span,
.small-note,
.faq-grid p,
.panel-list span {
  color: var(--muted);
}

.hero-text {
  max-width: 660px;
  font-size: 1.08rem;
  margin-bottom: 22px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 26px;
}

.hero-tags span {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.95rem;
  color: var(--blue);
  font-weight: 600;
}

.hero-panel {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 6px;
  background: var(--yellow);
  border-radius: 0 0 12px 12px;
}

.stamp {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(253, 201, 4, 0.16);
  color: var(--blue);
  font-weight: 700;
}

.panel-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.panel-list div {
  padding-left: 16px;
  border-left: 3px solid var(--green);
}

.panel-list strong {
  display: block;
  color: var(--blue);
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 600;
}

.brand-band {
  min-height: 70px;
  padding: 22px 16px;
  background: var(--blue);
  color: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  text-transform: uppercase;
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  position: relative;
}

.brand-band::before,
.brand-band::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.brand-band::before {
  top: -12px;
  height: 6px;
  background: var(--yellow);
}

.brand-band::after {
  top: -6px;
  height: 6px;
  background: var(--green);
}

.brand-band i {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  display: inline-block;
}

.section { padding: 78px 0; }
.section-gold { background: linear-gradient(180deg, #ffffff 0%, var(--soft-green) 100%); }
.section-soft { background: var(--soft); }

.section-heading {
  max-width: 820px;
  margin-bottom: 30px;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 32px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 16px;
  margin: 24px 0 28px;
}

.feature-item {
  padding-left: 18px;
  border-left: 3px solid var(--green);
}

.feature-item strong {
  display: block;
  color: var(--blue);
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 6px solid var(--yellow);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.highlight-card ul {
  margin: 0 0 18px;
  padding-left: 18px;
}

.small-note { font-size: 0.95rem; }

.cards,
.steps,
.branches,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card,
.step,
.branch,
.faq-grid details {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 26px;
}

.card {
  min-height: 220px;
  box-shadow: 0 6px 18px rgba(11, 24, 60, 0.04);
}

.card-featured {
  border-color: rgba(253, 201, 4, 0.8);
  box-shadow: 0 12px 24px rgba(253, 201, 4, 0.10);
}

.icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  background: rgba(0, 100, 52, 0.1);
  color: var(--green);
  border-radius: 14px;
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 700;
}

.step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
}

.branch span {
  display: inline-block;
  margin-top: 8px;
  font-weight: 600;
  color: var(--green);
  line-height: 1.5;
}

.branch-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--blue);
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--yellow);
}

.branch-link:hover { color: var(--green); }

.faq-grid { align-items: start; }
.faq-grid details { min-height: 130px; }

.faq-grid summary {
  cursor: pointer;
  color: var(--blue);
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
}

.cta-section { background: var(--blue-gradient); }

.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-box h2,
.cta-box p { color: var(--white); }

.btn-cta {
  background: var(--green-gradient);
  min-width: 245px;
}

.footer {
  background: #07122f;
  color: rgba(255,255,255,.78);
  padding: 38px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}

.footer-logo {
  width: 210px;
  max-height: 58px;
  object-fit: contain;
  display: block;
  margin-bottom: 14px;
}

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

.company-note {
  color: rgba(255,255,255,.64);
  font-size: 0.92rem;
}

.footer-contact p { margin: 4px 0; }

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: none;
  background: var(--green-gradient);
  color: white;
  text-decoration: none;
  font-family: "Fira Sans", Arial, sans-serif;
  font-weight: 700;
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(0,0,0,.2);
  z-index: 70;
}

@media (max-width: 1060px) {
  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-grid,
  .split-grid,
  .cards,
  .steps,
  .branches,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .cta-box,
  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-band {
    flex-wrap: wrap;
    text-align: center;
    font-size: 0.78rem;
  }
}

@media (max-width: 640px) {
  .brand-logo { width: 185px; }
  .hero { padding-top: 42px; }

  .hero-dots {
    width: 180px;
    height: 120px;
  }

  .hero-tags { flex-direction: column; }

  .hero-tags span,
  .btn-main,
  .cta-box .btn,
  .topbar .btn-small {
    width: 100%;
  }

  .floating-whatsapp { display: inline-flex; }
  .brand-band { justify-content: flex-start; }
}
