/* ===== CSS Variables ===== */
:root {
  --primary-green: #1B5E20;
  --light-green: #4CAF50;
  --accent-gold: #C8A951;
  --dark: #1A1A1A;
  --body-text: #444444;
  --light-bg: #F8F9FA;
  --white: #FFFFFF;
  --max-width: 1200px;
  --section-padding: 80px;
  --card-padding: 32px;
  --border-radius: 6px;
  --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.12);
  --transition: 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: var(--body-text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--primary-green);
  text-decoration: none;
  transition: color var(--transition);
}

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

h1, h2, h3, h4 {
  color: var(--dark);
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.125rem; }

p + p {
  margin-top: 1em;
}

/* ===== Utility ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background: var(--light-bg);
}

.section--green {
  background: var(--primary-green);
  color: var(--white);
}

.section--green h2,
.section--green h3 {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.subtitle {
  font-size: 1.2rem;
  color: var(--body-text);
  max-width: 680px;
  margin: 16px auto 0;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  border-radius: var(--border-radius);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--light-green);
  color: var(--white);
}

.btn--primary:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

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

.btn--outline:hover {
  background: var(--white);
  color: var(--primary-green);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--accent-gold);
  color: var(--dark);
}

.btn--gold:hover {
  background: #b8993f;
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 0;
  background: var(--white);
  border-bottom: 1px solid #e8e8e8;
  z-index: 1000;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  font-size: 1.6rem;
  line-height: 1;
  color: var(--dark);
  text-decoration: none;
}

.logo strong {
  font-weight: 700;
}

.logo span {
  font-weight: 400;
}

.logo__bar {
  display: block;
  width: 48px;
  height: 3px;
  background: var(--light-green);
  margin-top: 4px;
  border-radius: 2px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__links a {
  color: var(--body-text);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--primary-green);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 6px 0;
  transition: all var(--transition);
  border-radius: 2px;
}

/* ===== Hero ===== */
.hero {
  padding: 120px 0 100px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero__accent {
  color: var(--primary-green);
}

.hero p {
  font-size: 1.25rem;
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--body-text);
}

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  padding: 80px 0;
  background: var(--light-bg);
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== Cards Grid ===== */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow);
  transition: all var(--transition);
}

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

.card__icon {
  width: 56px;
  height: 56px;
  background: var(--light-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card__icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  font-size: 1rem;
  line-height: 1.6;
}

/* ===== Trust Bar ===== */
.trust-bar {
  padding: 60px 0;
  background: var(--primary-green);
  color: var(--white);
  text-align: center;
}

.trust-bar__label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.8;
  margin-bottom: 36px;
}

.trust-bar__stats {
  display: flex;
  justify-content: center;
  gap: 80px;
}

.stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  color: var(--accent-gold);
}

.stat__label {
  font-size: 0.95rem;
  opacity: 0.9;
}

/* ===== Steps / How It Works ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 48px;
}

.step {
  text-align: center;
}

.step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--light-green);
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  font-size: 1rem;
}

/* ===== Testimonial ===== */
.testimonial {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testimonial blockquote {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.8;
  margin-bottom: 24px;
  position: relative;
}

.testimonial blockquote::before {
  content: "\201C";
  font-size: 4rem;
  color: var(--light-green);
  position: absolute;
  top: -20px;
  left: -10px;
  line-height: 1;
  opacity: 0.3;
}

.testimonial__author {
  font-weight: 600;
  color: var(--dark);
}

.testimonial__role {
  font-size: 0.95rem;
  color: var(--body-text);
}

/* ===== CTA Banner ===== */
.cta-banner {
  text-align: center;
  padding: var(--section-padding) 0;
}

.cta-banner h2 {
  margin-bottom: 16px;
}

.cta-banner p {
  margin-bottom: 32px;
  font-size: 1.1rem;
  opacity: 0.9;
}

/* ===== Process List ===== */
.process-list {
  max-width: 800px;
  margin: 48px auto 0;
}

.process-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
}

.process-item__number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--light-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.process-item__content h3 {
  margin-bottom: 8px;
}

.process-item__content p {
  font-size: 1rem;
}

/* ===== Benefits Grid ===== */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit__check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: var(--light-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

.benefit__check svg {
  width: 16px;
  height: 16px;
  stroke: var(--white);
  fill: none;
  stroke-width: 3;
}

.benefit h4 {
  margin-bottom: 4px;
}

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

/* ===== Services Grid (Life After) ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--light-green);
  transition: all var(--transition);
}

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

.service-card h3 {
  margin-bottom: 12px;
}

.service-card p {
  font-size: 1rem;
}

/* ===== About Sections ===== */
.mission {
  max-width: 800px;
  margin: 0 auto;
}

.mission h2 {
  margin-bottom: 20px;
}

.mission p {
  margin-bottom: 16px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.team-member {
  text-align: center;
}

.team-member__photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--light-green), var(--primary-green));
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-member__photo svg {
  width: 48px;
  height: 48px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.5;
}

.team-member h3 {
  margin-bottom: 4px;
}

.team-member p {
  font-size: 0.95rem;
}

/* ===== Contact Section ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

.contact-info h3 {
  margin-bottom: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.contact-detail__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--primary-green);
  fill: none;
  stroke-width: 2;
}

.contact-detail strong {
  display: block;
  color: var(--dark);
  margin-bottom: 2px;
}

.contact-detail span {
  font-size: 0.95rem;
}

/* ===== Form ===== */
.form h3 {
  margin-bottom: 24px;
}

.form__group {
  margin-bottom: 20px;
}

.form__group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  background: var(--white);
  color: var(--dark);
  transition: border-color var(--transition);
}

.form__group input:focus,
.form__group textarea:focus {
  outline: none;
  border-color: var(--light-green);
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.15);
}

.form__group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer .logo {
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}

.footer .logo .logo__bar {
  background: var(--light-green);
}

.footer__about p {
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 0.85rem;
}

/* ===== Mobile ===== */
@media (max-width: 768px) {
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.75rem; }

  .section {
    padding: 48px 0;
  }

  /* Nav */
  .nav__toggle {
    display: block;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: var(--shadow);
  }

  .nav__links.is-open {
    display: flex;
  }

  .nav__links li {
    width: 100%;
  }

  .nav__links a {
    display: block;
    padding: 16px 24px;
    border-top: 1px solid #f0f0f0;
  }

  /* Hero */
  .hero {
    padding: 60px 0;
  }

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

  .page-hero {
    padding: 48px 0;
  }

  /* Grids */
  .cards,
  .steps,
  .team-grid {
    grid-template-columns: 1fr;
  }

  .benefits,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Trust Bar */
  .trust-bar__stats {
    flex-direction: column;
    gap: 32px;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Process Items */
  .process-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
