/* ==============================
   RESET & BASE
   ============================== */

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #2c3e2d;
  background-color: #faf7f2;
}

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

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

/* ==============================
   CONTAINER
   ============================== */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==============================
   HERO
   ============================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a2e23 0%, #2a4535 50%, #1a2e23 100%);
  overflow: hidden;
}

.hero-bg-shape {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 80%, rgba(122, 154, 90, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(245, 239, 230, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(245, 239, 230, 0.06);
  border-radius: 50%;
  top: -200px;
  right: -200px;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(122, 154, 90, 0.1);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  padding: 80px 0;
  animation: fadeUp 1s ease-out;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
  color: #f5efe6;
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: rgba(245, 239, 230, 0.75);
  line-height: 1.7;
  margin-bottom: 48px;
}

/* ==============================
   BUTTONS
   ============================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: inherit;
  font-weight: 500;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-outline {
  background: transparent;
  color: #f5efe6;
  border: 1px solid rgba(245, 239, 230, 0.3);
}

.btn-outline:hover {
  background: rgba(245, 239, 230, 0.08);
  border-color: rgba(245, 239, 230, 0.5);
  transform: translateY(-2px);
}

.btn-primary {
  background: #5b8a4f;
  color: #faf7f2;
  box-shadow: 0 4px 20px rgba(91, 138, 79, 0.35);
}

.btn-primary:hover {
  background: #4d7a43;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(91, 138, 79, 0.45);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

/* ==============================
   ABOUT
   ============================== */

.about {
  padding: 100px 0;
  background: #faf7f2;
}

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

.about-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a2e23;
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}

.about-text p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a5a4a;
  margin-bottom: 18px;
}

.about-text p:last-child {
  margin-bottom: 0;
}

.quote-card {
  background: #f5efe6;
  border-radius: 20px;
  padding: 40px;
  position: relative;
}

.quote-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  left: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(26, 46, 35, 0.08);
  font-family: Georgia, serif;
}

.quote-card::after {
  content: '\201D';
  position: absolute;
  bottom: 16px;
  right: 24px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(26, 46, 35, 0.08);
  font-family: Georgia, serif;
}

.quote-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #2c3e2d;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.quote-author {
  font-weight: 600;
  color: #1a2e23;
  font-size: 0.95rem;
}

/* ==============================
   BENEFITS
   ============================== */

.benefits {
  padding: 100px 0;
  background: #f5efe6;
}

.benefits h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #1a2e23;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: -0.02em;
}

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

.benefit-card {
  background: #faf7f2;
  border-radius: 16px;
  padding: 40px 32px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 46, 35, 0.08);
}

.benefit-icon {
  color: #5b8a4f;
  margin-bottom: 24px;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1a2e23;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.benefit-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #4a5a4a;
}

/* ==============================
   CTA
   ============================== */

.cta {
  padding: 100px 0;
  background: #faf7f2;
}

.cta-card {
  background: #1a2e23;
  border-radius: 24px;
  padding: 72px 48px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.cta-card h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  color: #f5efe6;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cta-card > p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(245, 239, 230, 0.7);
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.cta-note {
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.4);
  margin-top: 20px;
  margin-bottom: 0 !important;
}

/* ==============================
   FOOTER
   ============================== */

footer {
  background: #1a2e23;
  border-top: 1px solid rgba(245, 239, 230, 0.06);
  padding: 32px 0;
}

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

.footer-brand {
  font-weight: 600;
  color: #f5efe6;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.footer-copy {
  font-size: 0.85rem;
  color: rgba(245, 239, 230, 0.4);
}

/* ==============================
   RESPONSIVE
   ============================== */

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .cta-card {
    padding: 48px 28px;
  }
}

@media (max-width: 600px) {
  .hero-content {
    padding: 60px 0;
  }

  .about,
  .benefits,
  .cta {
    padding: 64px 0;
  }

  .quote-card {
    padding: 28px 24px;
  }

  .benefit-card {
    padding: 32px 24px;
  }

  .footer-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}
