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

:root {
  --green-900: #14532d;
  --green-800: #166534;
  --green-700: #15803d;
  --green-600: #16a34a;
  --green-500: #22c55e;
  --green-400: #4ade80;
  --green-100: #dcfce7;
  --green-50: #f0fdf4;
  --oak: #5d4037;
  --oak-light: #8d6e63;
  --cream: #fefcf3;
  --cream-dark: #f5f0e1;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.1);
  --transition: 0.25s ease;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--gray-800);
  background: #fff;
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ─── Navigation ─── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
}

nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--green-800);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--green-700);
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  background: var(--green-700);
  color: #fff !important;
  border-radius: 6px;
  font-weight: 600;
  transition: background var(--transition);
}

.nav-cta:hover {
  background: var(--green-800) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--gray-700);
  cursor: pointer;
  padding: 0.25rem;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--green-700);
  color: #fff;
}

.btn-primary:hover {
  background: var(--green-800);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  color: var(--green-700);
  border: 2px solid var(--green-700);
}

.btn-outline:hover {
  background: var(--green-50);
}

.btn-lg {
  padding: 0.9rem 2rem;
  font-size: 1rem;
}

/* ─── Hero ─── */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--green-50) 0%, #fff 50%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(22, 163, 74, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
}

.hero h1 {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.hero h1 span {
  color: var(--green-700);
}

.hero p {
  font-size: 1.1rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: 100%;
  max-width: 450px;
  background: linear-gradient(135deg, var(--green-100), var(--cream));
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-illustration h3 {
  color: var(--green-800);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.hero-illustration p {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ─── Trust Bar ─── */
.trust-bar {
  background: var(--gray-50);
  padding: 2rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gray-500);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-item .check {
  color: var(--green-600);
  font-weight: 700;
}

/* ─── Section Headers ─── */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
}

.section-header .tag {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ─── Services ─── */
.services {
  padding: 80px 0;
  background: #fff;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  border: 1px solid var(--gray-200);
}

.service-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card .icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ─── About / Why Us ─── */
.about {
  padding: 80px 0;
  background: var(--green-50);
}

.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: #fff;
  text-align: center;
  aspect-ratio: 4 / 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-image h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.about-image p {
  opacity: 0.8;
  font-size: 0.95rem;
}

.about h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1.25rem;
}

.about p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-stat {
  text-align: center;
  padding: 1rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-stat .num {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--green-700);
}

.about-stat .label {
  font-size: 0.8rem;
  color: var(--gray-500);
}

/* ─── How It Works ─── */
.how-it-works {
  padding: 80px 0;
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem 1rem;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--green-700);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ─── Pricing ─── */
.pricing {
  padding: 80px 0;
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--green-400);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  position: relative;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-700);
  color: #fff;
  padding: 0.25rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--green-800);
  margin-bottom: 0.25rem;
}

.pricing-card .price-sub {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

.pricing-card ul {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-card ul li {
  padding: 0.4rem 0;
  color: var(--gray-600);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-card ul li::before {
  content: '\2713';
  color: var(--green-600);
  font-weight: 700;
}

/* ─── About Tag (replaces inline style) ─── */
.about-tag {
  display: inline-block;
  padding: 0.25rem 0.85rem;
  background: var(--green-100);
  color: var(--green-800);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* ─── Contact Form ─── */
.contact-form {
  max-width: 560px;
  margin: 0 auto 2rem;
  text-align: left;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1rem;
}

.contact-form .form-control {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  font-size: 0.9rem;
  font-family: inherit;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transition: border-color var(--transition), background var(--transition);
}

.contact-form .form-control:focus {
  outline: none;
  border-color: var(--green-400);
  background: rgba(255, 255, 255, 0.15);
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
}

/* ─── Privacy Modal ─── */
.privacy-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.privacy-overlay.open {
  display: flex;
}

.privacy-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 620px;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
}

.privacy-modal h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gray-900);
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.privacy-modal h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-800);
  margin-top: 1.25rem;
  margin-bottom: 0.4rem;
}

.privacy-modal p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.privacy-modal ul {
  list-style: disc;
  padding-left: 1.25rem;
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

.privacy-modal ul li {
  margin-bottom: 0.3rem;
}

.privacy-modal a {
  color: var(--green-700);
}

.privacy-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.75rem;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem;
}

.privacy-close:hover {
  color: var(--gray-600);
}

/* ─── Pricing button repalcement ─── */
.pricing-btn {
  width: 100%;
  justify-content: center;
}

/* ─── Contact / CTA ─── */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  color: #fff;
  text-align: center;
}

.cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 2rem;
}

.cta .btn-primary {
  background: #fff;
  color: var(--green-800);
}

.cta .btn-primary:hover {
  background: var(--green-100);
}

.cta .btn-outline {
  border-color: rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta .btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.contact-info {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item .icon {
  font-size: 1.2rem;
}

/* ─── Footer ─── */
footer {
  background: var(--gray-900);
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

footer span {
  color: var(--green-400);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero p {
    margin: 0 auto 2rem;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-illustration {
    max-width: 320px;
  }

  .about .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-stats {
    max-width: 300px;
    margin: 2rem auto 0;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

  .trust-bar .container {
    gap: 1.5rem;
  }

  .contact-info {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  .hero {
    padding: 120px 0 50px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .section-header h2 {
    font-size: 1.35rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .services,
  .about,
  .how-it-works,
  .pricing,
  .cta {
    padding: 50px 0;
  }

  .service-card {
    padding: 1.5rem;
  }

  .about-image {
    padding: 2rem 1.5rem;
  }

  .about-image h3 {
    font-size: 1.2rem;
  }

  .pricing-card {
    padding: 2rem 1.25rem;
  }

  .pricing-card .price {
    font-size: 2rem;
  }

  .steps {
    gap: 0.5rem;
  }

  .step {
    padding: 1.5rem 0.5rem;
  }

  .cta h2 {
    font-size: 1.4rem;
  }

  .cta p {
    font-size: 0.9rem;
  }

  .contact-form .form-row {
    grid-template-columns: 1fr;
  }

  .privacy-modal {
    padding: 1.5rem;
  }

  .privacy-modal h2 {
    font-size: 1.2rem;
  }

  footer {
    font-size: 0.75rem;
    padding: 1.5rem 1rem;
  }
}
