/* =========================
   VARIABLES — #82d225 LIME-GREEN PALETTE
========================= */
:root {
  --green-dark: #4a7a14;
  --green-main: #82d225;
  --green-mid: #a0e040;
  --green-light: #c2f07a;
  --green-pale: #eefad0;
  --green-mist: #f6fde8;

  --white: #ffffff;
  --anthracite: #1c2a0e;
  --gray-mid: #5a6b45;
  --gray-light: #dff0b8;

  --shadow-md: 0 8px 32px rgba(82, 173, 25, 0.15);
  --shadow-lg: 0 20px 60px rgba(82, 173, 25, 0.20);
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
}

/* =========================
   GLOBAL LAYOUT + UTILITIES
========================= */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 96px 0;
}

.text-center {
  text-align: center;
}

.bg-white {
  background: var(--white);
}

/* =========================
   TYPOGRAPHY
========================= */
body {
  font-family: var(--font-body);
  color: var(--anthracite);
  background: var(--cream);
  font-size: 16px;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
}

h4 {
  font-size: 1.1rem;
}

p {
  color: var(--gray-mid);
  line-height: 1.75;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--green-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}


/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  font-family: var(--font-body);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  background: var(--green-pale);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.btn-white:active {
  background: var(--green-light);
  transform: translateY(0);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =========================
   PAGE HERO SECTION
========================= */
.page-hero {
  padding: 140px 0 72px;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero h1 {
  color: white;
  position: relative;
  margin: 16px 0px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
}

/* =========================
   LEISTUNGEN GRID
========================= */
.leistungen-grid {
  display: grid;
  gap: 32px;
  margin-top: 0;
}

.leistung-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-light);
  overflow: hidden;
  display: grid;
  grid-template-columns: 80px 1fr;
  transition: var(--transition);
}

.leistung-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: transparent;
}

.leistung-icon-col {
  background: var(--green-mist);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.leistung-icon-col img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
}

.leistung-card:hover .leistung-icon-col {
  background: var(--green-pale);
}

.leistung-body {
  padding: 28px 32px;
}

.leistung-body h3 {
  color: var(--anthracite);
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.leistung-body p {
  color: var(--gray-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.leistung-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.benefit-tag {
  background: var(--green-mist);
  color: var(--green-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
}

.benefit-tag::before {
  content: '✓';
  color: var(--green-dark);
}

/* =========================
   CTA SECTION
========================= */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-main) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-phone {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  font-family: var(--font-body);
}

.btn-phone:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.whatsapp-fixed {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--green-main);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-fixed:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  color: var(--green-light);
}

.whatsapp-fixed svg {
  width: 30px;
  height: 30px;
  display: block;
}


/* =========================
   RESPONSIVE STYLES
========================= */
@media(max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .leistung-card {
    grid-template-columns: 1fr;
  }

  .leistung-icon-col {
    font-size: 1.5rem;
  }

  .leistung-body {
    padding: 20px;
  }

  .whatsapp-fixed {
    display: none;
  }
}