/* ==========================================================================
   HOMEPAGE STYLES — PrintForge3D
   ========================================================================== */

/* ── Animate helper ──────────────────────────────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].pf3d-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── HERO ────────────────────────────────────────────────────────────────── */
.pf3d-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  background: var(--pf-bg-base);
  padding-top: var(--pf-space-20);
  padding-bottom: 0;
}

.pf3d-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pf-space-16);
  align-items: center;
  position: relative;
  z-index: 1;
  padding-bottom: var(--pf-space-16);
}

.pf3d-hero__eyebrow { margin-bottom: var(--pf-space-5); }

.pf3d-hero__heading {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: var(--pf-font-extrabold);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--pf-text-primary);
  margin-bottom: var(--pf-space-5);
}

.pf3d-hero__subtext {
  font-size: var(--pf-text-lg);
  color: var(--pf-text-muted);
  line-height: var(--pf-leading-relaxed);
  max-width: 480px;
  margin-bottom: var(--pf-space-6);
}

.pf3d-hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--pf-space-8);
  display: flex;
  flex-direction: column;
  gap: var(--pf-space-3);
}

.pf3d-hero__bullets li {
  display: flex;
  align-items: center;
  gap: var(--pf-space-3);
  font-size: var(--pf-text-sm);
  color: var(--pf-text-secondary);
  margin: 0;
}

.pf3d-hero__bullets li svg {
  color: var(--pf-primary);
  flex-shrink: 0;
}

.pf3d-hero__actions {
  display: flex;
  align-items: center;
  gap: var(--pf-space-4);
  flex-wrap: wrap;
  margin-bottom: var(--pf-space-8);
}

.pf3d-hero__trust {
  display: flex;
  align-items: center;
  gap: var(--pf-space-5);
  flex-wrap: wrap;
}

.pf3d-trust-item {
  display: flex;
  align-items: center;
  gap: var(--pf-space-2);
  font-size: var(--pf-text-xs);
  color: var(--pf-text-muted);
}

.pf3d-trust-item svg { color: var(--pf-primary); }

/* Hero visual */
.pf3d-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pf3d-hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1;
}

.pf3d-hero__glow-ring {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,87,34,0.15) 0%, transparent 70%);
  animation: pf-pulse 4s ease-in-out infinite;
}

.pf3d-hero__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: var(--pf-radius-2xl);
  position: relative;
  z-index: 1;
}

.pf3d-hero__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.pf3d-hero__cube-svg {
  width: 80%;
  height: 80%;
  filter: drop-shadow(0 20px 60px rgba(255,87,34,0.4));
}

/* Floating info badges */
.pf3d-hero__badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: var(--pf-space-3);
  background: rgba(22, 24, 40, 0.9);
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius-lg);
  padding: var(--pf-space-3) var(--pf-space-4);
  backdrop-filter: blur(12px);
  z-index: 2;
  box-shadow: var(--pf-shadow-lg);
}

.pf3d-hero__badge--tl { top: 12%; left: -10%; animation: pf-float 5s ease-in-out infinite; }
.pf3d-hero__badge--br { bottom: 12%; right: -10%; animation: pf-float 5s ease-in-out infinite; animation-delay: 1.5s; }

.pf3d-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--pf-primary);
  box-shadow: 0 0 8px var(--pf-primary);
  flex-shrink: 0;
  animation: pf-pulse 2s ease-in-out infinite;
}

.pf3d-badge-dot--cyan {
  background: var(--pf-cyan);
  box-shadow: 0 0 8px var(--pf-cyan);
}

.pf3d-badge-label { font-size: 10px; color: var(--pf-text-muted); line-height: 1; margin-bottom: 2px; }
.pf3d-badge-val   { font-size: var(--pf-text-sm); font-weight: var(--pf-font-bold); color: var(--pf-text-primary); }

/* Particles */
.pf3d-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pf-primary);
  animation: pf-float 4s ease-in-out infinite;
  opacity: 0.6;
}

.pf3d-particle--cyan { background: var(--pf-cyan); }

/* Hero wave */
.pf3d-hero__wave {
  width: 100%;
  line-height: 0;
  margin-top: auto;
}

.pf3d-hero__wave svg { width: 100%; height: 80px; display: block; }

