/* =========================
   GLOBAL RESET & BASE
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  color: #2E2E2E;
  background: #FFFFFF;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* =========================
   LAYOUT
========================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   HEADER
========================= */
.header {
  background: #FFFFFF;
  border-bottom: 1px solid #E6E6E6;
  padding: 18px 0;
}

.header-flex {
  display: flex;
  align-items: center;
}

.header-brand {
  display: flex;
  flex-direction: column;
}

.logo {
  width: 320px;
  height: auto;
}

.header-tagline {
  font-size: 14px;
  color: #6B6B6B;
  margin-top: 6px;
  font-weight: 500;
}

/* =========================
   HERO SECTION
========================= */
.hero {
  background: #8BC34A;
  color: #FFFFFF;
  padding: 80px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin-bottom: 30px;
}

/* CTA Buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
}

.btn {
  padding: 14px 26px;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn.primary {
  background: #FFFFFF;
  color: #2E2E2E;
}

.btn.primary:hover {
  background: #F0F0F0;
}

.btn.outline {
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
}

.btn.outline:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* =========================
   SECTIONS
========================= */
.section {
  padding: 80px 0;
}

.section.white {
  background: #FFFFFF;
}

.section.light {
  background: #FFFFFF;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 35px;
}

/* =========================
   SERVICE CARDS (GREY TILES)
========================= */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}

.card {
  background: #F2F3F2; /* subtle professional grey */
  padding: 28px;
  border-radius: 14px;
  border-top: 4px solid #8BC34A;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  font-weight: 500;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.14);
}

/* =========================
   PROCESS / FEATURES TILES
========================= */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.features div {
  background: #F2F3F2; /* same grey as service tiles */
  padding: 22px;
  border-radius: 12px;
  border-left: 4px solid #8BC34A;
  box-shadow: 0 10px 24px rgba(0,0,0,0.10);
  font-weight: 500;
}

/* =========================
   CTA BAND
========================= */
.cta-band {
  background: #8BC34A;
  color: #2E2E2E;
  padding: 60px 0;
}

.cta-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cta-band h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
}

.cta-band p {
  font-size: 16px;
}

/* =========================
   FOOTER
========================= */
.footer {
  background: #2E2E2E;
  color: #FFFFFF;
  text-align: center;
  padding: 22px;
  font-size: 14px;
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-buttons {
    justify-content: center;
  }

  .cta-flex {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }

  .header-brand {
    align-items: center;
    text-align: center;
  }

  .logo {
    width: 260px;
  }
}
