/*
Theme Name: Playify
Theme URI: https://playify.shop
Author: Playify
Author URI: https://playify.shop
Description: A dark, futuristic AI automation agency theme with neon accents, glassmorphism, and full WooCommerce support. Built for Playify.shop.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: dark, woocommerce, business, modern, responsive
Text Domain: playify
WC requires at least: 7.0
WC tested up to: 8.5
*/

/* ========================================
   GOOGLE FONTS
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@400;500;600;700;800&display=swap');

/* ========================================
   CSS VARIABLES
   ======================================== */
:root {
  --bg:          #07070f;
  --bg-2:        #0d0d1a;
  --bg-3:        #12121f;
  --primary:     #8B5CF6;
  --primary-glow:rgba(139, 92, 246, 0.35);
  --secondary:   #3B82F6;
  --secondary-glow:rgba(59, 130, 246, 0.25);
  --text:        #f0f0f5;
  --muted:       #8888aa;
  --border:      rgba(255,255,255,0.07);
  --glass-bg:    rgba(255,255,255,0.04);
  --glass-border:rgba(255,255,255,0.10);
  --radius:      1rem;
  --radius-lg:   1.5rem;
  --radius-xl:   2rem;
  --font-sans:   'Inter', sans-serif;
  --font-display:'Space Grotesk', sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ========================================
   TYPOGRAPHY
   ======================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
}
h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.5rem; }
p  { color: var(--muted); }

.text-gradient {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   LAYOUT
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* ========================================
   GLASS COMPONENTS
   ======================================== */
.glass-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
}

.glass-panel {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-radius: var(--radius-xl);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 2rem;
  border-radius: 50rem;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  box-shadow: 0 0 24px var(--primary-glow);
}
.btn-primary:hover {
  box-shadow: 0 0 40px var(--primary-glow);
  transform: translateY(-2px);
  color: #fff;
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--glass-border);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
  color: #fff;
}

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-sm { padding: .5rem 1.25rem; font-size: .875rem; }

/* ========================================
   NAVBAR
   ======================================== */
#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background .3s, border-color .3s, padding .3s;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(7,7,15,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border);
  padding: .85rem 0;
  box-shadow: 0 8px 32px rgba(0,0,0,.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
}
.logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 0 20px var(--primary-glow);
  flex-shrink: 0;
}

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 500;
  transition: color .2s;
  position: relative;
}
.main-nav a:hover,
.main-nav a.active { color: #fff; }
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  font-size: 1.5rem;
  padding: .25rem;
}

@media (max-width: 768px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(10,10,20,0.97);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    gap: .5rem;
    border-bottom: 1px solid var(--border);
  }
  .main-nav.open a {
    display: block;
    padding: .85rem 1rem;
    border-radius: .75rem;
  }
  .main-nav.open a:hover { background: rgba(255,255,255,.05); }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 6rem;
  padding-bottom: 4rem;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(139,92,246,.18) 0%, transparent 60%),
              radial-gradient(ellipse at 75% 20%, rgba(59,130,246,.12) 0%, transparent 50%),
              var(--bg);
  z-index: 0;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(139,92,246,.1);
  border: 1px solid rgba(139,92,246,.35);
  color: var(--primary);
  border-radius: 50rem;
  padding: .4rem 1rem;
  font-size: .85rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
}
.hero h1 { margin-bottom: 1.25rem; }
.hero p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
}
.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========================================
   STATS STRIP
   ======================================== */
.stats-strip {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,.015);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (max-width: 640px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 1rem;
}
.stat-icon.purple { background: rgba(139,92,246,.12); }
.stat-icon.blue   { background: rgba(59,130,246,.12); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: .35rem;
}
.stat-label { font-size: .875rem; color: var(--muted); }