/* ── STATS STRIP ─────────────────────────────────────────────────────────── */
.pf3d-stats-strip {
  background: var(--pf-bg-surface);
  border-top: 1px solid var(--pf-border);
  border-bottom: 1px solid var(--pf-border);
  padding: var(--pf-space-10) 0;
}

.pf3d-stats-strip__grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.pf3d-stat-item {
  display: flex;
  align-items: center;
  gap: var(--pf-space-4);
  padding: var(--pf-space-4) var(--pf-space-6);
  justify-content: center;
}

.pf3d-stat-item__icon {
  width: 44px;
  height: 44px;
  background: var(--pf-primary-glow);
  border: 1px solid rgba(255,87,34,0.2);
  border-radius: var(--pf-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pf-primary);
  flex-shrink: 0;
}

.pf3d-stat-item__num {
  font-family: var(--pf-font-heading);
  font-size: var(--pf-text-3xl);
  font-weight: var(--pf-font-extrabold);
  color: var(--pf-text-primary);
  line-height: 1;
}

.pf3d-stat-item__text {
  font-size: var(--pf-text-sm);
  color: var(--pf-text-muted);
  margin-top: 2px;
}

.pf3d-stat-divider {
  width: 1px;
  height: 50px;
  background: var(--pf-border);
}

/* ── CATEGORIES ──────────────────────────────────────────────────────────── */
.pf3d-categories__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pf-space-6);
}

.pf3d-cat-card { border-radius: var(--pf-radius-xl); overflow: hidden; }

.pf3d-cat-card__inner {
  display: block;
  text-decoration: none;
  background: var(--pf-bg-card);
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius-xl);
  overflow: hidden;
  transition: all var(--pf-transition-base);
  height: 100%;
}

.pf3d-cat-card__inner:hover {
  border-color: var(--pf-primary);
  transform: translateY(-6px);
  box-shadow: var(--pf-shadow-xl), 0 0 0 1px var(--pf-primary);
}

.pf3d-cat-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.pf3d-cat-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--pf-transition-slow);
}

.pf3d-cat-card__inner:hover .pf3d-cat-card__image img { transform: scale(1.08); }

.pf3d-cat-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--pf-bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf3d-cat-card__icon {
  width: 80px;
  height: 80px;
  color: var(--pf-primary);
  opacity: 0.4;
}

.pf3d-cat-card__overlay {
  position: absolute;
  inset: 0;
  background: var(--pf-gradient-overlay);
}

.pf3d-cat-card__content {
  padding: var(--pf-space-6);
}

.pf3d-cat-card__icon-sm {
  width: 32px;
  height: 32px;
  color: var(--pf-primary);
  margin-bottom: var(--pf-space-3);
}

.pf3d-cat-card__title {
  font-size: var(--pf-text-xl);
  font-weight: var(--pf-font-bold);
  color: var(--pf-text-primary);
  margin-bottom: var(--pf-space-2);
}

.pf3d-cat-card__desc {
  font-size: var(--pf-text-sm);
  color: var(--pf-text-muted);
  line-height: var(--pf-leading-relaxed);
  margin-bottom: var(--pf-space-4);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pf3d-cat-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pf3d-cat-count {
  font-size: var(--pf-text-xs);
  color: var(--pf-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pf3d-cat-card__arrow {
  color: var(--pf-primary);
  transition: transform var(--pf-transition-base);
}

.pf3d-cat-card__inner:hover .pf3d-cat-card__arrow { transform: translateX(4px); }

/* ── FEATURED PRODUCTS ───────────────────────────────────────────────────── */
.pf3d-featured-products__header {
  margin-bottom: var(--pf-space-10);
  align-items: flex-end;
}

.pf3d-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--pf-space-5);
}

.pf3d-product-card {
  background: var(--pf-bg-card);
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius-xl);
  overflow: hidden;
  transition: all var(--pf-transition-base);
}

.pf3d-product-card:hover {
  border-color: var(--pf-border-light);
  transform: translateY(-4px);
  box-shadow: var(--pf-shadow-xl);
}

.pf3d-product-card__image-wrap {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.pf3d-product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--pf-transition-slow);
}

