/* ===== BASE SETUP ===== */
:root {
  --green: #0bb783;
  --green-dark: #099e6b;
  --background-light: #fefefa;
  --text-dark: #1b1e21;
  --text-muted: #6c757d;
  --font-main: 'Urbanist', 'Inter', sans-serif;
}

body {
  font-family: var(--font-main);
  margin: 0;
  padding: 0;
  background-color: var(--background-light);
  color: var(--text-dark);
  scroll-behavior: smooth;
}

/* ===== CONTAINER ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== HEADER ===== */
.header {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.logo-title {
  font-size: 18px;
  font-weight: 600;
}

.navbar .nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  font-size: 16px;
  transition: all 0.25s ease-in-out;
}

.navbar a:hover {
  color: var(--green);
}

.store-badge img {
  height: 36px;
  transition: transform 0.2s ease;
}

.store-badge img:hover {
  transform: scale(1.05);
}

/* ===== HERO SECTION ===== */
.hero-section {
  background: linear-gradient(135deg, #f0fff4 0%, #fffde7 100%);
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
}

.hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  background-color: var(--green);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(11, 183, 131, 0.15);
}

.cta-button:hover {
  background-color: var(--green-dark);
  transform: translateY(-1px);
}

.hero-image img {
  width: 100%;
  max-width: 380px;
  display: block;
  margin: 0 auto;
}
/* ===== LOAN ESTIMATOR SECTION ===== */
.loan-estimator {
  background: #f8fff9;
  padding: 80px 20px;
  text-align: center;
}

.loan-estimator .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.loan-estimator .section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.amount-question {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
}

/* Loan amount buttons */
.loan-amount-options {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.amount-button {
  background: #fff;
  border: 2px solid #e0f3eb;
  color: var(--text-dark);
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
}

.amount-button:hover {
  border-color: var(--green);
  background: #eafff2;
}

.amount-button.selected {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}

/* Estimate card */
.estimate-box {
  background: #ffffff;
  max-width: 400px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  text-align: left;
  font-size: 16px;
}

.estimate-box p {
  margin-bottom: 14px;
  color: var(--text-dark);
}

.estimate-box .value {
  font-weight: 600;
  color: var(--green-dark);
}

/* Disclaimer */
.disclaimer {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
/* ===== STEPS SECTION ===== */
.steps-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.steps-section .section-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.steps-section .section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
}

/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

/* Individual Step */
.step-block {
  background: #f6fff9;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(11, 183, 131, 0.04);
  text-align: left;
  transition: all 0.3s ease;
}

.step-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(11, 183, 131, 0.08);
}

.step-image img {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.step-text h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--green-dark);
}

.step-text .step-number {
  background: var(--green);
  color: #fff;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  text-align: center;
  line-height: 24px;
  margin-right: 8px;
}

.step-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
/* ===== WHY CHOOSE US ===== */
.why-choose-section {
  background: #f5fff7;
  padding: 80px 20px;
}

.why-choose-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 12px;
}

.why-choose-section .section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 48px;
  line-height: 1.6;
}

/* Grid layout */
.choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.choose-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.choose-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 20px;
}

.choose-features li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.choose-features img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.choose-features strong {
  font-size: 16px;
  color: var(--text-dark);
}

.choose-features p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Illustration */
.choose-image img {
  width: 100%;
  max-width: 420px;
  display: block;
  margin: 0 auto;
}
/* ===== CTA PROMO SECTION ===== */
.cta-promo-section {
  background: linear-gradient(90deg, #ecfff5 0%, #fffde7 100%);
  padding: 60px 20px;
}

.cta-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-text {
  flex: 1 1 300px;
}

.cta-line {
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.cta-subline {
  font-size: 16px;
  color: var(--text-muted);
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: #ffffff;
  padding: 80px 20px;
  text-align: center;
}

.stats-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.stats-section .section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 48px;
  line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-block {
  background: #f6fff9;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.stat-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.stat-block h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 8px;
}

.stat-block p {
  font-size: 15px;
  color: var(--text-muted);
}
/* ===== ELIGIBILITY SECTION ===== */
.eligibility-section {
  background: #f9fff6;
  padding: 80px 20px;
  text-align: center;
}

.eligibility-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.eligibility-section .section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.eligibility-intro {
  font-size: 20px;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 40px;
}

/* Eligibility Grid */
.eligibility-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 40px;
}

/* Eligibility Lists */
.eligibility-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.eligibility-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  text-align: left;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.eligibility-list img {
  width: 24px;
  height: 24px;
  margin-top: 4px;
  flex-shrink: 0;
}

.eligibility-list strong {
  font-size: 16px;
  color: var(--text-dark);
}

.eligibility-list p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Center illustration */
.eligibility-illustration img {
  max-width: 200px;
  width: 100%;
  display: block;
  margin: 0 auto;
}

/* CTA under list */
.eligibility-cta {
  margin-top: 20px;
}

.eligibility-cta .cta-button {
  padding: 12px 32px;
  font-size: 16px;
}
@media (max-width: 900px) {
  .eligibility-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: left;
  }

  .eligibility-illustration {
    display: none;
  }
}
/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
  background: #f6fdf9;
  padding: 80px 20px;
  text-align: center;
}

