/* ═══════════════════════════════════════════════════════════════
   SERVICES — Ad Factory by Maryam.K
   ═══════════════════════════════════════════════════════════════ */

/* ── HERO ─────────────────────────────────────────────────────── */
.services-hero {
  background-color: var(--blush);
  padding: calc(var(--nav-height) + 100px) 40px 96px;
  border-bottom: 1px solid rgba(80, 78, 138, 0.1);
}

.services-hero__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.services-hero__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 64px);
  color: var(--indigo);
  line-height: 1.12;
  margin: 12px 0 28px;
}

.services-hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 18px;
  color: rgba(26, 26, 46, 0.65);
  max-width: 520px;
  line-height: 1.65;
}

/* ── PRICING SECTION ─────────────────────────────────────────── */
.pricing-section {
  background-color: var(--blush);
  padding: 80px 40px 96px;
}

.pricing-section__inner {
  max-width: 1280px;
  margin: 0 auto;
}

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

/* ── PRICING CARD ────────────────────────────────────────────── */
.pricing-card {
  background-color: var(--blush);
  border-radius: 2px;
  overflow: hidden;
  border: 1.5px solid rgba(80, 78, 138, 0.14);
  display: flex;
  flex-direction: column;
  transition: transform 280ms ease-out, box-shadow 280ms ease-out;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(80, 78, 138, 0.12);
}

/* Top indigo band */
.pricing-card__band {
  background-color: var(--indigo);
  height: 8px;
  position: relative;
}

/* Highlighted card — gold top border + label */
.pricing-card--highlight {
  border-color: var(--gold);
}

.pricing-card--highlight .pricing-card__band {
  background-color: var(--gold);
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card__popular {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
}

.pricing-card__body {
  padding: 32px 32px 24px;
  flex: 1;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1.2;
}

.pricing-card__price-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}

.pricing-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  color: var(--indigo);
  line-height: 1;
}

.pricing-card__price-note {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 15px;
  color: rgba(26, 26, 46, 0.5);
}

.pricing-card__timeline {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(26, 26, 46, 0.5);
  margin-bottom: 24px;
}

.pricing-card__timeline svg {
  flex-shrink: 0;
  color: var(--indigo);
  opacity: 0.5;
}

.pricing-card__deliverables {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pricing-card__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(26, 26, 46, 0.8);
  line-height: 1.5;
}

.pricing-card__dot {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}

.pricing-card__footer {
  padding: 0 32px 32px;
}

.pricing-card__cta {
  width: 100%;
  justify-content: center;
}

/* ── FREE SAMPLE STRIP ───────────────────────────────────────── */
.free-sample-strip {
  background-color: var(--dark);
  padding: 96px 40px;
}

.free-sample-strip__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.free-sample-strip__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.6vw, 48px);
  color: var(--blush);
  line-height: 1.15;
  margin: 12px 0 20px;
}

.free-sample-strip__body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  color: rgba(248, 242, 238, 0.6);
  line-height: 1.7;
  max-width: 500px;
}

.free-sample-strip__btn {
  flex-shrink: 0;
}

/* ── DELIVERY FORMATS ────────────────────────────────────────── */
.delivery-formats {
  background-color: var(--blush);
  padding: 96px 40px;
}

.delivery-formats__inner {
  max-width: 1280px;
  margin: 0 auto;
}

.delivery-formats__header {
  margin-bottom: 60px;
}

.delivery-formats__headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 3.4vw, 44px);
  color: var(--indigo);
  margin-top: 12px;
  line-height: 1.15;
}

.delivery-formats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.delivery-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.delivery-item__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.delivery-item__label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  color: var(--indigo);
  letter-spacing: 0.02em;
}

.delivery-item__desc {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 14px;
  color: rgba(26, 26, 46, 0.6);
  line-height: 1.65;
}

/* ── REVISION POLICY ─────────────────────────────────────────── */
.revision-policy {
  background-color: var(--blush);
  border-top: 1px solid rgba(80, 78, 138, 0.1);
  padding: 28px 40px;
}

.revision-policy__inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.revision-policy__inner svg {
  flex-shrink: 0;
  margin-top: 1px;
}

.revision-policy__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 13px;
  color: rgba(26, 26, 46, 0.55);
  line-height: 1.6;
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .delivery-formats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
  }

  .free-sample-strip__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
  }

  .free-sample-strip__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .services-hero {
    padding: calc(var(--nav-height) + 72px) 24px 72px;
  }

  .pricing-section {
    padding: 64px 24px 72px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .free-sample-strip {
    padding: 72px 24px;
  }

  .delivery-formats {
    padding: 72px 24px;
  }

  .delivery-formats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .revision-policy {
    padding: 24px;
  }
}

@media (max-width: 540px) {
  .delivery-formats__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 375px) {
  .services-hero,
  .pricing-section,
  .free-sample-strip,
  .delivery-formats {
    padding-left: 20px;
    padding-right: 20px;
  }

  .revision-policy {
    padding-left: 20px;
    padding-right: 20px;
  }

  .pricing-card__body,
  .pricing-card__footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}
