: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: 48px;
  height: 48px;
  border-radius: 6px;
  object-fit: contain;
  background: white;
}

.brand-name {
  display: block;
  color: var(--ink);
  font-size: 1rem;
  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:
    linear-gradient(135deg, #1b7a4c 0%, #0f3d2e 58%, #0b2c25 100%);
  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;
}

.eyebrow {
  display: inline-flex;
  margin: 0 0 16px;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255, 255, 255, 0.16);
  color: #eefbf3;
  font-size: 0.9rem;
  font-weight: 800;
}

.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: var(--green-900);
  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;
  border: 1px solid rgba(16, 32, 24, 0.08);
  padding: 28px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

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

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

.mobile-form-promo {
  display: none;
}

.form-intro {
  margin: 0 0 4px;
  border-radius: 7px;
  padding: 8px 12px;
  background: var(--green-100);
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.45;
  text-align: center;
}

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

input,
select {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  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: 50px;
  border: 0;
  border-radius: 6px;
  background: var(--green-700);
  color: white;
  font: inherit;
  font-size: 1rem;
  font-weight: 800;
  cursor: pointer;
}

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

.field-reassurance {
  margin: -5px 0 1px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

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

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

.note {
  border-radius: 7px;
  padding: 10px 12px;
  background: #f0f6f3;
}

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

.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(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

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

.feature-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

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

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

.step-grid h3,
.step-grid p {
  margin-left: 0;
  margin-right: 0;
}

.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;
  left: 22px;
  bottom: 98px;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  width: min(360px, 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;
}

.sticky-whatsapp {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 31;
  display: inline-grid;
  place-items: center;
  gap: 2px;
  width: 58px;
  height: 58px;
  min-width: 0;
  border-radius: 8px;
  padding: 0;
  background: #ffffff;
  color: #073f22;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(16, 32, 24, 0.2);
}

.sticky-whatsapp span {
  display: none;
}

.sticky-whatsapp img {
  display: block;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.sticky-whatsapp strong {
  display: none;
}

@media (max-width: 860px) {
  body {
    padding-bottom: 64px;
  }

  .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: 18px;
    padding: 18px 18px 44px;
  }

  .application-card {
    order: -1;
    padding: 16px;
  }

  .mobile-form-promo {
    display: grid;
    gap: 3px;
    border-radius: 7px;
    padding: 7px 10px;
    background: #f4fbf7;
    color: var(--green-900);
    text-align: center;
  }

  .mobile-form-promo strong {
    font-size: 0.88rem;
    line-height: 1.12;
  }

  .mobile-form-promo span {
    color: var(--green-800);
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.25;
  }

  .mobile-form-promo mark {
    border-radius: 5px;
    padding: 1px 5px;
    background: #fff3bf;
    color: var(--green-900);
    font-weight: 900;
  }

  .form-content {
    gap: 7px;
  }

  .application-card h2 {
    display: none;
  }

  .form-intro {
    margin-bottom: 1px;
    padding: 6px 9px;
    font-size: 0.74rem;
    line-height: 1.32;
  }

  label {
    gap: 5px;
    font-size: 0.76rem;
  }

  input,
  select {
    min-height: 36px;
    border-radius: 6px;
    font-size: 0.84rem;
  }

  button {
    min-height: 42px;
    font-size: 0.9rem;
  }

  .field-reassurance {
    margin: -4px 0 0;
    font-size: 0.7rem;
    line-height: 1.3;
  }

  .terms,
  .note,
  .status {
    font-size: 0.68rem;
    line-height: 1.32;
  }

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

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

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

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

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

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

  .sticky-whatsapp {
    left: auto;
    right: 14px;
    bottom: 14px;
    display: grid;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 58px;
    min-width: 0;
    border-radius: 50%;
    padding: 0;
    text-align: center;
  }

  .social-proof {
    left: 14px;
    right: auto;
    bottom: 14px;
    width: min(275px, calc(100vw - 28px));
    gap: 10px;
    padding: 11px 12px;
  }

  .social-proof p {
    font-size: 0.78rem;
    line-height: 1.35;
  }
}

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

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

  .brand-name {
    max-width: 132px;
    font-size: 0.78rem;
    white-space: normal;
  }

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

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

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

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

  .hero-inner {
    gap: 12px;
    padding-top: 10px;
    padding-bottom: 28px;
  }

  .hero-points {
    display: none;
  }
}