.pf3d-product-card:hover .pf3d-product-card__img { transform: scale(1.06); }

.pf3d-product-card__no-img {
  width: 100%;
  height: 100%;
  background: var(--pf-bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pf-border-light);
}

.pf3d-product-card__no-img svg { width: 48px; height: 48px; }

.pf3d-product-card__badges {
  position: absolute;
  top: var(--pf-space-3);
  left: var(--pf-space-3);
  display: flex;
  flex-direction: column;
  gap: var(--pf-space-1);
  z-index: 2;
}

.pf3d-sale-badge {
  background: var(--pf-gradient-primary);
  color: #fff;
  font-size: 10px;
  font-weight: var(--pf-font-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: var(--pf-radius-sm);
}

.pf3d-featured-badge {
  background: var(--pf-cyan);
  color: #fff;
  font-size: 10px;
  font-weight: var(--pf-font-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: var(--pf-radius-sm);
}

.pf3d-product-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,14,26,0.8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--pf-space-3);
  opacity: 0;
  transition: opacity var(--pf-transition-base);
}

.pf3d-product-card:hover .pf3d-product-card__overlay { opacity: 1; }

.pf3d-product-card__material {
  font-size: 11px;
  color: var(--pf-text-muted);
  background: var(--pf-bg-elevated);
  padding: 3px 10px;
  border-radius: var(--pf-radius-full);
}

.pf3d-product-card__body { padding: var(--pf-space-4); }

.pf3d-product-card__cat a {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pf-primary);
  text-decoration: none;
  font-weight: var(--pf-font-bold);
}

.pf3d-product-card__title {
  font-size: var(--pf-text-base);
  font-weight: var(--pf-font-semibold);
  margin: var(--pf-space-1) 0 var(--pf-space-2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pf3d-product-card__title a {
  color: var(--pf-text-primary);
  text-decoration: none;
  transition: color var(--pf-transition-fast);
}

.pf3d-product-card__title a:hover { color: var(--pf-primary); }

.pf3d-product-card__rating {
  display: flex;
  align-items: center;
  gap: var(--pf-space-2);
  margin-bottom: var(--pf-space-3);
}

.pf3d-product-card__rating-count { font-size: 11px; color: var(--pf-text-muted); }

.pf3d-product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pf-space-2);
}

.pf3d-product-card__price .amount {
  font-family: var(--pf-font-heading);
  font-size: var(--pf-text-lg);
  font-weight: var(--pf-font-bold);
  color: var(--pf-text-primary);
}

.pf3d-atc-btn,
.pf3d-product-card__footer .button {
  padding: 0.4rem 0.875rem !important;
  font-size: 11px !important;
  background: var(--pf-gradient-primary) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--pf-radius-md) !important;
  cursor: pointer;
  font-family: var(--pf-font-heading) !important;
  font-weight: var(--pf-font-bold) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.06em !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  transition: opacity var(--pf-transition-fast) !important;
  white-space: nowrap;
}

.pf3d-atc-btn:hover,
.pf3d-product-card__footer .button:hover { opacity: 0.9 !important; }

.pf3d-no-products {
  text-align: center;
  padding: var(--pf-space-16) 0;
  color: var(--pf-text-muted);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--pf-space-4);
}

/* ── SERVICES ────────────────────────────────────────────────────────────── */
.pf3d-services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--pf-space-6);
}

.pf3d-service-card {
  background: var(--pf-bg-card);
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius-2xl);
  padding: var(--pf-space-10);
  position: relative;
  overflow: hidden;
  transition: all var(--pf-transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--pf-space-6);
}

.pf3d-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pf-shadow-xl);
}

.pf3d-service-card--primary { border-color: rgba(255,87,34,0.2); }
.pf3d-service-card--primary:hover { border-color: var(--pf-primary); box-shadow: var(--pf-shadow-primary); }

.pf3d-service-card--cyan { border-color: rgba(0,188,212,0.2); }
.pf3d-service-card--cyan:hover { border-color: var(--pf-cyan); box-shadow: var(--pf-shadow-cyan); }

.pf3d-service-card__icon-wrap {
  width: 64px;
  height: 64px;
  background: var(--pf-primary-glow);
  border: 1px solid rgba(255,87,34,0.3);
  border-radius: var(--pf-radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pf-primary);
  flex-shrink: 0;
}

