/* ==========================================================================
   Products & Services Page Styles
   Extends styles.css — matches Future Up brand system
   ========================================================================== */

/* Hero */
.products-hero {
  padding: 160px 0 60px;
  background: var(--fu-bg);
  position: relative;
  overflow: hidden;
}
.products-hero::before {
  content: "";
  position: absolute;
  top: -120px; right: -100px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(179,157,219,0.4), transparent 70%);
  filter: blur(70px);
  pointer-events: none;
}
.products-hero::after {
  content: "";
  position: absolute;
  bottom: -180px; left: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(106,79,182,0.28), transparent 70%);
  filter: blur(60px);
  pointer-events: none;
}
.products-hero-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
  text-align: center;
}
.products-hero .breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--fu-text-muted);
  margin-bottom: 24px;
}
.products-hero .breadcrumb a { color: var(--fu-purple-deep); font-weight: 500; }
.products-hero .breadcrumb span.sep { color: var(--fu-text-light); }
.products-hero .hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--fu-border);
  border-radius: var(--radius-pill);
  font-size: 0.82rem; font-weight: 500;
  color: var(--fu-purple-deep);
  margin-bottom: 28px;
}
.products-hero .hero-badge .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
.products-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.8rem);
  line-height: 1.15;
  margin-bottom: 24px;
  max-width: 980px;
  margin-left: auto; margin-right: auto;
  text-wrap: balance;
}
.products-hero p.lede {
  font-size: 1.1rem;
  color: var(--fu-text-muted);
  max-width: 720px;
  line-height: 1.75;
  margin: 0 auto;
  text-wrap: pretty;
}

/* Trust stats row */
.trust-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--fu-text);
  font-weight: 500;
}
.trust-item svg {
  width: 22px; height: 22px;
  color: var(--fu-purple-deep);
  flex-shrink: 0;
}
.trust-item strong {
  color: var(--fu-purple-deep);
  font-family: var(--font-heading);
  font-weight: 700;
}
.trust-divider {
  width: 1px; height: 20px;
  background: var(--fu-border);
}

/* ==========================================================================
   Section Header (Products page shared)
   ========================================================================== */
.ps-section-header {
  max-width: var(--container);
  margin: 0 auto 56px;
  padding: 0 24px;
  text-align: center;
}
.ps-section-header .section-eyebrow {
  justify-content: center;
}
.ps-section-header .section-eyebrow::after {
  content: "";
  width: 32px; height: 1px;
  background: currentColor;
}
.ps-section-header h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 14px;
  text-wrap: balance;
}
.ps-section-header p {
  color: var(--fu-text-muted);
  font-size: 1.02rem;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.7;
}
.section-dark .ps-section-header h2 { color: #fff; }
.section-dark .ps-section-header p { color: rgba(255,255,255,0.7); }
.section-dark .ps-section-header .section-eyebrow { color: var(--fu-purple-soft); }

/* ==========================================================================
   Pricing Cards
   ========================================================================== */
.pricing-section {
  padding: 80px 0 60px;
  background: var(--fu-bg);
  position: relative;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  align-items: stretch;
}
.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-card {
  background: #fff;
  border: 1px solid var(--fu-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease);
  box-shadow: var(--shadow-card);
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--fu-purple-soft);
}

.pricing-card-featured {
  background: linear-gradient(180deg, #1a1a2e 0%, #252540 100%);
  border: 1px solid rgba(179,157,219,0.25);
  color: rgba(255,255,255,0.85);
  transform: scale(1.02);
}
.pricing-card-featured:hover {
  transform: scale(1.02) translateY(-6px);
  border-color: var(--fu-purple-soft);
  box-shadow: 0 20px 60px rgba(106,79,182,0.35);
}
.pricing-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(135deg, rgba(179,157,219,0.5), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}

.pricing-badge-popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--grad-primary);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 6px 20px rgba(106,79,182,0.4);
  z-index: 2;
  white-space: nowrap;
}

