@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;500;600;700&family=Open+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
  --white:     #ffffff;
  --cream:     #fafaf8;
  --green:     #10b981;
  --green-dark:#059669;
  --green-light:#34d399;
  --charcoal:  #1f2937;
  --gray:      #6b7280;
  --gray-light:#d1d5db;
  --border:    #e5e7eb;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 17px;
  line-height: 1.7;
}
h1,h2,h3,h4 { font-family: 'Lora', serif; line-height: 1.3; color: var(--charcoal); }
a { text-decoration: none; color: inherit; }

/* TOPNAV */
.topnav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.topnav-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-icon {
  width: 42px;
  height: 42px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.brand-text {
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--charcoal);
}
.brand-text span { color: var(--green); }
.navigation { display: flex; gap: 2.5rem; }
.navigation a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--gray);
  transition: color 0.2s;
}
.navigation a:hover, .navigation a.active { color: var(--green); }
.top-cta {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 24px;
  border-radius: 6px;
  transition: background 0.2s;
}
.top-cta:hover { background: var(--green-dark); }

/* HERO */
.hero {
  background: var(--white);
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}
.hero-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: #ecfdf5;
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 1.75rem;
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}
.hero-description {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-offer {
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  display: inline-block;
}
.hero-offer-title {
  font-family: 'Lora', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.5rem;
}
.hero-offer-text { font-size: 0.95rem; color: var(--gray); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.btn-main {
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 1.05rem;
  padding: 16px 36px;
  border-radius: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(16,185,129,0.2);
}
.btn-main:hover { background: var(--green-dark); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--border);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 8px;
  transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--green); color: var(--green); }

/* TRUST BAR */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 2rem;
}
.trust-items {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 2rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray);
}
.trust-icon { color: var(--green); font-size: 1.2rem; }

/* SECTION */
.section { padding: 5rem 2rem; }
.section-wrap { max-width: 1140px; margin: 0 auto; }
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 4rem;
}
.section-eyebrow {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--green);
  margin-bottom: 1rem;
}
.section-heading {
  font-family: 'Lora', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.section-intro { font-size: 1.15rem; color: var(--gray); }

/* FEATURE CARDS */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  transition: all 0.3s;
}
.feature-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); transform: translateY(-4px); }
.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}
.feature-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-card p { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }

/* TWO-COL */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.col-content h2 { font-size: 2.2rem; margin-bottom: 1.25rem; }
.col-content p { color: var(--gray); margin-bottom: 1.5rem; font-size: 1.05rem; }
.col-list { list-style: none; margin: 1.5rem 0; }
.col-list li {
  padding: 1rem 0;
  padding-left: 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.col-list li:last-child { border: none; }
.col-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1rem;
  width: 28px;
  height: 28px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.col-visual {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* CTA BLOCK */
.cta-block {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  border-radius: 16px;
  padding: 4rem 3rem;
  text-align: center;
  margin-top: 4rem;
}
.cta-block h2 { color: var(--white); font-size: 2.5rem; margin-bottom: 1.25rem; }
.cta-block p { font-size: 1.15rem; opacity: 0.9; margin-bottom: 2.5rem; }
.cta-block .btn-main { background: var(--white); color: var(--green); }
.cta-block .btn-main:hover { background: var(--cream); }

/* FOOTER */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.8);
  padding: 4rem 2rem 2.5rem;
}
.footer-wrap { max-width: 1140px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-about p { font-size: 0.95rem; margin-top: 1.25rem; line-height: 1.7; }
.footer-section h4 {
  font-family: 'Lora', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.75rem; }
.footer-section ul li a { font-size: 0.9rem; transition: color 0.2s; }
.footer-section ul li a:hover { color: var(--green-light); }
.footer-legal {
  padding-top: 2.5rem;
  font-size: 0.85rem;
  text-align: center;
  opacity: 0.6;
}

/* PAGE TITLE */
.page-title {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
  text-align: center;
}
.page-title h1 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.page-title p { font-size: 1.15rem; color: var(--gray); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navigation { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 3.5rem 1.5rem; }
  .section { padding: 3.5rem 1.5rem; }
}
