/* ==========================================
   DESIGN SYSTEM - playfurby.com
   ========================================== */

/* Google Fonts are linked directly in HTML head to prevent render blocking */


:root {
  /* Color Palette */
  --primary: #7C3AED;        /* Royal Violet */
  --primary-light: #C084FC;  /* Soft Purple */
  --primary-dark: #6D28D9;   /* Deep Violet */
  --secondary: #EC4899;      /* Cotton Candy Pink */
  --secondary-light: #F472B6;/* Soft Pink */
  --secondary-dark: #DB2777; /* Rose Pink */
  --accent: #06B6D4;         /* Electric Cyan */
  --accent-yellow: #F59E0B;  /* Golden Sunshine */
  --success: #10B981;        /* Playful Green */
  
  /* Neutral Palette */
  --white: #FFFFFF;
  --bg-subtle: #F3F4F6;
  --bg-gradient: linear-gradient(135deg, #F8F6FF 0%, #FFF5FA 50%, #F0FDFA 100%);
  --bg-gradient-dark: linear-gradient(135deg, #1E1B4B 0%, #311042 100%);
  --text-dark: #111827;      /* High contrast black */
  --text-body: #374151;      /* Readable grey */
  --text-muted: #6B7280;     /* Muted grey */
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(124, 58, 237, 0.05);
  --shadow-md: 0 8px 16px rgba(124, 58, 237, 0.08);
  --shadow-lg: 0 16px 32px rgba(124, 58, 237, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(0, 0, 0, 0.06);
  --shadow-hover: 0 20px 40px rgba(124, 58, 237, 0.18);
  
  /* Typography */
  --font-heading: 'Outfit', 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-gradient);
  background-attachment: fixed;
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-heading);
  font-weight: 600;
  transition: var(--transition-fast);
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #F3E8FF;
}
::-webkit-scrollbar-thumb {
  background: var(--primary-light);
  border-radius: var(--radius-full);
  border: 2px solid #F3E8FF;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* ==========================================
   LAYOUT CONTAINERS & UTILITIES
   ========================================== */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 6rem 0;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
}

.text-center {
  text-align: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary);
  margin-bottom: 1.5rem;
  border: 1px solid rgba(124, 58, 237, 0.2);
}

.badge-secondary {
  background: rgba(236, 72, 153, 0.1);
  color: var(--secondary);
  border-color: rgba(236, 72, 153, 0.2);
}

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

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  border: 2px solid rgba(124, 58, 237, 0.2);
}

.btn-secondary:hover {
  background: rgba(124, 58, 237, 0.05);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent-yellow) 0%, #F59E0B 100%);
  color: #5B21B6; /* Dark purple text for contrast */
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.45);
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
}

/* ==========================================
   HEADER / NAVIGATION
   ========================================== */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(124, 58, 237, 0.08);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-md);
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
  transition: height var(--transition-normal);
}

.header.scrolled .header-container {
  height: 80px;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 95px;
  width: auto;
  object-fit: contain;
  transition: height var(--transition-normal);
}

.header.scrolled .logo-img {
  height: 68px;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: var(--radius-full);
  transition: width var(--transition-normal);
}

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Mobile Menu Button */
.mobile-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-nav-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: var(--primary);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

/* Responsive Menu styles */
@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    transition: right var(--transition-normal);
    z-index: 1000;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-menu li {
    margin: 1.5rem 0;
  }
  
  .nav-actions {
    display: none; /* Hide desktop action buttons on small sizes, can integrate into menu */
  }
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 6rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(244, 114, 182, 0.15) 0%, transparent 40%),
              radial-gradient(circle at 10% 80%, rgba(192, 132, 252, 0.15) 0%, transparent 40%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero-content h1 span {
  display: block;
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.75rem;
  }
}

.hero-tagline {
  font-size: 1.25rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  max-width: 600px;
}

@media (max-width: 992px) {
  .hero-tagline {
    margin-left: auto;
    margin-right: auto;
  }
}

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

@media (max-width: 992px) {
  .hero-btns {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.4) 0%, rgba(244, 114, 182, 0) 70%);
  filter: blur(40px);
  z-index: 1;
  animation: pulse-glow 8s infinite alternate;
}

.hero-toy-img {
  position: relative;
  z-index: 2;
  max-width: 85%;
  transform: rotate(-3deg);
  filter: drop-shadow(0 15px 30px rgba(124, 58, 237, 0.25));
  animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
  0% { transform: translateY(0px) rotate(-3deg); }
  50% { transform: translateY(-15px) rotate(1deg); }
  100% { transform: translateY(0px) rotate(-3deg); }
}