.pf3d-service-card__icon-wrap--cyan {
  background: var(--pf-cyan-glow);
  border-color: rgba(0,188,212,0.3);
  color: var(--pf-cyan);
}

.pf3d-service-card__icon { width: 28px; height: 28px; }

.pf3d-service-card__content { flex: 1; }

.pf3d-service-card__content h3 {
  font-size: var(--pf-text-2xl);
  font-weight: var(--pf-font-bold);
  color: var(--pf-text-primary);
  margin: var(--pf-space-4) 0 var(--pf-space-3);
}

.pf3d-service-card__content p {
  color: var(--pf-text-muted);
  line-height: var(--pf-leading-relaxed);
  margin-bottom: var(--pf-space-5);
}

.pf3d-service-card__features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--pf-space-8);
  display: flex;
  flex-direction: column;
  gap: var(--pf-space-3);
}

.pf3d-service-card__features li {
  display: flex;
  align-items: center;
  gap: var(--pf-space-3);
  font-size: var(--pf-text-sm);
  color: var(--pf-text-secondary);
  margin: 0;
}

.pf3d-service-card__features li svg { color: var(--pf-primary); flex-shrink: 0; }
.pf3d-service-card--cyan .pf3d-service-card__features li svg { color: var(--pf-cyan); }

.pf3d-service-card__deco {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  pointer-events: none;
}

/* ── HOW IT WORKS ────────────────────────────────────────────────────────── */
.pf3d-how-it-works__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: var(--pf-space-12);
}

.pf3d-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--pf-space-6) var(--pf-space-4);
  position: relative;
}

.pf3d-step__connector {
  position: absolute;
  top: 44px;
  left: calc(50% + 28px);
  right: calc(-50% + 28px);
  height: 2px;
  background: linear-gradient(90deg, var(--pf-primary) 0%, var(--pf-border) 100%);
  z-index: 0;
}

.pf3d-step__icon-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  z-index: 1;
  margin-bottom: var(--pf-space-5);
}

.pf3d-step__icon {
  width: 72px;
  height: 72px;
  background: var(--pf-bg-card);
  border: 2px solid var(--pf-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pf-primary);
  transition: all var(--pf-transition-base);
}

.pf3d-step__icon svg { width: 28px; height: 28px; }

.pf3d-step:hover .pf3d-step__icon {
  background: var(--pf-primary-glow);
  border-color: var(--pf-primary);
  box-shadow: var(--pf-shadow-primary);
}

.pf3d-step__num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 22px;
  height: 22px;
  background: var(--pf-primary);
  color: #fff;
  font-size: 10px;
  font-weight: var(--pf-font-bold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pf3d-step__title {
  font-size: var(--pf-text-base);
  font-weight: var(--pf-font-bold);
  color: var(--pf-text-primary);
  margin-bottom: var(--pf-space-2);
}

.pf3d-step__desc {
  font-size: var(--pf-text-sm);
  color: var(--pf-text-muted);
  line-height: var(--pf-leading-relaxed);
  margin: 0;
}

.pf3d-how-it-works__cta { margin-top: var(--pf-space-4); }

/* ── TESTIMONIALS ────────────────────────────────────────────────────────── */
.pf3d-rating-banner {
  background: var(--pf-bg-card);
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius-xl);
  padding: var(--pf-space-6) var(--pf-space-8);
  display: flex;
  align-items: center;
  gap: var(--pf-space-8);
  margin-bottom: var(--pf-space-10);
}

.pf3d-rating-banner__score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--pf-space-2);
  min-width: 100px;
}

.pf3d-rating-banner__num {
  font-family: var(--pf-font-heading);
  font-size: var(--pf-text-5xl);
  font-weight: var(--pf-font-extrabold);
  color: var(--pf-text-primary);
  line-height: 1;
}

.pf3d-rating-banner__label { font-size: var(--pf-text-xs); color: var(--pf-text-muted); text-transform: uppercase; letter-spacing: 0.08em; }

.pf3d-rating-banner__divider { width: 1px; height: 60px; background: var(--pf-border); }

.pf3d-rating-banner__stats {
  display: flex;
  align-items: center;
  gap: var(--pf-space-10);
  flex: 1;
}

