@font-face {
  font-family: "Space Grotesk";
  src: url(../fonts/SpaceGrotesk-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #2E7D32;
  --primary-dark: #1B5E20;
  --accent: #FF8F00;
  --bg: #EDF2F7;
  --surface: rgba(255,255,255,0.75);
  --text: #1A202C;
  --muted: #4A5568;
  --white: #FFFFFF;
  --radius: 12px;
  --font-main: 'Inter', -apple-system, sans-serif;
  --font-heading: 'Space Grotesk', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.04);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

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

/* helpers */
.glass-card {
  background: var(--surface);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.6);
}

.section-tag {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 8px;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
  cursor: pointer;
  text-align: center;
  outline: none;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, #2E7D32 0%, #1B5E20 100%);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(46,125,50,0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(46,125,50,0.4);
}

/* header */
.header-acrylic {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

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

.logo img {
  border-radius: 50%;
}

.logo span {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--primary-dark);
  line-height: 1.2;
}

.header-notice {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: right;
  max-width: 260px;
}

/* layout */
main {
  flex: 1;
}

section {
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto 40px;
  width: 100%;
}

section:last-of-type {
  margin-bottom: 0;
}

h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  margin-bottom: 30px;
  color: var(--text);
}

/* hero */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  background: linear-gradient(135deg, #f0f7f0 0%, #e8f5e9 100%);
  border-radius: 28px;
  padding: 36px;
  margin-top: 20px;
}

.hero-content .overline {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 2.6rem);
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

/* features */
.features {
  text-align: center;
}

.features h2 {
  margin-bottom: 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.feature-card {
  padding: 28px 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: linear-gradient(135deg, #E8F5E9, #C8E6C9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* steps */
.steps {
  background: var(--white);
  border-radius: 28px;
  padding: 40px 30px;
}

.steps h2 {
  text-align: center;
  margin-bottom: 36px;
}

.steps-timeline {
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), #A5D6A7);
}

.step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  position: relative;
}

.step:last-child {
  margin-bottom: 0;
}

.step-marker {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.3rem;
  z-index: 2;
  flex-shrink: 0;
}

.step-card {
  flex: 1;
  padding: 20px;
}

.step-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 6px;
}

.step-card p {
  color: var(--muted);
}

/* promise */
.promise {
  background: linear-gradient(120deg, #E8F5E9 0%, #F1F8E9 100%);
  border-radius: 28px;
  padding: 40px 30px;
}

.promise-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.promise-text {
  flex: 1;
}

.promise-text h2 {
  margin-bottom: 20px;
}

.checklist {
  list-style: none;
}

.checklist li {
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
  font-weight: 500;
  color: var(--text);
}

.checklist li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  font-size: 1.1rem;
}

.promise-image img {
  max-width: 260px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 1/1;
}

/* finance */
.finance {
  text-align: center;
}

.finance-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.finance-card {
  padding: 30px 20px;
  text-align: center;
}

.finance-card i {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 12px;
}

.finance-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.finance-card p {
  color: var(--muted);
}

/* testimonials */
.testimonials {
  background: var(--white);
  border-radius: 28px;
  padding: 40px 30px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 30px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  padding: 24px;
  position: relative;
}

.quote-icon {
  font-size: 3rem;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 10px;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 14px;
  color: var(--text);
}

.testimonial-card footer {
  font-size: 0.9rem;
  color: var(--muted);
}

/* contact faq */
.contact-faq-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

.accordion details {
  margin-bottom: 6px;
}

.accordion summary {
  padding: 14px 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--radius);
  transition: background 0.2s;
}

.accordion summary:hover {
  background: rgba(46,125,50,0.05);
}

.accordion summary::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: transform 0.2s;
}

details[open] summary::after {
  transform: rotate(180deg);
}

.answer {
  padding: 0 18px 16px;
}

.answer p {
  color: var(--muted);
  font-size: 0.95rem;
}

.form-column form {
  padding: 28px;
}

.form-row {
  margin-bottom: 16px;
}

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  transition: border 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.checkbox-group {
  margin: 18px 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
}

.checkbox-label input {
  margin-top: 3px;
}

/* footer */
.footer-dark {
  margin-top: auto;
  background: linear-gradient(135deg, #1A2E1A, #1B3A1B);
  color: rgba(255,255,255,0.9);
  padding: 40px 20px 30px;
  font-size: 0.9rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.footer-logo a {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-logo img {
  border-radius: 50%;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: white;
}

.footer-contact p {
  margin-bottom: 4px;
  opacity: 0.85;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-legal a {
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-disclaimer {
  grid-column: span 3;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 20px;
}

.footer-disclaimer h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: white;
}

.footer-disclaimer p {
  opacity: 0.8;
  line-height: 1.6;
}

.footer-copyright {
  grid-column: span 3;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 15px;
  opacity: 0.6;
  font-size: 0.85rem;
}

/* legal document pages */
.legal-page {
  padding: 0 20px 60px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  color: var(--text);
}

.legal-content h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 10px;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 40px;
}

.legal-content h3 {
  font-size: 1.4rem;
  margin-top: 30px;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 1.5rem;
}

.legal-content li {
  margin-bottom: 0.5rem;
}

/* thanks page */
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.thanks-box {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 24px;
  padding: 40px 30px;
  text-align: center;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.7);
}

.thanks-box img {
  width: 50px;
  height: 50px;
  margin: 0 auto 20px;
}

.thanks-box h2 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  margin-bottom: 14px;
}

.thanks-box p {
  margin-bottom: 12px;
  color: var(--muted);
}

/* responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-image {
    order: -1;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .promise-inner {
    flex-direction: column;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .contact-faq-container {
    grid-template-columns: 1fr;
  }
  .finance-options {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-disclaimer,
  .footer-copyright {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  section {
    padding: 32px 16px;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .header-inner {
    flex-direction: column;
    gap: 6px;
  }
  .header-notice {
    text-align: center;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .footer-disclaimer,
  .footer-copyright {
    grid-column: span 1;
  }
}