
/* =========================
   Base
   ========================= */

* {
  box-sizing: border-box;
}


body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", Roboto, Ubuntu, sans-serif;
  background: #0f2a1f;
  color: #e5e7eb;
}

/* =========================
   Home / Hero
   ========================= */

.home {
  padding: 3rem 1.5rem;
}

.hero {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  background: linear-gradient(135deg, #2f6b57, #1c3b2f);
  border-radius: 28px;
  padding: 3rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}

/* Text */

.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
}

.hero-content p {
  font-size: 1.05rem;
  max-width: 420px;
  color: #d1fae5;
  margin-bottom: 2rem;
}

/* Button */

.hero-btn {
  display: inline-block;
  padding: 0.6rem 1.4rem;
  background: #f3c892;
  color: #1f2937;
  border-radius: 999px;
  font-size: 0.95rem;
  text-decoration: none;
  font-weight: 500;
}

.hero-btn:hover {
  background: #f5d6a7;
}

/* Visual */

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual img {
  width: 100%;
  max-width: 420px;
  border-radius: 22px;
  object-fit: cover;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 900px) {
  .hero-card {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 2.1rem;
  }
}

/* =========================
   Card Grid Section
   ========================= */

.card-section {
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 0 1.5rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Card base */

.card {
  border-radius: 22px;
  padding: 1.8rem;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.card h3 {
  margin: 1rem 0 0.5rem;
  font-size: 1.1rem;
}

.card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #d1fae5;
}

/* Icon */

.card-icon {
  font-size: 1.4rem;
  opacity: 0.9;
}

/* Color variants */

.card--green {
  background: linear-gradient(135deg, #2f6b57, #1c3b2f);
}

.card--olive {
  background: linear-gradient(135deg, #4d6f4a, #2c3e2d);
}

.card--brown {
  background: linear-gradient(135deg, #6b4f3f, #3f2a21);
}

.card--dark {
  background: linear-gradient(135deg, #1f2937, #020617);
}

.card--soft {
  background: linear-gradient(135deg, #3a5f5f, #223c3c);
}

.card--light {
  background: linear-gradient(135deg, #7a6f5a, #4b3f2e);
}

@media (max-width: 1100px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================
   Feature Strip (Glass)
   ========================= */

.feature-strip {
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 1.5rem;
}

.feature-glass {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;

  padding: 2rem 2.5rem;
  border-radius: 22px;

  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.12);
}

/* Feature item */

.feature-item {
  text-align: center;
}

.feature-icon {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.feature-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.feature-item p {
  font-size: 0.85rem;
  line-height: 1.45;
  color: #d1fae5;
}

/* =========================
   Responsive
   ========================= */

@media (max-width: 900px) {
  .feature-glass {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 520px) {
  .feature-glass {
    grid-template-columns: 1fr;
  }
}


/* =========================
   Layout
   ========================= */






/* =========================
   Components
   ========================= */
/* =========================
   Global spacing polish
   ========================= */

section {
  margin-bottom: 5rem;
}

/* =========================
   Typography polish
   ========================= */

.hero-content h1 {
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.65;
}

/* Section titles (if any later) */
section h2 {
  font-size: 1.6rem;
  margin-bottom: 2rem;
}

/* Card typography */
.card h3 {
  letter-spacing: -0.01em;
}

.card p {
  line-height: 1.55;
}

/* Feature strip text */
.feature-item h4 {
  letter-spacing: -0.01em;
}

.feature-item p {
  line-height: 1.5;
}

/* Highlight card text */
.highlight-card h3 {
  letter-spacing: -0.015em;
}

.highlight-card p {
  font-size: 1rem;
  line-height: 1.65;
}

/* =========================
   Width control (editorial feel)
   ========================= */

.hero-content p,
.highlight-card p {
  max-width: 480px;
}

/* =========================
   Subtle alignment polish
   ========================= */

.card,
.feature-item,
.highlight-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover,
.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 35px 80px rgba(0,0,0,0.45);
}