/* ========================================
   SECTION HEADER
   ======================================== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}
.section-header h2 { margin-bottom: 1rem; }
.section-header p { font-size: 1.05rem; }

/* ========================================
   SERVICES CARDS
   ======================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  position: relative;
  overflow: hidden;
  padding: 2.25rem;
  transition: border-color .3s, transform .3s;
}
.service-card:hover { transform: translateY(-6px); }
.service-card:hover .card-glow { opacity: 1; }
.card-glow {
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0;
  transition: opacity .5s;
  pointer-events: none;
}
.glow-purple { background: rgba(139,92,246,.25); }
.glow-blue   { background: rgba(59,130,246,.25); }

.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  transition: transform .3s;
}
.service-card:hover .card-icon { transform: scale(1.1); }
.service-card h3 { margin-bottom: .75rem; }
.service-card p { margin-bottom: 1.5rem; font-size: .95rem; line-height: 1.65; }
.service-card ul { margin-bottom: 1.75rem; }
.service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  color: #d0d0e0;
  font-size: .9rem;
  margin-bottom: .6rem;
}
.service-card ul li::before { content: '✓'; color: var(--primary); flex-shrink: 0; font-weight: 700; }
.service-card a { color: var(--primary); font-weight: 500; font-size: .9rem; display: inline-flex; align-items: center; gap: .3rem; }
.service-card a:hover { color: #fff; }

/* ========================================
   PROCESS SECTION
   ======================================== */
