:root {
  color-scheme: light;
  --green-900: #0f3d2e;
  --green-800: #146447;
  --green-700: #17834f;
  --green-600: #22a15a;
  --green-100: #eaf7ef;
  --ink: #102018;
  --muted: #607268;
  --line: #dfe8e3;
  --paper: #f7fbf8;
  --white: #ffffff;
  --orange: #f5a623;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.site-shell {
  min-height: 100vh;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px max(22px, calc((100vw - 1120px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(16, 32, 24, 0.06);
  box-shadow: 0 8px 24px rgba(16, 32, 24, 0.07);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: 56px;
  height: 56px;
  border-radius: 6px;
  object-fit: contain;
  background: white;
}

.brand-name {
  display: block;
  color: var(--ink);
  font-size: 1.24rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.contact-button,
.whatsapp-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--green-700);
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--green-700), var(--green-900));
  color: white;
}

.hero-inner {
  max-width: 1120px;
  min-height: 660px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 430px);
  align-items: center;
  gap: 44px;
  padding: 58px 22px 76px;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(2.5rem, 5.6vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-copy p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.22rem;
  line-height: 1.7;
}

.deposit-highlight {
  display: inline-block;
  border-radius: 6px;
  padding: 2px 8px;
  background: #fff3bf;
  color: #0f3d2e;
  font-weight: 900;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero-points span {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.hero-points span::before,
.eligibility-list span::before,
.document-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--orange);
  flex: 0 0 auto;
}

.application-card {
  display: grid;
  border-radius: 8px;
  padding: 30px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.form-content {
  display: grid;
  gap: 16px;
}

.application-card h2 {
  margin: 0 0 6px;
  font-size: 1.55rem;
  text-align: center;
}

label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

input,
select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 13px;
  background: white;
  color: var(--ink);
  font: inherit;
}

input:focus,
select:focus {
  outline: 3px solid rgba(34, 161, 90, 0.18);
  border-color: var(--green-700);
}

button {
  min-height: 52px;
  border: 0;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: white;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

button:disabled {
  cursor: progress;
  opacity: 0.72;
}

.terms,
.note,
.status {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.5;
  text-align: center;
}

.terms a {
  color: var(--green-700);
  font-weight: 700;
}

.note {
  border-radius: 7px;
  padding: 11px 12px;
  background: var(--green-100);
}

.status {
  min-height: 20px;
  color: var(--green-800);
  font-weight: 700;
}

.thank-you {
  min-height: 438px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  text-align: center;
}

.thank-you[hidden] {
  display: none;
}

.thank-you-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--green-700);
  color: white;
  font-size: 2rem;
  font-weight: 800;
}

.thank-you p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 70px 22px;
}

.section-inner.narrow {
  max-width: 860px;
  text-align: center;
}

section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.12;
  text-align: center;
}

.section-subtitle {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  text-align: center;
}

.eligibility {
  background: white;
}

.eligibility-list,
.document-list {
  display: grid;
  gap: 14px;
  margin: 34px auto 28px;
  text-align: left;
}

.eligibility-list span,
.document-list span {
  display: flex;
  align-items: center;
  min-height: 52px;
  border-radius: 8px;
  padding: 14px 18px;
  background: var(--paper);
  color: var(--ink);
  font-weight: 700;
}

.whatsapp-button {
  min-height: 50px;
  padding: 0 28px;
}

.why {
  background: var(--paper);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.feature-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 22px;
  background: white;
  box-shadow: 0 12px 28px rgba(16, 32, 24, 0.06);
}

.feature-grid h3,
.step-grid h3 {
  margin: 0;
  font-size: 1.15rem;
}

.feature-grid p,
.step-grid p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.steps {
  background: white;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 36px;
}

.step-grid article {
  text-align: center;
}

.step-grid span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: var(--green-700);
  color: white;
  font-size: 1.4rem;
  font-weight: 800;
}

.documents {
  background: var(--green-100);
}

footer {
  display: grid;
  gap: 12px;
  justify-items: center;
  padding: 38px 22px;
  background: var(--green-900);
  color: white;
  text-align: center;
}

footer p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

footer .brand-logo {
  width: 64px;
  height: 64px;
}

.social-proof {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: min(390px, calc(100vw - 36px));
  border: 1px solid rgba(16, 32, 24, 0.08);
  border-radius: 8px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: 0 18px 48px rgba(16, 32, 24, 0.18);
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.social-proof.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.social-proof-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green-700);
  box-shadow: 0 0 0 6px rgba(34, 161, 90, 0.14);
}

.social-proof p {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
}

@media (max-width: 860px) {
  .topbar {
    position: static;
    padding: 15px 18px;
  }

  .contact-button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 24px;
    padding: 34px 18px 48px;
  }

  .hero-copy h1 {
    font-size: 2.35rem;
  }

  .hero-copy p {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .hero-points {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-points span {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.9rem;
  }

  .application-card {
    padding: 22px;
  }

  .feature-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .section-inner {
    padding: 54px 18px;
  }

  .social-proof {
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: auto;
    padding: 12px 13px;
  }

  .social-proof p {
    font-size: 0.82rem;
  }
}

@media (max-width: 460px) {
  .topbar {
    gap: 8px;
    padding: 12px 10px;
  }

  .brand {
    gap: 8px;
    min-width: 0;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .contact-button {
    min-height: 36px;
    padding: 0 10px;
    font-size: 0.82rem;
    white-space: nowrap;
  }

  .hero-copy h1 {
    font-size: 1.62rem;
    line-height: 1.08;
  }

  .hero-copy p {
    margin-top: 12px;
    font-size: 0.84rem;
    line-height: 1.45;
  }

  .hero-inner {
    gap: 14px;
    padding-top: 16px;
    padding-bottom: 28px;
  }

  .hero-points {
    display: none;
  }
}
