:root {
  --primary: #5a36c4;
  --primary-dark: #170576;
  --primary-light: #f3f0ff;
  --secondary: #0058aa;
  --accent: #4169E1;
  --purple-hero: #6219B8;
  --gold: #FFB84D;
}

* { box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
  margin: 0;
  color: #1f2937;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Navigation */
.nav-link {
  position: relative;
  display: inline-block;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover { color: var(--secondary); }

.nav-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: currentColor;
  transition: width 0.3s ease-in-out;
}

.nav-link:hover::after { width: 100%; }

.nav-link.active { color: var(--secondary); font-weight: 600; }

.btn-primary {
  background-color: var(--primary);
  color: white;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}

.btn-primary:hover { background-color: var(--secondary); }

.btn-secondary {
  background-color: var(--secondary);
  color: white;
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-secondary:hover {
  background-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(90, 54, 196, 0.3);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 0.875rem 2rem;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover { background: rgba(255,255,255,0.1); }

/* Header */
.site-header {
  background: white;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0;
}

.site-logo { height: 3.7rem; width: auto; }

.nav-desktop {
  display: none;
  gap: 2rem;
  align-items: center;
}

.nav-actions { display: none; align-items: center; gap: 0.75rem; }

.menu-toggle {
  display: flex;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-menu {
  display: none;
  padding: 0.5rem 0 1rem;
  border-top: 1px solid #e5e7eb;
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  padding: 0.75rem;
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}

.mobile-menu a:hover { color: var(--secondary); }

@media (min-width: 768px) {
  .nav-desktop, .nav-actions { display: flex; }
  .menu-toggle { display: none; }
}

/* Hero */
.hero {
  background: linear-gradient(135deg, #5a36c4 0%, #5b18c3 50%, #0058aa 100%);
  min-height: calc(100vh - 4.5rem);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 25%, rgba(255,255,255,0.08) 0%, transparent 50%),
    radial-gradient(circle at 25% 75%, rgba(0,88,170,0.2) 0%, transparent 50%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 9999px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin: 0 0 1.5rem;
}

.hero h1 .gradient-text {
  background: linear-gradient(90deg, #60a5fa, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  color: #e5e7eb;
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  max-width: 36rem;
  margin-bottom: 2rem;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.feature-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: background 0.3s ease;
}

.feature-card:hover { background: rgba(255,255,255,0.15); }

.feature-card i {
  font-size: 2rem;
  color: #60a5fa;
  flex-shrink: 0;
}

.feature-card h3 {
  color: white;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.feature-card p {
  color: #d1d5db;
  font-size: 0.875rem;
  margin: 0.25rem 0 0;
}

.feature-grid { display: flex; flex-direction: column; gap: 1rem; }

/* Sections */
.section { padding: 5rem 0; }
.section-white { background: white; }
.section-purple { background: var(--primary-light); }

.section-header { text-align: center; margin-bottom: 3rem; }

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 1rem;
}

.section-header p {
  color: var(--secondary);
  font-size: 1.125rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* Wellness tiles */
.wellness-tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .wellness-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .wellness-tiles { grid-template-columns: repeat(4, 1fr); }
}

.wtile {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  padding: 2.25rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: white;
  min-height: 24rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.wtile:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 55px rgba(0,0,0,0.22);
}

.wtile-purple { background: linear-gradient(150deg, #6b46e0 0%, #3d1f99 100%); }
.wtile-blue   { background: linear-gradient(150deg, #1a7fd4 0%, #003d7a 100%); }
.wtile-indigo { background: linear-gradient(150deg, #4f79f0 0%, #2a45c4 100%); }
.wtile-violet { background: linear-gradient(150deg, #8b3cf7 0%, #5b21b6 100%); }

.wtile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 10%, rgba(255,255,255,0.13) 0%, transparent 55%);
  pointer-events: none;
}

.wtile-deco {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  font-size: 9rem;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.wtile-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255,255,255,0.18);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(255,255,255,0.25);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.wtile h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0 0 0.625rem;
  color: white;
  position: relative;
  z-index: 1;
}

.wtile > p {
  color: rgba(255,255,255,0.78);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
  position: relative;
  z-index: 1;
}

.wtile ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  position: relative;
  z-index: 1;
}

.wtile li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.875rem;
  margin-bottom: 0.625rem;
}

.wtile li i {
  color: rgba(255,255,255,0.55);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.wtile-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  background: rgba(255,255,255,0.15);
  color: white;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: background 0.25s ease, gap 0.25s ease;
  position: relative;
  z-index: 1;
  width: fit-content;
}

.wtile:hover .wtile-cta {
  background: rgba(255,255,255,0.28);
  gap: 0.75rem;
}

/* Product cards */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
}

.product-card {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.product-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); }

.product-card-inner { padding: 1.25rem; }

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-green { background: #22c55e; color: white; }
.badge-outline { background: white; border: 2px solid var(--primary); color: var(--primary); }

.product-layout {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .product-layout { flex-direction: row; }
}

.product-info { flex: 1; }

.product-info h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.25rem;
}

.product-price {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.product-features { list-style: none; padding: 0; margin: 0 0 1rem; }

.product-features li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.375rem 0.75rem;
  border: 1px solid #f3f4f6;
  border-radius: 0.5rem;
  margin-bottom: 0.375rem;
  font-size: 0.75rem;
}

.product-features li i { color: var(--primary); }

.product-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .product-actions { flex-direction: row; }
}

.product-actions a {
  flex: 1;
  text-align: center;
  padding: 0.625rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-get-started {
  background: var(--primary);
  color: white;
}

.btn-get-started:hover { background: var(--secondary); }

.btn-learn-more {
  background: white;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-learn-more:hover {
  background: var(--primary);
  color: white;
}

.product-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-image img {
  max-height: 12rem;
  width: auto;
  object-fit: contain;
}

/* Weight calculator */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .two-col { grid-template-columns: 1fr 1fr; }
}

.calculator-box {
  background: #f3f4f6;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.weight-slider {
  width: 100%;
  height: 0.75rem;
  border-radius: 0.5rem;
  appearance: none;
  cursor: pointer;
  background: linear-gradient(to right, var(--primary) 50%, #e5e7eb 50%);
  outline: none;
}

.weight-slider::-webkit-slider-thumb {
  appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.weight-display {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin: 1rem 0;
}

.weight-result {
  background: white;
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.weight-result .loss-amount {
  font-size: 2.5rem;
  font-weight: 700;
  color: #22c55e;
}

/* Benefits grid */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}

.benefit-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.benefit-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.benefit-icon i { font-size: 1.5rem; color: var(--primary); }

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.75rem;
}

.benefit-card p {
  color: #4b5563;
  line-height: 1.6;
  margin: 0;
}

/* Testimonials */
.testimonials-wrapper {
  background: white;
  border-radius: 1.5rem;
  padding: 3rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

.testimonial-card {
  background: linear-gradient(135deg, #f8fafc, #f3f0ff);
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
}

.testimonial-stars { color: #fbbf24; margin-bottom: 1rem; }

.testimonial-card p {
  color: #374151;
  font-style: italic;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.author-name { font-weight: 700; color: var(--primary-dark); }
.author-label { font-size: 0.875rem; color: #6b7280; }

/* FAQ */
.faq-list { max-width: 56rem; margin: 0 auto; }

.faq-item {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  transition: background 0.2s ease;
}

.faq-question:hover { background: #f9fafb; }

.faq-question i {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.faq-item.open .faq-question i { transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
  color: #4b5563;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.faq-answer p:last-child { margin-bottom: 0; }

/* Footer */
.site-footer {
  background: #f8f7ff;
  color: #1f2937;
  padding: 4rem 0 2rem;
  border-top: 3px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: repeat(4, 1fr); }
}

.footer-logo { height: 5rem; margin-bottom: 1rem; }

.social-links { display: flex; gap: 0.75rem; }

.social-links a {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  transition: background 0.3s ease;
}

.social-links a:hover { background: var(--secondary); }

.footer-col h3 {
  color: var(--primary-dark);
  font-size: 1.125rem;
  margin: 0 0 1.5rem;
}

.footer-col ul { list-style: none; padding: 0; margin: 0; }

.footer-col li { margin-bottom: 0.75rem; }

.footer-col a {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col a:hover { color: var(--primary); }

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #4b5563;
}

.footer-contact i { color: var(--primary); }

.newsletter {
  border-top: 1px solid #e0d9ff;
  padding-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.newsletter h3 { color: var(--primary-dark); margin-bottom: 1rem; }
.newsletter p { color: #4b5563; margin-bottom: 1.5rem; }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 28rem;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .newsletter-form { flex-direction: row; }
}

.newsletter-form input {
  flex: 1;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: 1px solid #c4b5f5;
  background: white;
  color: #1f2937;
  outline: none;
}

.newsletter-form input:focus { border-color: var(--primary); }

.footer-bottom {
  border-top: 1px solid #e0d9ff;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

.footer-bottom p { color: #6b7280; margin: 0; }

.payment-icons { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

.payment-icons img { height: 2rem; opacity: 1; }
.payment-icons img[alt="American Express"] { height: 2.75rem; }
.payment-icons img[alt="Affirm"] { height: 1.375rem; }
.payment-icons img[alt="Klarna"] { height: 2rem; }

.footer-disclaimer {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
  margin-top: 2rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

/* Service page heroes */
.sph {
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  min-height: 75vh;
  display: flex;
  align-items: center;
}

.hero-weight-loss { background: linear-gradient(135deg, #5a36c4 0%, #5b18c3 50%, #0058aa 100%); }
.hero-mood-energy  { background: linear-gradient(135deg, #0058aa 0%, #1a7fd4 50%, #4169E1 100%); }
.hero-strength     { background: linear-gradient(135deg, #170576 0%, #4169E1 70%, #5a36c4 100%); }
.hero-anti-aging   { background: linear-gradient(135deg, #7c3aed 0%, #5a36c4 50%, #0058aa 100%); }

.sph::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.09) 0%, transparent 50%),
    radial-gradient(circle at 20% 82%, rgba(0,0,0,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.sph-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .sph-grid { grid-template-columns: 1fr 1fr; gap: 5rem; }
}

.sph-badge {
  background: rgba(255,255,255,0.15);
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.sph-left h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin: 0 0 1.25rem;
}

.sph-accent { color: #fbbf24; }

.sph-left > p {
  color: rgba(255,255,255,0.82);
  font-size: 1.1rem;
  line-height: 1.7;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.sph-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.sph-stat { display: flex; flex-direction: column; }

.sph-stat-val {
  font-size: 1.625rem;
  font-weight: 700;
  color: #fbbf24;
  line-height: 1;
}

.sph-stat-lbl {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.68);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sph-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255,255,255,0.2);
}

.sph-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sph-feature {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 1rem;
  padding: 1.25rem 1.5rem;
  transition: background 0.3s ease;
}

.sph-feature:hover { background: rgba(255,255,255,0.17); }

.sph-ficon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fbbf24;
  flex-shrink: 0;
}

.sph-feature h3 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.2rem;
}

.sph-feature p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
  line-height: 1.5;
}

/* Review images section */
.reviews-banner-section {
  padding: 3rem 0;
  background: var(--primary-light);
}

.review-images {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.review-images img {
  max-width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .review-images { flex-direction: row; justify-content: center; flex-wrap: wrap; }
  .review-images img { max-width: 45%; }
}

/* Offer banner */
.offer-banner {
  width: 100%;
  display: block;
}

/* Register page */
.register-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: calc(100vh - 4.5rem);
}

@media (min-width: 1024px) {
  .register-hero { grid-template-columns: 1fr 1fr; }
}

.register-hero-left {
  background: linear-gradient(150deg, #5a36c4 0%, #5b18c3 50%, #0058aa 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 4rem 3rem;
}

.register-hero-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 15%, rgba(255,255,255,0.1) 0%, transparent 55%);
  pointer-events: none;
}

.register-hero-content { position: relative; z-index: 1; max-width: 28rem; }

.register-hero-logo { height: 3.5rem; width: auto; margin-bottom: 2rem; }

.register-hero-left h1 {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.register-hero-left > div > p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
}

.register-trust {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.register-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.register-trust-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(255,255,255,0.15);
  border-radius: 0.75rem;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: #fbbf24;
  flex-shrink: 0;
}

.register-trust-item strong {
  display: block;
  color: white;
  font-size: 0.9375rem;
  margin-bottom: 0.1rem;
}

.register-trust-item p {
  color: rgba(255,255,255,0.68);
  font-size: 0.8125rem;
  margin: 0;
}

.register-hero-right {
  background: #f8f7ff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}

.register-form-card {
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 8px 40px rgba(90,54,196,0.12);
  padding: 2.5rem;
  width: 100%;
  max-width: 38rem;
}

.register-form-card h2 {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.375rem;
}

.register-form-card > p {
  color: #6b7280;
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.register-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-weight: 400;
}

.register-checkbox input { width: auto; margin-top: 0.2rem; flex-shrink: 0; }
.register-checkbox span { color: #374151; font-size: 0.875rem; line-height: 1.5; }

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #374151;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus { border-color: var(--primary); }

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
}

/* FAQ page */
.faq-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-bottom: 3rem;
}

.faq-cat-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  border: 2px solid #e0d9ff;
  background: white;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: all 0.2s ease;
}

.faq-cat-btn:hover,
.faq-cat-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

.faq-category-section { margin-bottom: 3.5rem; }

.faq-category-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #ede9fe;
}

.faq-category-title i { color: var(--primary); }

.faq-cta-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: linear-gradient(135deg, #5a36c4, #0058aa);
  border-radius: 1.25rem;
  padding: 2rem 2.5rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.faq-cta-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255,255,255,0.15);
  border-radius: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fbbf24;
  flex-shrink: 0;
}

.faq-cta-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.25rem;
}

.faq-cta-box p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  margin: 0;
}

.faq-cta-box > div { flex: 1; }

/* Contact page */
.contact-hero {
  background: linear-gradient(135deg, #5a36c4 0%, #5b18c3 50%, #0058aa 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.09) 0%, transparent 55%);
  pointer-events: none;
}

.contact-hero-inner { position: relative; z-index: 1; max-width: 42rem; margin: 0 auto; }

.contact-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  color: white;
  margin: 0 0 1rem;
}

.contact-hero p {
  color: rgba(255,255,255,0.88);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-hero-badges {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.contact-hero-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 9999px;
  color: white;
  font-size: 0.875rem;
  font-weight: 500;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 420px; }
}

.contact-form-wrap h2 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.5rem;
}

.contact-form-wrap > p {
  color: #6b7280;
  margin-bottom: 2rem;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 480px) {
  .contact-form-row { grid-template-columns: 1fr; }
}

.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.form-group textarea:focus { border-color: var(--primary); }

.contact-success {
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding: 1rem 1.5rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 0.75rem;
  color: #166534;
  font-weight: 600;
}

.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact-info-card,
.contact-faq-card {
  background: white;
  border-radius: 1.25rem;
  box-shadow: 0 4px 20px rgba(90,54,196,0.08);
  border: 1px solid #ede9fe;
  padding: 2rem;
}

.contact-info-card h3,
.contact-faq-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 1.5rem;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.contact-info-list strong {
  display: block;
  font-size: 0.8125rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.2rem;
}

.contact-info-list a,
.contact-info-list span {
  color: var(--primary-dark);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.9375rem;
}

.contact-info-list a:hover { color: var(--primary); }

.contact-social p {
  font-size: 0.8125rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.contact-faq-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 1.5rem; }

.contact-faq-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
}

.contact-faq-item > i {
  color: var(--primary);
  font-size: 0.75rem;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.contact-faq-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--primary-dark);
  margin-bottom: 0.25rem;
}

.contact-faq-item p {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.5;
}

.contact-faq-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.contact-faq-link:hover { gap: 0.75rem; }

/* Confirmation page */
.confirmation-page {
  padding: 0;
}

.confirmation-banner {
  width: 100%;
  display: block;
}

.confirmation-content {
  padding: 3rem 0;
  text-align: center;
}

.confirmation-content h2 {
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-bottom: 1rem;
}

.confirmation-content p {
  color: #6b7280;
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-in {
  animation: fadeInUp 0.8s ease forwards;
}

/* Utility */
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.bg-primary-light { background: var(--primary-light); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Product detail pages */
.product-page-hero {
  padding: 4rem 0;
  background: white;
  border-bottom: 1px solid #f1f5f9;
}
.product-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
}
@media (min-width: 768px) {
  .product-page-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}
.product-img-wrap {
  background: var(--primary-light);
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 22rem;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-height: none;
}
.product-breadcrumb {
  font-size: 0.8125rem;
  color: #9ca3af;
  margin-bottom: 1rem;
}
.product-breadcrumb a { color: var(--primary); text-decoration: none; }
.product-page-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 0.75rem;
}
.pp-rating {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
  color: #6b7280;
  flex-wrap: wrap;
}
.pp-rating .stars { color: #fbbf24; letter-spacing: 0.05em; }
.pp-price {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.pp-price span { font-size: 1rem; font-weight: 400; color: #6b7280; }
.pp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.pp-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.875rem;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.pp-badge.green { background: #f0fdf4; color: #15803d; }
.pp-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.pp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: #374151;
  line-height: 1.5;
}
.pp-bullets li i { color: var(--primary); margin-top: 0.2rem; flex-shrink: 0; }
.pp-cta-group { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.pp-cta-group .btn-secondary { flex: 1; justify-content: center; min-width: 160px; }
.pp-cta-group .btn-outline-dark {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 0.875rem 1.5rem;
  border-radius: 0.75rem;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}
.pp-cta-group .btn-outline-dark:hover { background: var(--primary); color: white; }

/* Product benefits grid */
.pp-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (min-width: 1024px) {
  .pp-benefits { grid-template-columns: repeat(4, 1fr); }
}
.pp-benefit {
  background: white;
  border-radius: 1rem;
  padding: 1.75rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(90,54,196,0.07);
  border: 1px solid #ede9fe;
  transition: transform 0.3s ease;
}
.pp-benefit:hover { transform: translateY(-4px); }
.pp-benefit-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.375rem;
  color: var(--primary);
}
.pp-benefit h3 { font-size: 1rem; font-weight: 700; color: var(--primary-dark); margin: 0 0 0.5rem; }
.pp-benefit p { font-size: 0.8125rem; color: #6b7280; margin: 0; line-height: 1.5; }

/* How it works */
.pp-steps { display: flex; flex-direction: column; gap: 0; }
.pp-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  position: relative;
}
.pp-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.4375rem;
  top: 3rem;
  bottom: -1px;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), transparent);
}
.pp-step-num {
  width: 2.875rem;
  height: 2.875rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.pp-step-body { padding: 0.3rem 0 2.5rem; }
.pp-step-body h3 { font-size: 1.125rem; font-weight: 700; color: var(--primary-dark); margin: 0 0 0.5rem; }
.pp-step-body p { color: #4b5563; line-height: 1.7; margin: 0; font-size: 0.9375rem; }

/* Product CTA banner */
.pp-cta-banner {
  background: linear-gradient(135deg, #5a36c4, #0058aa);
  border-radius: 1.5rem;
  padding: 3rem;
  text-align: center;
  margin: 0 0 3rem;
}
.pp-cta-banner h2 { color: white; font-size: 1.75rem; margin: 0 0 0.75rem; }
.pp-cta-banner p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; }