.process-section { background: rgba(255,255,255,.01); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.process-step-number {
  width: 80px; height: 80px;
  border-radius: 1.25rem;
  background: var(--bg);
  border: 1px solid rgba(139,92,246,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 24px rgba(139,92,246,.15);
}
.process-step h3 { margin-bottom: .6rem; font-size: 1.15rem; }
.process-step p { font-size: .9rem; }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card { padding: 2rem; }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: .95rem; color: #ccc; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: .75rem; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
}
.author-name { font-weight: 600; color: #fff; font-size: .9rem; }
.author-role { font-size: .8rem; color: var(--muted); }

/* ========================================
   CTA BANNER
   ======================================== */
.cta-banner {
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 4rem;
  border-color: rgba(139,92,246,.3);
}
.cta-banner .glow-1 {
  position: absolute;
  top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: rgba(59,130,246,.25);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-banner .glow-2 {
  position: absolute;
  bottom: -60px; left: -60px;
  width: 240px; height: 240px;
  background: rgba(139,92,246,.25);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 1rem; position: relative; z-index: 1; }
.cta-banner p  { font-size: 1.1rem; margin-bottom: 2rem; position: relative; z-index: 1; }
.cta-banner .btn { position: relative; z-index: 1; }

/* ========================================
   FOOTER
   ======================================== */
#site-footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand p { font-size: .9rem; margin-top: .75rem; max-width: 280px; line-height: 1.65; }
.footer-col h4 { font-size: .95rem; color: #fff; margin-bottom: 1.25rem; font-family: var(--font-display); font-weight: 600; }
.footer-col ul li { margin-bottom: .6rem; }
.footer-col ul li a { color: var(--muted); font-size: .875rem; transition: color .2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: .85rem; }

/* ========================================
   PAGE HERO (inner pages)
   ======================================== */
.page-hero {
  padding: 8rem 0 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(139,92,246,.2) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ========================================
   PRICING PAGE
   ======================================== */
.pricing-toggle {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 50rem;
  padding: .35rem;
  margin-top: 2rem;
}
.toggle-btn {
  padding: .5rem 1.25rem;
  border-radius: 50rem;
  border: none;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
  background: none;
  color: var(--muted);
  transition: all .25s;
  font-family: var(--font-sans);
}
.toggle-btn.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 0 20px var(--primary-glow);
}
.annual-badge {
  background: rgba(34,197,94,.2);
  color: #4ade80;
  font-size: .7rem;
  padding: .2rem .5rem;
  border-radius: 50rem;
  margin-left: .35rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
}
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  position: relative;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  transition: transform .25s;
}
.pricing-card:hover { transform: translateY(-6px); }

.pricing-card.popular {
  background: linear-gradient(160deg, rgba(255,255,255,.1) 0%, rgba(255,255,255,.02) 100%);
  border-color: rgba(139,92,246,.5);
  box-shadow: 0 0 40px rgba(139,92,246,.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem 1rem;
  border-radius: 50rem;
  white-space: nowrap;
  box-shadow: 0 0 20px var(--primary-glow);
}
.pricing-badge.gold {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  box-shadow: 0 0 20px rgba(245,158,11,.35);
}

.plan-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.plan-icon.blue   { background: rgba(59,130,246,.12); }
.plan-icon.purple { background: rgba(139,92,246,.12); }
.plan-icon.violet { background: linear-gradient(135deg, rgba(139,92,246,.2), rgba(59,130,246,.2)); }
.plan-icon.amber  { background: rgba(245,158,11,.12); }

.plan-name { font-size: 1.25rem; font-family: var(--font-display); font-weight: 700; color: #fff; margin-bottom: .35rem; }
.plan-desc { font-size: .85rem; color: var(--muted); line-height: 1.5; margin-bottom: 1.5rem; }

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: .25rem;
  margin-bottom: 1.5rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.price-period { font-size: .875rem; color: var(--muted); padding-bottom: .25rem; }
.price-annual-note { font-size: .7rem; color: #4ade80; margin-left: .25rem; padding-bottom: .25rem; display: none; }
.annual-active .price-annual-note { display: inline; }

.plan-cta { display: block; width: 100%; text-align: center; margin-bottom: 1.5rem; }
.plan-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 1.25rem; }
.plan-features { list-style: none; flex: 1; }
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: #ccc;
  margin-bottom: .65rem;
}
.plan-features li::before { content: '✓'; font-weight: 700; flex-shrink: 0; }
.pricing-card.popular .plan-features li::before { color: var(--primary); }
.pricing-card:not(.popular) .plan-features li::before { color: var(--secondary); }

.pricing-guarantee {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  margin-top: 5rem;
}
.pricing-guarantee h2 { margin-bottom: .75rem; }
.pricing-guarantee p { margin-bottom: 2rem; font-size: 1.05rem; }

/* ========================================
   SERVICES DETAIL PAGE
   ======================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
@media (max-width: 800px) {
  .service-detail, .service-detail.reverse { grid-template-columns: 1fr; direction: ltr; }
}
.service-detail-icon {
  width: 72px; height: 72px;
  border-radius: 1.25rem;
  background: rgba(139,92,246,.12);
  border: 1px solid rgba(139,92,246,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}
.service-detail h2 { margin-bottom: 1rem; font-size: 2rem; }
.service-detail > div > p { margin-bottom: 1.5rem; font-size: 1rem; line-height: 1.7; }
.service-detail .use-cases h4,
.service-detail .benefits h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: .75rem;
  font-family: var(--font-display);
}
.service-detail .use-cases ul,
.service-detail .benefits ul {
  margin-bottom: 1.5rem;
}
.service-detail .use-cases li,
.service-detail .benefits li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  color: #ccc;
  font-size: .9rem;
  margin-bottom: .5rem;
}
.service-detail .use-cases li::before { content: '→'; color: var(--secondary); }
.service-detail .benefits li::before  { content: '✓'; color: var(--primary); font-weight: 700; }

.service-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(139,92,246,.15), rgba(59,130,246,.1));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 800px) { .about-mission { grid-template-columns: 1fr; } }
.about-mission p { font-size: 1.05rem; line-height: 1.75; margin-bottom: 1rem; }
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(139,92,246,.2), rgba(59,130,246,.15));
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 6rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .values-grid { grid-template-columns: 1fr; } }
.value-card { padding: 2rem; text-align: center; }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { margin-bottom: .5rem; font-size: 1.15rem; }
.value-card p { font-size: .9rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }
.team-card { padding: 2rem; text-align: center; }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 1rem;
  box-shadow: 0 0 24px var(--primary-glow);
}
.team-card h3 { margin-bottom: .25rem; font-size: 1.1rem; }
.team-card .role { color: var(--primary); font-size: .875rem; font-weight: 500; margin-bottom: .6rem; }
.team-card p { font-size: .875rem; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { font-size: 1rem; line-height: 1.7; margin-bottom: 2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(139,92,246,.1);
  border: 1px solid rgba(139,92,246,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-item h4 { font-size: .95rem; color: #fff; margin-bottom: .2rem; }
.contact-item p { font-size: .875rem; }

.contact-form { padding: 2.5rem; }
.contact-form h3 { margin-bottom: 1.75rem; font-size: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 500px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .875rem; color: #ccc; margin-bottom: .4rem; font-weight: 500; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--glass-border);
  border-radius: .75rem;
  padding: .75rem 1rem;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: .925rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139,92,246,.15);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; margin-top: .5rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 1.5rem;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.3);
  border-radius: .75rem;
  color: #4ade80;
  font-weight: 500;
  margin-top: 1rem;
}

/* ========================================
   WOOCOMMERCE
   ======================================== */
.woocommerce-page .page-hero { padding-bottom: 2rem; }

/* Shop page */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem !important;
  margin: 0 !important;
}
@media (max-width: 800px) { .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; } }
@media (max-width: 500px) { .woocommerce ul.products { grid-template-columns: 1fr !important; } }

.woocommerce ul.products li.product {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: transform .25s, border-color .25s;
  text-align: left;
}
.woocommerce ul.products li.product:hover {
  transform: translateY(-6px);
  border-color: rgba(139,92,246,.4);
}
.woocommerce ul.products li.product a img {
  border-radius: .75rem;
  margin-bottom: 1rem;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: .5rem;
}
.woocommerce ul.products li.product .price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.woocommerce ul.products li.product .button {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 50rem !important;
  padding: .6rem 1.5rem !important;
  font-weight: 600 !important;
  font-size: .875rem !important;
  transition: opacity .2s !important;
  box-shadow: 0 0 20px var(--primary-glow) !important;
}
.woocommerce ul.products li.product .button:hover { opacity: .85 !important; }

/* Single product */
.woocommerce div.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) { .woocommerce div.product { grid-template-columns: 1fr; } }

.woocommerce div.product .woocommerce-product-gallery {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}
.woocommerce div.product .product_title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: #fff;
  margin-bottom: .75rem;
}
.woocommerce div.product .price {
  font-size: 2rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 1.5rem;
  display: block;
}
.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button {
  background: linear-gradient(135deg, var(--primary), var(--secondary)) !important;
  color: #fff !important;
  border-radius: 50rem !important;
  border: none !important;
  font-weight: 600 !important;
  padding: .85rem 2rem !important;
  box-shadow: 0 0 24px var(--primary-glow) !important;
  font-family: var(--font-sans) !important;
  transition: opacity .2s, transform .2s !important;
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover { opacity: .85 !important; transform: translateY(-2px) !important; }

/* Cart */
.woocommerce table.cart {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  width: 100%;
  border-collapse: collapse;
}
.woocommerce table.cart th {
  background: rgba(255,255,255,.04);
  color: #fff;
  font-family: var(--font-display);
  font-size: .875rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
}
.woocommerce table.cart td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  vertical-align: middle;
}
.woocommerce .cart-collaterals { margin-top: 2rem; }
.woocommerce .cart_totals {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.woocommerce .cart_totals h2 { font-size: 1.25rem; margin-bottom: 1.25rem; color: #fff; }
.woocommerce .cart_totals table { width: 100%; }
.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td { padding: .6rem 0; color: var(--muted); }
.woocommerce .cart_totals table .order-total td { color: #fff; font-weight: 700; font-size: 1.1rem; }

/* Checkout */
.woocommerce-checkout #customer_details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 700px) { .woocommerce-checkout #customer_details { grid-template-columns: 1fr; } }
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--glass-border);
  border-radius: .75rem;
  padding: .75rem 1rem;
  color: var(--text);
  font-family: var(--font-sans);
  width: 100%;
}
.woocommerce form .form-row input.input-text:focus { border-color: var(--primary); }
.woocommerce form .form-row label { color: #ccc; font-size: .875rem; font-weight: 500; }

/* Notices */
.woocommerce-message,
.woocommerce-info {
  background: rgba(139,92,246,.1) !important;
  border-color: rgba(139,92,246,.4) !important;
  border-radius: .75rem !important;
  color: var(--text) !important;
}
.woocommerce-error {
  background: rgba(239,68,68,.1) !important;
  border-color: rgba(239,68,68,.4) !important;
  border-radius: .75rem !important;
  color: #fca5a5 !important;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-in { opacity: 0; }
.fade-in.visible { animation: fadeInUp .6s ease forwards; }
.fade-in-1 { animation-delay: .1s; }
.fade-in-2 { animation-delay: .2s; }
.fade-in-3 { animation-delay: .3s; }
.fade-in-4 { animation-delay: .4s; }

/* ========================================
   SCROLLBAR
   ======================================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(139,92,246,.4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ========================================
   MISC UTILITIES
   ======================================== */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-1 { margin-top: .5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }

/* ========================================
   MEMBERSHIP PAGE ENHANCEMENTS
   ======================================== */

/* Comparison table */
.membership-table th,
.membership-table td {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr !important;
  }
  table {
    font-size: .78rem !important;
  }
  table th,
  table td {
    padding: .6rem .5rem !important;
  }
}

/* Plan tagline colour helpers (used inline but keep here for reference) */
.plan-tagline-blue   { color: #3B82F6; }
.plan-tagline-purple { color: #8B5CF6; }
.plan-tagline-violet { color: #6366F1; }
.plan-tagline-amber  { color: #F59E0B; }

/* Crossed-out "not included" features */
.plan-features li.not-included {
  opacity: .35;
  text-decoration: line-through;
}
