/* ─── HERO COMPACT ───────────────────────────────────────── */

.hero-compact {
  background: var(--donker);
  color: var(--ivoor);
  padding: 120px clamp(24px, 7vw, 88px) 80px;
  min-height: auto;
}

.hero-compact h1 {
  color: var(--ivoor);
  margin-bottom: 16px;
  font-size: clamp(32px, 6vw, 48px);
}

.hero-lead {
  font-size: 16px;
  color: rgba(248, 247, 243, 0.75);
  max-width: 600px;
}

/* ─── PACKAGES SECTION ────────────────────────────────────– */

.packages-section {
  background: var(--ivoor);
  padding: clamp(64px, 10vw, 120px) clamp(24px, 7vw, 88px);
}

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

.package-card {
  background: var(--creme);
  border: 1px solid var(--rand);
  padding: 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.package-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.02);
}

.package-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: white;
  padding: 6px 12px;
  border-radius: 2px;
}

.package-header h3 {
  font-size: 24px;
  margin-bottom: 4px;
  color: var(--donker);
}

.package-desc {
  font-size: 13px;
  color: rgba(44, 36, 32, 0.6);
  margin-bottom: 20px;
}

.package-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 0;
  border-top: 1px solid var(--rand);
  border-bottom: 1px solid var(--rand);
  margin-bottom: 20px;
}

.price-amount {
  font-family: var(--mono);
  font-size: 32px;
  font-weight: 600;
  color: var(--donker);
  line-height: 1;
}

.price-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(44, 36, 32, 0.5);
}

.package-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  flex: 1;
}

.feature {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: rgba(44, 36, 32, 0.7);
  align-items: flex-start;
}

.feature-icon {
  color: #3A7C5A;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

.package-maintenance {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-top: 1px solid var(--rand);
  margin-bottom: 20px;
}

.maintenance-label {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(44, 36, 32, 0.5);
}

.maintenance-price {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
}

.package-note {
  font-size: 11px;
  color: rgba(44, 36, 32, 0.5);
  font-style: italic;
}

@media (max-width: 1024px) {
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .package-card.featured {
    transform: scale(1);
  }
}

/* ─── INCLUDED SECTION ────────────────────────────────────– */

.included-section {
  background: var(--creme);
  padding: clamp(64px, 10vw, 120px) clamp(24px, 7vw, 88px);
}

.included-section h2 {
  margin-bottom: 48px;
  text-align: center;
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

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

.included-icon {
  font-size: 36px;
  display: block;
  margin-bottom: 12px;
}

.included-item h4 {
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--donker);
}

.included-item p {
  font-size: 13px;
  color: rgba(44, 36, 32, 0.7);
  line-height: 1.6;
}

/* ─── FAQ SECTION ────────────────────────────────────────– */

.faq-section {
  background: var(--ivoor);
  padding: clamp(64px, 10vw, 120px) clamp(24px, 7vw, 88px);
}

.faq-section h2 {
  margin-bottom: 48px;
}

.accordion {
  display: flex;
  flex-direction: column;
}

.accordion-item {
  border-bottom: 1px solid var(--rand);
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  background: none;
  border: none;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--donker);
  transition: color 0.3s ease;
  width: 100%;
  text-align: left;
}

.accordion-header:hover {
  color: var(--accent);
}

.accordion-toggle {
  font-size: 12px;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion-toggle.active {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 0;
}

.accordion-content.active {
  max-height: 400px;
  opacity: 1;
  padding-bottom: 20px;
}

.accordion-content p {
  font-size: 14px;
  color: rgba(44, 36, 32, 0.7);
  line-height: 1.7;
}

/* ─── CTA SECTION ────────────────────────────────────────– */

.cta-section {
  background: var(--eik);
  padding: clamp(64px, 10vw, 120px) clamp(24px, 7vw, 88px);
}

.cta-content {
  text-align: center;
  color: var(--ivoor);
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--ivoor);
  margin-bottom: 12px;
}

.cta-content > p {
  font-size: 16px;
  color: rgba(248, 247, 243, 0.75);
  margin-bottom: 40px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 15px;
  min-width: 220px;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: column;
  }

  .btn-lg {
    width: 100%;
    min-width: auto;
  }
}