.testimonials-section .section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 48px;
}

/* Grid of testimonial cards */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Individual card */
.testimonial-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* User info under quote */
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.testimonial-meta img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.testimonial-meta strong {
  font-size: 15px;
  color: var(--text-dark);
  display: block;
}

.testimonial-meta span {
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-block {
    align-items: center;
  }

  .footer-block a {
    margin-bottom: 6px;
  }

  .footer-disclaimer {
    text-align: left;
    padding: 24px;
  }
}
.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.footer-btn {
  display: inline-block;
  padding: 10px 18px;
  background-color: #0052cc;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  width: fit-content;
}

.footer-btn:hover {
  background-color: #003f99;
}
.footer-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px 20px;
  margin-top: 12px;
  max-width: 460px;
}

.footer-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 16px;
  background-color: #0052cc;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.footer-btn:hover {
  background-color: #003f99;
}

/* Центровка нижнего блока */
.footer-disclaimer,
.footer-bottom {
  max-width: 960px;
  margin: 30px auto 10px;
  text-align: center;
  font-size: 1.05em;
  line-height: 1.6;
  padding: 0 20px;
}
.footer-legal-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin-top: 16px;
  max-width: 100%;
}

.footer-legal-row h4 {
  margin: 0;
  flex-shrink: 0;
}

.footer-buttons-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
}

.footer-btn {
  display: inline-block;
  text-align: center;
  padding: 10px 16px;
  background-color: #0052cc;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.footer-btn:hover {
  background-color: #003f99;
}
.centered-content {
  display: flex;
  justify-content: center;
  padding: 2em;
}

.fact-block {
  max-width: 800px;
  text-align: left;
  line-height: 1.6;
}

.centered-content h2 {
  text-align: center;
  margin-bottom: 1.5em;
}
.page-container {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
  color: #111;
  line-height: 1.6;
}
@media (max-width: 600px) {
  .page-container {
    padding: 20px 15px;
    font-size: 15px;
  }
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.footer-grid a {
  text-decoration: none;
  color: #1d1d1f;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
}

.footer-grid a:hover {
  color: #0070f3;
}
.faq-section {
  margin-top: 60px;
}

.faq-section h2 {
  text-align: center;
  margin-bottom: 1em;
  font-size: 24px;
}

.faq-intro {
  text-align: center;
  font-size: 16px;
  margin-bottom: 2em;
}

.faq-item {
  margin-bottom: 30px;
}

.faq-item h3 {
  font-size: 18px;
  margin-bottom: 0.5em;
  color: #222;
}

.faq-item ul {
  padding-left: 20px;
  list-style: disc;
}

.faq-item a {
  color: #0056b3;
  text-decoration: underline;
}
.faq-section {
  margin-top: 60px;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 1em;
  font-weight: bold;
}

.faq-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px auto;
  font-size: 16px;
  color: #555;
}

.faq-item {
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-question {
  font-weight: 600;
  font-size: 18px;
  color: #333;
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 15px;
  color: #444;
}

.faq-answer ul {
  padding-left: 20px;
  margin: 10px 0;
}

.faq-answer a {
  color: #0077cc;
  text-decoration: underline;
}

@media (max-width: 600px) {
  .faq-question {
    font-size: 16px;
  }
  .faq-answer {
    font-size: 14px;
  }
}