@keyframes pulse-glow {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.2); opacity: 0.9; }
}

/* ==========================================
   INTRO / EXPLANATION SECTION
   ========================================== */
.intro-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124, 58, 237, 0.05);
  margin-top: -2rem;
  position: relative;
  z-index: 10;
}

.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.intro-text p {
  font-size: 1.125rem;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.intro-text p:last-child {
  margin-bottom: 0;
}

.intro-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .intro-highlights {
    grid-template-columns: 1fr;
  }
}

.highlight-card {
  padding: 2rem;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all var(--transition-normal);
}

.highlight-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: rgba(124, 58, 237, 0.1);
}

.highlight-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.highlight-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.highlight-icon {
  width: 45px;
  height: 45px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}

/* ==========================================
   HISTORY & HERITAGE SECTION
   ========================================== */
.history-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
  align-items: center;
}

@media (max-width: 992px) {
  .history-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.history-image-container {
  position: relative;
}

.history-image {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1.5deg);
  border: 8px solid var(--white);
  transition: transform var(--transition-normal);
}

.history-image-container:hover .history-image {
  transform: rotate(0deg) scale(1.02);
}

.history-image-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: rgba(17, 24, 39, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.1);
}

.history-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.history-content p {
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.history-timeline {
  margin-top: 2rem;
  border-left: 3px solid rgba(124, 58, 237, 0.15);
  padding-left: 1.5rem;
}

.timeline-item {
  position: relative;
  padding-bottom: 1.5rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -29.5px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #FFF;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-dark);
  font-size: 1.125rem;
  margin-bottom: 0.25rem;
}

.timeline-text {
  font-size: 0.95rem;
  color: var(--text-body);
}

/* ==========================================
   PRODUCTS GRID & FILTER
   ========================================== */
.products-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124, 58, 237, 0.05);
}

.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-full);
  font-size: 0.95rem;
  color: var(--text-body);
  background: var(--bg-subtle);
  border: 1px solid transparent;
  transition: all var(--transition-normal);
}

.filter-btn:hover {
  background: rgba(124, 58, 237, 0.05);
  color: var(--primary);
}

.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

@media (max-width: 640px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(124, 58, 237, 0.06);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124, 58, 237, 0.15);
}

/* Ribbon for new or licensing */
.ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 10;
}

.ribbon.licensed {
  background: #0EA5E9;
}

.ribbon.limited {
  background: #F43F5E;
}

/* E-commerce product image styles */
.product-image-container {
  width: 100%;
  aspect-ratio: 1.1;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 1.25rem;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: var(--shadow-inset);
  border: 1px solid rgba(124, 58, 237, 0.05);
}

.product-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all var(--transition-normal);
  padding: 0.75rem;
}

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

.product-info {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-lbl {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--secondary);
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  line-height: 1.6;
  flex-grow: 1; /* Allow content to flow fully without clamping */
}

.product-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 0.875rem;
}

.product-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-dark);
}

.product-action-btn {
  background: var(--primary);
  color: var(--white);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.product-action-btn:hover {
  background: var(--secondary);
  transform: scale(1.05);
}

/* ==========================================
   CATEGORIES SECTION
   ========================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

@media (max-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .categories-grid {
    grid-template-columns: 1fr;
  }
}

.category-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(124, 58, 237, 0.06);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(124, 58, 237, 0.15);
}

.category-icon {
  width: 70px;
  height: 70px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.15) 0%, rgba(244, 114, 182, 0.15) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-inset);
  color: var(--primary);
}

.category-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.category-items {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem 0;
  text-align: left;
  width: 100%;
  flex-grow: 1;
}

.category-items li {
  font-size: 0.875rem;
  color: var(--text-body);
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.category-items li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-size: 0.75rem;
}

.category-link {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

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

.category-link::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.category-card:hover .category-link::after {
  transform: translateX(4px);
}

/* ==========================================
   WHY CHOOSE FURBY (BENEFITS)
   ========================================== */
.benefits-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124, 58, 237, 0.05);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-block {
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  border: 1px solid rgba(124, 58, 237, 0.04);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--transition-normal);
  height: 100%;
}

.benefit-block:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  background: var(--white);
  border-color: rgba(124, 58, 237, 0.12);
}

.benefit-header {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.benefit-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--primary);
  background: rgba(124, 58, 237, 0.08);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-header h3 {
  font-size: 1.15rem;
  margin: 0;
  color: var(--text-dark);
}