.pricing-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: rgba(106,79,182,0.08);
  color: var(--fu-purple-deep);
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 16px;
  align-self: flex-start;
}
.pricing-card-featured .pricing-card-tag {
  background: rgba(179,157,219,0.15);
  color: var(--fu-purple-soft);
}

.pricing-card h3 {
  font-size: 1.4rem;
  line-height: 1.3;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
  color: var(--fu-text);
}
.pricing-card-featured h3 { color: #fff; }

.pricing-card-audience {
  font-size: 0.88rem;
  color: var(--fu-text-muted);
  line-height: 1.6;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--fu-border);
}
.pricing-card-featured .pricing-card-audience {
  color: rgba(255,255,255,0.6);
  border-bottom-color: rgba(255,255,255,0.12);
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
.pricing-price-currency {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--fu-text-muted);
}
.pricing-card-featured .pricing-price-currency { color: rgba(255,255,255,0.6); }
.pricing-price-amount {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--fu-text);
  line-height: 1;
}
.pricing-card-featured .pricing-price-amount {
  background: linear-gradient(135deg, #ffffff 0%, #b39ddb 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing-price-unit {
  font-size: 0.9rem;
  color: var(--fu-text-muted);
  font-weight: 500;
}
.pricing-card-featured .pricing-price-unit { color: rgba(255,255,255,0.6); }

/* Custom-quote price block (no fixed amount) */
.pricing-price-custom {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 6px;
}
.pricing-price-quote {
  font-family: var(--font-heading);
  font-size: 1.9rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pricing-price-hint {
  font-size: 0.82rem;
  color: var(--fu-text-muted);
  font-weight: 500;
}

.pricing-terms {
  font-size: 0.8rem;
  color: var(--fu-text-muted);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pricing-card-featured .pricing-terms { color: rgba(255,255,255,0.55); }
.pricing-terms svg { width: 14px; height: 14px; opacity: 0.7; }

.pricing-value {
  padding: 16px 18px;
  background: rgba(106,79,182,0.05);
  border-left: 3px solid var(--fu-purple-deep);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.88rem;
  line-height: 1.65;
  color: var(--fu-text);
  margin-bottom: 24px;
}
.pricing-card-featured .pricing-value {
  background: rgba(179,157,219,0.08);
  border-left-color: var(--fu-purple-soft);
  color: rgba(255,255,255,0.85);
}

.pricing-deliverables-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fu-text-muted);
  margin-bottom: 14px;
}
.pricing-card-featured .pricing-deliverables-label { color: var(--fu-purple-soft); }

.pricing-deliverables {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  flex-grow: 1;
}
.pricing-deliverables li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--fu-text);
}
.pricing-card-featured .pricing-deliverables li { color: rgba(255,255,255,0.85); }

/* Platform stack — mini variant inside pricing cards */
.platform-stack-mini {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin: 4px 0 20px;
  background: rgba(0,0,0,0.03);
  border: 1px solid var(--fu-border);
  border-radius: 10px;
}
.platform-stack-mini-label {
  font-family: var(--font-heading);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fu-text-light);
  white-space: nowrap;
}
.platform-stack-mini img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  transition: transform 0.3s var(--ease);
}
.platform-stack-mini img:hover {
  transform: scale(1.2) translateY(-2px);
}
/* Featured (dark) card — give logos a light halo so dark ones (TikTok, OpenAI) stay visible */
.pricing-card-featured .platform-stack-mini {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
}
.pricing-card-featured .platform-stack-mini-label { color: rgba(255,255,255,0.6); }
.pricing-card-featured .platform-stack-mini img {
  background: rgba(255,255,255,0.95);
  border-radius: 4px;
  padding: 2px;
  box-sizing: content-box;
}
.pricing-check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad-primary);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.pricing-check svg { width: 11px; height: 11px; stroke: #fff; stroke-width: 3; fill: none; }

.pricing-cta {
  width: 100%;
  justify-content: center;
  padding: 15px 20px;
  font-size: 0.95rem;
}
.pricing-card:not(.pricing-card-featured) .pricing-cta {
  background: transparent;
  color: var(--fu-text);
  border: 1px solid var(--fu-border);
  box-shadow: none;
}
.pricing-card:not(.pricing-card-featured) .pricing-cta::before { display: none; }
.pricing-card:not(.pricing-card-featured) .pricing-cta:hover {
  border-color: var(--fu-purple-deep);
  color: var(--fu-purple-deep);
  background: rgba(106,79,182,0.04);
  box-shadow: none;
  transform: translateY(-1px);
}

/* "Business Partner" cards — light cream section with purple accents */
.partner-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #faf8fc 0%, #f4eef9 100%);
  color: var(--fu-dark);
  position: relative;
  overflow: hidden;
}

