/* SERVICES SECTION */

.services {
  background: var(--white);
}

/* SERVICES GRID */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);

  gap: 28px;
}

/* SERVICE CARD */

.service-card {
  position: relative;

  padding: 42px;

  overflow: hidden;

  background: var(--white);

  border: 1px solid var(--border);
  border-radius: var(--radius-xl);

  transition: var(--transition);
}

/* SERVICE CARD HOVER */

.service-card:hover {
  transform: translateY(-10px);

  box-shadow: var(--shadow-md);
}

/* SERVICE ICON */

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 72px;
  height: 72px;

  margin-bottom: 32px;

  border-radius: var(--radius-md);

  background: var(--primary-soft);

  font-size: 1.8rem;

  transition: var(--transition);
}

.service-icon-svg {
  width: 32px;
  height: 32px;
  display: block;
}

/* SERVICE TITLE */

.service-card h3 {
  margin-bottom: 30px;

  color: var(--text);

  font-size: clamp(1.5rem, 2vw, 1.9rem);

  line-height: 1.1;
}

/* SERVICE DESCRIPTION */

.service-card p {
  margin-bottom: 28px;

  color: var(--text-light);

  line-height: 1.8;
}

/* SERVICE LIST */

.service-card ul {
  display: flex;
  flex-direction: column;

  gap: 14px;
}

/* SERVICE LIST ITEM */

.service-card li {
  position: relative;

  padding-left: 26px;
  text-align: left;
  color: var(--text);

  font-weight: 500;
}

/* SERVICE LIST DOT */

.service-card li::before {
  content: "";

  position: absolute;

  left: 0;
  top: 0.72em;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--primary);
}

/* PREMIUM CARD HOVER */

.service-card::before {
  content: "";

  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      135deg,
      var(--primary-soft),
      transparent 45%
    );

  opacity: 0;

  transition: var(--transition);

  pointer-events: none;
}

/* CARD HOVER */

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-icon {
  transform:
    translateY(-4px)
    scale(1.05);

  background: var(--primary-soft-hover);
}

/* PILLS */

.pricing-top {
  position: absolute;

  top: -18px;
  left: 24px;
  right: 24px;

  display: flex;
  justify-content: space-between;
}

.pricing-title {
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 700;

  line-height: 1.1;

  margin-bottom: 1.5rem;

  color: var(--heading);
}
.pricing-pill {
  display: inline-flex;
  align-items: center;

  padding: 0.45rem 0.9rem;

  border-radius: 999px;

  font-size: 0.8rem;
  font-weight: 700;
}

.pricing-pill-accent {
  background: rgba(249,115,22,.12);
  color: #ea580c;
}

.pricing-price-pill {
  background: rgba(249,115,22,.12);
  color: #ea580c;
}

.pricing-price-lp,
.pricing-price-business,
.pricing-price-premium {
  position: absolute;

  top: -20px;
  right: 24px;

  padding: 0.75rem 1.25rem;

  border-radius: 999px;

  font-weight: 700;

  box-shadow: 0 12px 30px rgba(0,0,0,.08);
}

.pricing-top {
  margin-bottom: 2rem;
}

/* =========================
   FAQ
========================= */

.faq-list {
  max-width: 900px;

  margin: 0 auto;
}

.faq-item {
  background: var(--white);

  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  overflow: hidden;

  transition: var(--transition);

  margin-bottom: 1rem;
}

.faq-item:hover {
  border-color: rgba(72, 99, 56, 0.2);

  transform: translateY(-2px);
}

.faq-question {
  width: 100%;

  display: flex;

  justify-content: space-between;
  align-items: center;

  gap: 1rem;

  padding: 1.5rem;

  background: transparent;

  border: none;

  color: var(--text);

  font-size: 1rem;
  font-weight: 600;

  text-align: left;

  cursor: pointer;
}

.faq-icon {
  flex-shrink: 0;

  color: var(--primary);

  font-size: 1.5rem;
  font-weight: 400;

  transition: transform 0.3s ease;
}

.faq-icon-svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon-svg {
  transform: rotate(135deg);
}

.faq-answer {
  max-height: 0;

  overflow: hidden;

  transition:
    max-height 0.35s ease,
    padding 0.35s ease;

  padding: 0 1.5rem;
}

.faq-answer p {
  color: var(--text-light);

  line-height: 1.8;

  padding-bottom: 1.5rem;
}

/* ACTIVE */

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}