.pf3d-rating-stat { text-align: center; }
.pf3d-rating-stat__num { display: block; font-family: var(--pf-font-heading); font-size: var(--pf-text-2xl); font-weight: var(--pf-font-bold); color: var(--pf-text-primary); }
.pf3d-rating-stat__label { font-size: var(--pf-text-xs); color: var(--pf-text-muted); }

.pf3d-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--pf-space-5);
}

.pf3d-testimonial-card {
  background: var(--pf-bg-card);
  border: 1px solid var(--pf-border);
  border-radius: var(--pf-radius-xl);
  padding: var(--pf-space-8);
  transition: all var(--pf-transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--pf-space-4);
}

.pf3d-testimonial-card:hover {
  border-color: var(--pf-border-light);
  transform: translateY(-3px);
  box-shadow: var(--pf-shadow-lg);
}

.pf3d-testimonial-card__quote { color: var(--pf-primary); }

.pf3d-testimonial-card__text {
  font-size: var(--pf-text-base);
  color: var(--pf-text-secondary);
  line-height: var(--pf-leading-relaxed);
  border: none;
  padding: 0;
  margin: 0;
  background: none;
  flex: 1;
  font-style: normal;
}

.pf3d-testimonial-card__reviewer {
  display: flex;
  align-items: center;
  gap: var(--pf-space-3);
  padding-top: var(--pf-space-4);
  border-top: 1px solid var(--pf-border);
}

.pf3d-testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.pf3d-testimonial-card__avatar--initials {
  background: var(--pf-primary-glow);
  border: 1px solid rgba(255,87,34,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pf-font-heading);
  font-weight: var(--pf-font-bold);
  font-size: var(--pf-text-base);
  color: var(--pf-primary);
}

.pf3d-testimonial-card__info { flex: 1; }
.pf3d-testimonial-card__name { display: block; font-size: var(--pf-text-sm); color: var(--pf-text-primary); }
.pf3d-testimonial-card__location { display: flex; align-items: center; gap: 4px; font-size: var(--pf-text-xs); color: var(--pf-text-muted); margin-top: 2px; }
.pf3d-testimonial-card__location svg { width: 12px; height: 12px; }

.pf3d-testimonial-card__verified {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  color: var(--pf-success);
  flex-shrink: 0;
}

.pf3d-testimonial-card__verified svg { width: 12px; height: 12px; }

/* Star ratings global */
.pf3d-stars { display: flex; gap: 2px; }
.pf3d-star { display: flex; align-items: center; }
.pf3d-star svg { width: 14px; height: 14px; }
.pf3d-star--filled svg { color: #FFB300; }
.pf3d-star--empty  svg { color: var(--pf-border-light); }

/* ── CTA BANNER ──────────────────────────────────────────────────────────── */
.pf3d-cta-banner {
  position: relative;
  overflow: hidden;
  background: var(--pf-bg-base);
  padding: var(--pf-space-24) 0;
  border-top: 1px solid var(--pf-border);
}

.pf3d-cta-banner__bg {
  position: absolute;
  inset: 0;
  opacity: 0.5;
}

.pf3d-cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.pf3d-cta-banner__eyebrow { margin-bottom: var(--pf-space-4); }

.pf3d-cta-banner__title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: var(--pf-font-extrabold);
  color: var(--pf-text-primary);
  margin-bottom: var(--pf-space-5);
  line-height: 1.15;
}

.pf3d-cta-banner__desc {
  font-size: var(--pf-text-lg);
  color: var(--pf-text-muted);
  max-width: 580px;
  margin: 0 auto var(--pf-space-10);
  line-height: var(--pf-leading-relaxed);
}

.pf3d-cta-banner__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pf-space-4);
  flex-wrap: wrap;
  margin-bottom: var(--pf-space-8);
}

.pf3d-cta-banner__features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--pf-space-8);
  flex-wrap: wrap;
}

.pf3d-cta-feat {
  display: flex;
  align-items: center;
  gap: var(--pf-space-2);
  font-size: var(--pf-text-sm);
  color: var(--pf-text-muted);
}

.pf3d-cta-feat svg { color: var(--pf-primary); flex-shrink: 0; }