.partner-section::before {
  content: "";
  position: absolute;
  top: 10%; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(106,79,182,0.10), transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}
.partner-section::after {
  content: "";
  position: absolute;
  bottom: -120px; left: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(179,157,219,0.14), transparent 70%);
  filter: blur(90px);
  pointer-events: none;
}
.partner-section .ps-section-header { position: relative; z-index: 1; }
.partner-section .ps-section-header .section-eyebrow { color: var(--fu-purple-deep); }
.partner-section .ps-section-header h2 { color: var(--fu-dark); }
.partner-section .ps-section-header p { color: var(--fu-text-muted); }
.partner-section .pricing-grid { position: relative; z-index: 1; }

/* Partner cards — elevated white cards with purple top border */
.partner-section .pricing-card {
  background: #ffffff;
  border: 1px solid rgba(106,79,182,0.14);
  color: var(--fu-dark);
  box-shadow: 0 12px 40px rgba(106,79,182,0.10);
  position: relative;
}
.partner-section .pricing-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--grad-primary);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.partner-section .pricing-card:hover {
  border-color: var(--fu-purple-deep);
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(106,79,182,0.22);
}
.partner-section .pricing-card h3 { color: var(--fu-dark); }
.partner-section .pricing-card-audience {
  color: var(--fu-text-muted);
  border-bottom-color: var(--fu-border);
}
.partner-section .pricing-price-currency,
.partner-section .pricing-price-unit { color: var(--fu-text-muted); }
.partner-section .pricing-terms { color: var(--fu-text-light); }
.partner-section .pricing-price-amount {
  background: var(--grad-primary);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.partner-section .pricing-value {
  background: rgba(106,79,182,0.06);
  border-left-color: var(--fu-purple-deep);
  color: var(--fu-dark);
}
.partner-section .pricing-deliverables-label { color: var(--fu-purple-deep); }
.partner-section .pricing-deliverables li { color: var(--fu-dark); }
.partner-section .pricing-card-tag {
  background: rgba(106,79,182,0.10);
  color: var(--fu-purple-deep);
}
.partner-section .pricing-check svg { stroke: var(--fu-purple-deep); }
/* Partner CTA — vibrant gradient */
.partner-section .pricing-cta {
  background: var(--grad-primary);
  color: #fff;
  border: none;
  box-shadow: 0 8px 24px rgba(106,79,182,0.35);
}
.partner-section .pricing-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 32px rgba(106,79,182,0.45);
  color: #fff;
  border: none;
}

/* ==========================================================================
   USP Section — "Why us over free AI tools?"
   ========================================================================== */