.benefit-content p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 0;
}

/* ==========================================
   SOCIAL PROOF / AUTHORITY
   ========================================== */
.social-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

@media (max-width: 1024px) {
  .social-proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .social-proof-grid {
    grid-template-columns: 1fr;
  }
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(124, 58, 237, 0.06);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: '“';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 5rem;
  font-family: var(--font-heading);
  font-weight: 900;
  color: rgba(124, 58, 237, 0.06);
  line-height: 1;
}

.review-text {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text-body);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  line-height: 1.6;
}

.review-author {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-top: 1px solid rgba(0,0,0,0.05);
  padding-top: 1rem;
}

.author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-light);
  box-shadow: var(--shadow-sm);
}

.author-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
}

.author-info span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.authority-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-top: 4rem;
  flex-wrap: wrap;
  opacity: 0.65;
}

.authority-logo {
  height: 35px;
  filter: grayscale(1);
  transition: all var(--transition-fast);
}

.authority-logo:hover {
  filter: grayscale(0);
  opacity: 1;
}

/* ==========================================
   SAFETY & BATTERIES BANNER
   ========================================== */
.safety-banner {
  background: var(--bg-gradient-dark);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 768px) {
  .safety-banner {
    padding: 2.5rem 1.5rem;
  }
}

.safety-banner::after {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
}

.safety-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (max-width: 992px) {
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

.safety-content h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.safety-content p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.safety-checklist {
  list-style: none;
}

.safety-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
}

.safety-checklist li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--success);
  border-radius: 50%;
  font-size: 0.75rem;
  color: var(--white);
  font-weight: 900;
}

/* ==========================================
   FAQS ACCORDION
   ========================================== */
.faqs-section {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(124, 58, 237, 0.05);
}

.accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border-bottom: 1px solid rgba(124, 58, 237, 0.1);
  padding: 1.5rem 0;
}

.accordion-item:last-child {
  border-bottom: none;
}

.accordion-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  gap: 1.5rem;
}

.accordion-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-dark);
}

.accordion-icon {
  width: 32px;
  height: 32px;
  background: rgba(124, 58, 237, 0.05);
  border-radius: 50%;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 400;
  flex-shrink: 0;
  transition: all var(--transition-normal);
}

.accordion-item.active .accordion-icon {
  background: var(--primary);
  color: var(--white);
  transform: rotate(45deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) ease-out;
}

.accordion-content p {
  padding-top: 1rem;
  font-size: 0.975rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta {
  background: radial-gradient(circle at 10% 10%, rgba(236, 72, 153, 0.05) 0%, transparent 40%),
              radial-gradient(circle at 90% 90%, rgba(124, 58, 237, 0.05) 0%, transparent 40%);
  text-align: center;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 58, 237, 0.05);
  background-color: var(--white);
}

.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
  .final-cta h2 {
    font-size: 2.25rem;
  }
}

.final-cta p {
  font-size: 1.25rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
}

.final-cta-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

@media (max-width: 480px) {
  .final-cta-btns {
    flex-direction: column;
    align-items: stretch;
  }
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2.5rem 0;
  border-top: 5px solid var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.footer-logo-area {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo-img {
  height: 110px;
  width: auto;
  align-self: flex-start;
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-title {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--secondary);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-newsletter p {
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-full);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  flex-grow: 1;
  outline: none;
  transition: all var(--transition-fast);
}

.newsletter-input:focus {
  border-color: var(--primary-light);
  background: rgba(255,255,255,0.1);
}

.newsletter-form button {
  background: var(--primary);
  color: var(--white);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition-fast);
}

.newsletter-form button:hover {
  background: var(--secondary);
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
}

@media (max-width: 576px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.citation-badge {
  font-size: 0.8rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.citation-badge a {
  color: var(--primary-light);
  font-weight: 600;
}
.citation-badge a:hover {
  color: var(--secondary-light);
}

/* ==========================================
   VIDEO SHORTS FEED SECTION
   ========================================== */
.video-reviews-section {
  margin-top: 5rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(124, 58, 237, 0.08);
}

.video-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  max-width: 1050px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .video-reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .video-reviews-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    gap: 2rem;
  }
}

.video-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid rgba(124, 58, 237, 0.05);
  padding: 0.875rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(124, 58, 237, 0.12);
}

.video-container {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-inset);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-caption {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 1rem;
  text-align: center;
}

.video-subcaption {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.25rem;
}