.usp-section {
  padding: 100px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.usp-section::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 800px; height: 800px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(179,157,219,0.08), transparent 60%);
  filter: blur(80px);
  pointer-events: none;
}
.usp-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
@media (max-width: 1100px) {
  .usp-grid { grid-template-columns: 1fr; max-width: 720px; }
}
.usp-card {
  background: var(--fu-bg);
  border: 1px solid var(--fu-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.usp-card:hover {
  transform: translateY(-4px);
  border-color: var(--fu-purple-soft);
  background: #fff;
  box-shadow: var(--shadow-card-hover);
}
.usp-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.usp-card:hover::before { transform: scaleX(1); }
.usp-num {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--fu-purple-deep);
  margin-bottom: 14px;
}
.usp-card h3 {
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.usp-card .usp-lede {
  color: var(--fu-text);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 500;
}
.usp-vs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--fu-border);
  padding-top: 20px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.usp-vs-col {
  padding: 0 16px;
}
.usp-vs-col:first-child {
  border-right: 1px dashed var(--fu-border);
  padding-left: 0;
}
.usp-vs-col:last-child {
  padding-right: 0;
}
.usp-vs-label {
  font-family: var(--font-heading);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.usp-vs-col.free .usp-vs-label { color: var(--fu-text-light); }
.usp-vs-col.us .usp-vs-label { color: var(--fu-purple-deep); }
.usp-vs-col.free { color: var(--fu-text-muted); }
.usp-vs-col.us { color: var(--fu-text); font-weight: 500; }

/* ==========================================================================
   Comparison Table
   ========================================================================== */
.compare-section {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid var(--fu-border);
}
.compare-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.compare-header {
  text-align: center;
  margin-bottom: 48px;
}
.compare-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 12px;
}
.compare-header p {
  color: var(--fu-text-muted);
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--fu-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--fu-border);
}
.compare-table th, .compare-table td {
  padding: 20px 24px;
  text-align: left;
  font-size: 0.94rem;
  border-bottom: 1px solid var(--fu-border);
  vertical-align: middle;
}
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: none; }
.compare-table thead th {
  background: #fff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--fu-text);
  vertical-align: bottom;
}
.compare-table thead th.compare-plan-head { text-align: center; min-width: 180px; }
.compare-table thead th .plan-title {
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
  display: block;
}
.compare-table thead th .plan-price {
  display: inline-block;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(106,79,182,0.08);
  color: var(--fu-purple-deep);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.compare-table thead th.featured {
  background: linear-gradient(180deg, rgba(106,79,182,0.06), transparent);
  border-bottom: 2px solid var(--fu-purple-deep);
}
.compare-table thead th.featured .plan-price {
  background: var(--grad-primary);
  color: #fff;
}
.compare-table tbody th {
  font-weight: 600;
  color: var(--fu-text-muted);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: 22%;
  background: transparent;
}
.compare-table tbody td {
  text-align: center;
  color: var(--fu-text);
  font-weight: 500;
}
.compare-table tbody td.featured-col {
  background: rgba(106,79,182,0.03);
  font-weight: 600;
}

/* ==========================================================================
   Order Form Section
   ========================================================================== */
.order-section {
  background: var(--fu-dark);
  padding: 100px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.order-section::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,111,217,0.25), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}
.order-section::after {
  content: "";
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(92,107,192,0.22), transparent 70%);
  filter: blur(80px);
  pointer-events: none;
}

.order-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.order-header {
  text-align: center;
  margin-bottom: 56px;
}
.order-header .section-eyebrow { color: var(--fu-purple-soft); justify-content: center; }
.order-header .section-eyebrow::before,
.order-header .section-eyebrow::after {
  content: "";
  width: 32px; height: 1px;
  background: currentColor;
}
.order-header h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
  text-wrap: balance;
}
.order-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.order-form {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 48px;
}
.order-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.order-form .form-group { margin-bottom: 20px; }
.order-form label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.order-form label .req { color: var(--fu-purple-soft); margin-left: 2px; }
.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  font-family: inherit;
  font-size: 0.95rem;
  color: #fff;
  transition: all 0.3s var(--ease);
}
.order-form input::placeholder,
.order-form textarea::placeholder { color: rgba(255,255,255,0.35); }
.order-form input:focus,
.order-form textarea:focus,
.order-form select:focus {
  outline: none;
  border-color: var(--fu-purple-soft);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(179,157,219,0.12);
}
.order-form textarea { resize: vertical; min-height: 120px; }
.order-form select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b39ddb' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.order-form select option {
  background: #1a1a2e;
  color: #fff;
  padding: 12px;
}
.order-form .form-submit {
  width: 100%;
  padding: 18px;
  justify-content: center;
  margin-top: 12px;
  font-size: 1rem;
}
.order-form-note {
  text-align: center;
  margin-top: 20px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.order-form-note a { color: var(--fu-purple-soft); font-weight: 500; }
.order-form-note a:hover { color: #fff; }
.order-form .form-success {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.35);
  border-radius: var(--radius);
  color: #86efac;
  font-weight: 600;
  text-align: center;
  display: none;
}
.order-form .form-success.show { display: block; }

/* ==========================================================================
   Products FAQ
   ========================================================================== */
.products-faq {
  padding: 100px 0;
  background: var(--fu-bg);
}
.products-faq-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.products-faq .section-header {
  text-align: center;
  margin: 0 auto 56px;
}
.products-faq .section-eyebrow {
  justify-content: center;
}
.products-faq .section-eyebrow::after {
  content: "";
  width: 32px; height: 1px;
  background: currentColor;
}
.products-faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pfaq-item {
  background: #fff;
  border: 1px solid var(--fu-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.pfaq-item:hover { border-color: var(--fu-purple-soft); }
.pfaq-item.open {
  border-color: var(--fu-purple-deep);
  box-shadow: var(--shadow-card);
}
.pfaq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--fu-text);
  text-align: left;
  cursor: pointer;
  background: transparent;
}
.pfaq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  position: relative;
}
.pfaq-icon::before, .pfaq-icon::after {
  content: "";
  position: absolute;
  background: var(--fu-purple-deep);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.pfaq-icon::before {
  top: 50%; left: 4px; right: 4px; height: 2px;
  transform: translateY(-50%);
}
.pfaq-icon::after {
  top: 4px; bottom: 4px; left: 50%; width: 2px;
  transform: translateX(-50%);
}
.pfaq-item.open .pfaq-icon::after { transform: translateX(-50%) rotate(90deg); }
.pfaq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.pfaq-answer-inner {
  padding: 0 28px 24px;
  color: var(--fu-text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
}
.pfaq-item.open .pfaq-answer { max-height: 320px; }

/* ==========================================================================
   Selected card highlight animation
   ========================================================================== */
.pricing-card.selected {
  border-color: var(--fu-purple-deep);
  box-shadow: 0 0 0 3px rgba(106,79,182,0.15), var(--shadow-card-hover);
}
.pricing-card-featured.selected {
  box-shadow: 0 0 0 3px rgba(179,157,219,0.35), 0 20px 60px rgba(106,79,182,0.35);
}

/* ==========================================================================
   Mobile
   ========================================================================== */
@media (max-width: 968px) {
  .pricing-grid,
  .pricing-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
  }
  .pricing-card-featured {
    transform: none;
  }
  .pricing-card-featured:hover { transform: translateY(-6px); }
  .usp-grid { grid-template-columns: 1fr; }
  .compare-section { padding: 60px 0; }
  .compare-table { font-size: 0.86rem; }
  .compare-table th, .compare-table td { padding: 14px 12px; }
  .order-form { padding: 28px 20px; }
  .order-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .trust-row { gap: 20px; }
  .trust-divider { display: none; }
  .products-hero { padding: 130px 0 40px; }
  .partner-section, .usp-section { padding: 70px 0; }
}

@media (max-width: 640px) {
  .pricing-card { padding: 32px 24px 24px; }
  .compare-section .compare-inner { padding: 0 12px; }
  .compare-table th, .compare-table td { padding: 12px 8px; font-size: 0.8rem; }
  .compare-table tbody th { width: 30%; }
}
