/* ============================================
   SOCIALHOUSE1.COM - MAIN STYLESHEET
   Blue-Purple Modern Marketplace Theme
   ============================================ */

/* CSS Variables */
:root {
  /* Primary Colors */
  --primary: #2563EB;
  --primary-dark: #1D4ED8;
  --secondary: #7C3AED;
  --secondary-dark: #6D28D9;
  
  /* Emoji font for consistent emoji rendering across all browsers */
  --emoji-font: "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji", "Android Emoji", "EmojiOne Color", "Twemoji Mozilla", sans-serif;
  
  /* Accent Colors */
  --accent-green: #16A34A;
  --accent-green-dark: #15803D;
  
  /* Background Colors */
  --bg-white: #FFFFFF;
  --bg-light: #F3F4F6;
  --bg-dark: #0F172A;
  
  /* Text Colors */
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-muted: #9CA3AF;
  --text-white: #F9FAFB;
  
  /* Border Colors */
  --border-light: #E5E7EB;
  --border-medium: #D1D5DB;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #2563EB, #7C3AED);
  --gradient-light: linear-gradient(135deg, #DBEAFE, #EDE9FE);
  --gradient-hero: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(124, 58, 237, 0.05));
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  
  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 350ms ease;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family), var(--emoji-font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.homepage {
  background: var(--bg-white);
}

body.service-page {
  background: var(--bg-white);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(30px, 5vw, 52px);
}

h2 {
  font-size: clamp(24px, 4vw, 36px);
}

h3 {
  font-size: clamp(20px, 3vw, 28px);
}

h4 {
  font-size: clamp(18px, 2.5vw, 22px);
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--transition-base);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 800;
  font-size: 1.6rem;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.logo:hover {
  opacity: 0.9;
}

.logo-text {
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #2563EB 0%, #7C3AED 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  font-weight: 800;
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.35);
  position: relative;
  overflow: hidden;
}

.logo-icon::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
  transform: rotate(45deg);
}

.logo:hover .logo-icon {
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
  transform: translateY(-2px);
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link.active {
  color: var(--primary);
}

/* Services Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0;
}

.dropdown-toggle:hover {
  color: var(--primary);
}

.dropdown-toggle svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
  min-width: 600px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  border: 1px solid var(--border-light);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dropdown-column h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.dropdown-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dropdown-column a {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding: 0.35rem 0;
  display: block;
  transition: all var(--transition-fast);
}

.dropdown-column a:hover {
  color: var(--primary);
  padding-left: 0.25rem;
}

/* Header CTA */
.header-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.btn-primary {
  background: var(--accent-green);
  color: white;
}

.btn-primary:hover {
  background: var(--accent-green-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-gradient {
  background: var(--gradient-primary);
  color: white;
}

.btn-gradient:hover {
  opacity: 0.95;
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 2px solid var(--border-light);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-white {
  background: white;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--bg-light);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-fast);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-white);
  z-index: 999;
  padding: 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-nav-link {
  display: block;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
}

.mobile-nav-link:hover {
  background: var(--bg-light);
  color: var(--primary);
}

/* Mobile Services Accordion */
.mobile-services-accordion {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.mobile-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  background: var(--bg-light);
  width: 100%;
}

.mobile-accordion-header svg {
  transition: transform var(--transition-fast);
}

.mobile-accordion-header.active svg {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  display: none;
  padding: 0.5rem 1rem 1rem;
  background: var(--bg-light);
}

.mobile-accordion-content.active {
  display: block;
}

.mobile-service-category {
  margin-bottom: 1rem;
}

.mobile-service-category:last-child {
  margin-bottom: 0;
}

.mobile-service-category h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.mobile-service-category ul {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-service-category a {
  font-size: 0.95rem;
  color: var(--text-secondary);
  padding: 0.4rem 0;
  display: block;
}

.mobile-service-category a:hover {
  color: var(--primary);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

body.homepage .hero {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.22), transparent 32%),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.30), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #eef2ff 45%, #f8fafc 100%);
}

body.service-page .page-header {
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.16), transparent 34%),
    radial-gradient(circle at top right, rgba(124, 58, 237, 0.18), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f3f4f6 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: var(--gradient-light);
  opacity: 0.5;
  pointer-events: none;
}

body.homepage .hero::before {
  width: 48%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(124, 58, 237, 0.26));
  opacity: 1;
}

body.homepage .hero::after {
  content: '';
  position: absolute;
  inset: auto auto 7% 6%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.16), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}

body.homepage .section-label,
body.service-page .section-label {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(124, 58, 237, 0.22));
  color: var(--secondary);
}

body.homepage .text-gradient,
body.service-page .text-gradient,
body.service-page .page-title,
body.service-page .pricing-card-badge,
body.homepage .quantity-badge {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

body.service-page .page-title {
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 4rem;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  background: white;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.5rem;
}

body.homepage .hero-badge {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

body.homepage .hero-description {
  max-width: 620px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-highlight {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 18px;
  padding: 1rem 1.1rem;
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 34px -28px rgba(37, 99, 235, 0.35);
}

.hero-highlight strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.hero-highlight span {
  display: block;
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  margin-bottom: 1.5rem;
}

.hero-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  width: 100%;
  max-width: 280px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.hero-metric {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.95rem 1rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.16);
  box-shadow: 0 16px 36px -30px rgba(15, 23, 42, 0.32);
}

.hero-metric strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);
}

.hero-metric span {
  font-size: 0.88rem;
  color: var(--text-secondary);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: block;
}

.hero-showcase {
  position: relative;
  display: grid;
  gap: 1rem;
}

.showcase-panel {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 28px;
  padding: 1.4rem;
  box-shadow: 0 30px 60px -42px rgba(15, 23, 42, 0.38);
  backdrop-filter: blur(14px);
}

.showcase-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-full);
  background: rgba(37, 99, 235, 0.08);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.showcase-panel h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.18;
  margin-bottom: 0.85rem;
}

.showcase-panel p {
  font-size: 0.98rem;
  color: var(--text-secondary);
}

.showcase-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.showcase-list-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.95rem 1rem;
  border-radius: 20px;
  background: rgba(248, 250, 252, 0.96);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.showcase-list-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: var(--gradient-primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.9rem;
  font-weight: 800;
}

.showcase-list-item strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.showcase-list-item span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.hero-floating-card {
  position: relative;
  z-index: 1;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 24px 45px -35px rgba(15, 23, 42, 0.45);
  color: #fff;
  animation: float 6s ease-in-out infinite;
}

.hero-floating-card h4 {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.35rem;
}

.hero-floating-card p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  line-height: 1.6;
}

.floating-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.card-primary {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.96), rgba(59, 130, 246, 0.92));
}

.card-secondary {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.96), rgba(91, 33, 182, 0.92));
  animation-delay: 1.2s;
}

.card-tertiary {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(51, 65, 85, 0.92));
  animation-delay: 2.2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ============================================
   SECTION STYLES
   ============================================ */
.section {
  padding: 5rem 0;
}

.section-light {
  background: var(--bg-light);
}

body.homepage .section-light {
  background: #f3f4f6;
}

body.service-page .section-light {
  background: #f3f4f6;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  background: var(--gradient-light);
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.section-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.category-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

body.homepage .category-card,
body.homepage .quantity-card,
body.homepage .highlight-card,
body.homepage .contact-option-card,
body.homepage .faq-item,
body.homepage .platform-item,
body.homepage .age-tier-card {
  background: #ffffff;
}

body.service-page .pricing-card,
body.service-page .usage-card,
body.service-page .related-card,
body.service-page .faq-item,
body.service-page .contact-option-card,
body.service-page .service-info-content,
body.service-page .page-header .container {
  background: transparent;
}

body.service-page .pricing-card,
body.service-page .usage-card,
body.service-page .related-card,
body.service-page .service-info-grid > *,
body.service-page .faq-item {
  background: #ffffff;
}

body.homepage .category-card:hover,
body.homepage .quantity-card:hover,
body.homepage .highlight-card:hover,
body.homepage .contact-option-card:hover,
body.homepage .platform-item:hover,
body.homepage .age-tier-card:hover {
  box-shadow: 0 18px 40px -24px rgba(37, 99, 235, 0.35);
}

body.service-page .pricing-card:hover,
body.service-page .usage-card:hover,
body.service-page .related-card:hover,
body.service-page .service-info-grid > *:hover {
  box-shadow: 0 18px 40px -24px rgba(37, 99, 235, 0.35);
}

body.service-page .service-info-grid > * {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition-base), border-color var(--transition-base);
}

body.service-page .service-info-grid > *:hover {
  border-color: var(--primary);
}

body.service-page .pricing-tab.active {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

body.service-page .pricing-tab:not(.active):hover {
  color: var(--secondary);
  background: rgba(124, 58, 237, 0.08);
}

body.service-page .pricing-card-header {
  position: relative;
  border-bottom-color: rgba(124, 58, 237, 0.14);
}

body.service-page .pricing-card-header::before {
  content: attr(data-service-icon);
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--service-icon-size, 1.5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  border-radius: 16px;
  background: var(--service-icon-bg, linear-gradient(135deg, rgba(37, 99, 235, 0.14), rgba(124, 58, 237, 0.18)));
  color: var(--service-icon-color, #ffffff);
  box-shadow: 0 12px 24px -18px rgba(124, 58, 237, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-transform: none;
  font-family: var(--emoji-font);
}

body.service-page .pricing-card-quantity {
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.service-page .pricing-card-price {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

body.service-page .pricing-card-price span {
  background: none;
  -webkit-text-fill-color: initial;
  color: var(--secondary);
}

body.service-page .pricing-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-color: var(--secondary);
}

body.service-page .pricing-card-badge,
body.service-page .cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

body.service-page .btn-primary {
  background: var(--accent-green);
  border: 1px solid rgba(21, 128, 61, 0.22);
}

body.service-page .pricing-card .btn {
  background: var(--accent-green);
  color: #fff;
  border: 1px solid rgba(21, 128, 61, 0.22);
  box-shadow: 0 14px 28px -18px rgba(22, 163, 74, 0.55);
}

body.service-page .btn-primary:hover {
  background: var(--accent-green-dark);
}

body.homepage .btn-primary {
  border: 1px solid rgba(21, 128, 61, 0.22);
  box-shadow: 0 14px 30px -18px rgba(22, 163, 74, 0.55);
}

body.homepage .btn-primary:hover,
body.service-page .btn-primary:hover {
  box-shadow: 0 16px 32px -18px rgba(22, 163, 74, 0.6);
}

body.service-page .btn-gradient {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

body.service-page .btn-gradient:hover {
  box-shadow: 0 16px 30px -20px rgba(37, 99, 235, 0.55);
}

body.service-page .related-icon,
body.service-page .usage-card h4 svg {
  color: var(--primary);
}

body.service-page .related-icon {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(124, 58, 237, 0.10));
}

body.homepage .category-link,
body.service-page .related-card span,
body.service-page .breadcrumb span {
  color: var(--secondary);
}

.category-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.category-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.category-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.category-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

.category-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.category-link:hover svg {
  transform: translateX(4px);
}

.category-services {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-bottom: 1.5rem;
}

.service-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.45rem 0.8rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.12));
  border: 1px solid rgba(124, 58, 237, 0.12);
  color: var(--text-primary);
  font-size: 0.84rem;
  font-weight: 600;
}

.category-footer-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(229, 231, 235, 0.9);
}

.category-price-block {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.category-price-block span {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.category-price-block strong {
  font-size: 1.8rem;
  line-height: 1;
  font-weight: 800;
  color: var(--text-primary);
}

.category-action {
  width: 100%;
  padding: 0.95rem 1.2rem;
  border-radius: 14px;
  font-size: 0.95rem;
}

/* ============================================
   AGE TIERS
   ============================================ */
.age-tiers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

/* ============================================
   THREADS PRICING CARDS - Special Offer Section
   ============================================ */
.threads-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
  align-items: stretch;
}

.threads-pricing-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 1.25rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-height: 100%;
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 28px -24px rgba(15, 23, 42, 0.2);
}

.threads-pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.threads-pricing-card:hover {
  border-color: #667eea;
  box-shadow: 0 20px 40px -12px rgba(102, 126, 234, 0.25);
  transform: translateY(-4px);
}

.threads-pricing-card:hover::before {
  opacity: 1;
}

.threads-card-badge {
  position: static;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #fef3c7 0%, #fcd34d 100%);
  color: #92400e;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.threads-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.threads-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  flex: 1;
}

.threads-card-icon svg {
  width: 28px;
  height: 28px;
}

.threads-card-content h4 {
  font-size: 1.12rem;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 0.35rem 0;
}

.threads-card-desc {
  font-size: 0.82rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.45;
}

.threads-card-price {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 0.85rem;
  border-top: 1px solid #e5e7eb;
  margin-top: auto;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 1.55rem;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 0.875rem;
  color: #6b7280;
}

.threads-card-price .btn {
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  border: 1px solid rgba(5, 150, 105, 0.24);
  box-shadow: 0 14px 28px -18px rgba(16, 185, 129, 0.65);
}

.threads-card-price .btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px -18px rgba(16, 185, 129, 0.72);
}

.threads-pricing-card .price-block {
  flex-wrap: wrap;
}

/* Small tablet and up */
@media (min-width: 576px) {
  .threads-card-price {
    flex-direction: row;
    align-items: center;
  }

  .threads-card-price .btn {
    width: auto;
  }
}

/* Large Desktop (1280px and up) */
@media (min-width: 1280px) {
  .threads-pricing-card {
    padding: 1.25rem;
  }
  
  .threads-card-badge {
    font-size: 0.65rem;
    padding: 3px 8px;
  }
  
  .threads-card-icon {
    width: 48px;
    height: 48px;
  }
  
  .threads-card-content h4 {
    font-size: 1rem;
  }
  
  .price-amount {
    font-size: 1.5rem;
  }
}

.age-tier-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 2px solid var(--border-light);
  transition: all var(--transition-base);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.age-tier-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.age-tier-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.age-tier-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.age-tier-content h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.age-tier-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

/* ============================================
   HOMEPAGE PRICING REFINEMENTS
   ============================================ */
body.homepage .threads-pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 205px), 1fr));
  gap: 1rem;
}

body.homepage .threads-pricing-card {
  padding: 1rem;
  border-radius: 14px;
  gap: 0.7rem;
  box-shadow: 0 10px 24px -24px rgba(15, 23, 42, 0.32);
}

body.homepage .threads-card-badge {
  font-size: 0.66rem;
  padding: 0.24rem 0.55rem;
}

body.homepage .threads-card-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
}

body.homepage .threads-card-icon svg {
  width: 24px;
  height: 24px;
}

body.homepage .threads-card-content h4 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

body.homepage .threads-card-desc {
  font-size: 0.78rem;
  line-height: 1.4;
}

body.homepage .threads-card-price {
  gap: 0.65rem;
  padding-top: 0.75rem;
}

body.homepage .price-amount {
  font-size: 1.35rem;
}

body.homepage .price-period {
  font-size: 0.8rem;
}

body.homepage .threads-card-price .btn {
  padding: 0.5rem 0.9rem;
  font-size: 0.8rem;
  border-radius: 11px;
}

body.homepage .category-card,
body.homepage .quantity-card {
  padding: 1.25rem;
}

body.homepage .category-services {
  gap: 0.5rem;
  margin-bottom: 1.15rem;
}

body.homepage .service-pill {
  padding: 0.38rem 0.72rem;
  font-size: 0.78rem;
}

body.homepage .category-footer-row {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.85rem;
}

body.homepage .category-price-block span {
  font-size: 0.72rem;
}

body.homepage .category-price-block strong {
  font-size: 1.45rem;
}

body.homepage .category-action {
  width: auto;
  min-width: 132px;
  padding: 0.72rem 1rem;
  border-radius: 12px;
  font-size: 0.88rem;
  flex-shrink: 0;
}

body.homepage .age-tier-card {
  padding: 1rem 1.1rem;
  gap: 0.85rem;
  align-items: center;
  flex-wrap: wrap;
}

body.homepage .age-tier-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

body.homepage .age-tier-icon svg {
  width: 22px;
  height: 22px;
}

body.homepage .age-tier-content {
  flex: 1;
  min-width: 0;
}

body.homepage .age-tier-content h4 {
  font-size: 1rem;
  margin-bottom: 0;
}

body.homepage .age-tier-card .category-footer-row {
  width: auto;
  margin-left: auto;
  padding-top: 0;
  border-top: none;
  flex: 0 0 auto;
}

body.homepage .age-tier-card .category-price-block {
  align-items: flex-end;
}

body.homepage .age-tier-card .price-value {
  display: block;
  line-height: 1;
  font-size: 1.45rem !important;
}

body.homepage .quantity-grid {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: 1rem;
}

body.homepage .quantity-card {
  border-radius: 16px;
  padding: 1.35rem 1rem;
}

body.homepage .quantity-number {
  font-size: 2rem;
  margin-bottom: 0.35rem;
}

body.homepage .quantity-label {
  font-size: 0.9rem;
  margin-bottom: 0.7rem;
}

body.homepage .quantity-price {
  font-size: 1.2rem;
}

body.homepage .quantity-badge {
  top: -9px;
  font-size: 0.68rem;
  padding: 0.28rem 0.85rem;
}

@media (max-width: 767px) {
  body.homepage .category-footer-row,
  body.homepage .age-tier-card .category-footer-row {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  body.homepage .category-action,
  body.homepage .age-tier-card .category-action,
  body.homepage .threads-card-price .btn {
    width: 100%;
    min-width: 0;
  }

  body.homepage .age-tier-card {
    align-items: flex-start;
  }

  body.homepage .age-tier-card .category-price-block {
    align-items: flex-start;
  }
}

/* ============================================
   PLATFORM SHOWCASE
   ============================================ */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.platform-item {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.platform-item:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.platform-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.platform-item h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.platform-item span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================
   ADVANTAGES
   ============================================ */
.advantages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.advantage-card {
  display: flex;
  gap: 1.25rem;
}

.advantage-number {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
}

.advantage-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.advantage-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ============================================
   QUANTITY PACKAGES
   ============================================ */
.quantity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.quantity-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 2px solid var(--border-light);
  transition: all var(--transition-base);
}

.quantity-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.quantity-card.featured {
  border-color: var(--primary);
  position: relative;
}

body.homepage .quantity-card.featured {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.quantity-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 1rem;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.quantity-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.quantity-label {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.quantity-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 60%;
  width: 80%;
  height: 2px;
  background: var(--border-light);
  display: none;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  border: 2px solid var(--border-light);
}

.process-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}

.process-step h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 250px;
  margin: 0 auto;
}

/* ============================================
   PLATFORM HIGHLIGHTS
   ============================================ */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.highlight-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.highlight-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.highlight-image {
  height: 180px;
  background: var(--gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

body.homepage .highlight-image {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(124, 58, 237, 0.10));
}

.highlight-image .platform-icon {
  width: 80px;
  height: 80px;
  font-size: 2.5rem;
}

.highlight-content {
  padding: 1.5rem;
}

.highlight-content h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.highlight-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.highlight-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   TESTIMONIAL PROOF SECTION
   ============================================ */
.testimonials-section {
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(37, 99, 235, 0.08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(124, 58, 237, 0.10), transparent 30%);
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

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

.testimonial-proof-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 22px;
  box-shadow: 0 20px 40px -32px rgba(15, 23, 42, 0.28);
  align-items: center;
}

.testimonial-copy h3 {
  font-size: 1.1rem;
  margin-bottom: 0.45rem;
}

.testimonial-copy p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.testimonial-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.78rem;
  margin-bottom: 0.85rem;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.10), rgba(124, 58, 237, 0.14));
  color: var(--secondary);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.testimonial-proof-media {
  display: block;
  width: min(100%, 260px);
  margin: 0 auto;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.22);
  box-shadow: 0 18px 36px -28px rgba(15, 23, 42, 0.35);
  background: #eef2f7;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.testimonial-proof-media:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 40px -26px rgba(37, 99, 235, 0.28);
}

.testimonial-proof-media img {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: top center;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  background: none;
  border: none;
  cursor: pointer;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  transition: transform var(--transition-fast);
  flex-shrink: 0;
}

.faq-question.active svg {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
}

.faq-answer.active {
  display: block;
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CONTACT OPTIONS
   ============================================ */
.contact-options-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.contact-option-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.contact-option-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.contact-option-icon {
  width: 64px;
  height: 64px;
  background: var(--gradient-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.contact-option-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.contact-option-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.contact-option-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.contact-option-card .btn {
  width: 100%;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-dark);
  color: var(--text-white);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: white;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-column h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

/* ============================================
   ORDER MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  transform: scale(0.95) translateY(10px);
  transition: all var(--transition-base);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.modal-header h3 {
  font-size: 1.25rem;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.modal-close:hover {
  background: var(--bg-light);
  color: var(--text-primary);
}

.modal-body {
  padding: 1.5rem;
}

.modal-option {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  transition: all var(--transition-fast);
  cursor: pointer;
}

.modal-option:hover {
  border-color: var(--primary);
  background: var(--bg-light);
}

.modal-option-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.modal-option-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.modal-option-content {
  flex: 1;
}

.modal-option-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.modal-option-content p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.modal-option-arrow {
  color: var(--text-muted);
}

.modal-option:hover .modal-option-arrow {
  color: var(--primary);
}

.modal-divider {
  text-align: center;
  margin: 1.5rem 0;
  position: relative;
}

.modal-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-light);
}

.modal-divider span {
  position: relative;
  background: white;
  padding: 0 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */
.page-header {
  padding-top: 120px;
  padding-bottom: 3rem;
  background: var(--gradient-hero);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.breadcrumb a {
  color: var(--text-secondary);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb svg {
  width: 16px;
  height: 16px;
  color: var(--text-muted);
}

.breadcrumb span {
  color: var(--text-primary);
  font-weight: 500;
}

.page-title {
  font-size: clamp(28px, 5vw, 42px);
  margin-bottom: 1rem;
}

.page-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
}

/* Pricing Tabs */
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 1rem;
}

.pricing-tab {
  padding: 0.75rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  background: none;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.pricing-tab:hover {
  color: var(--primary);
  background: var(--bg-light);
}

.pricing-tab.active {
  color: white;
  background: var(--gradient-primary);
}

.pricing-content {
  display: none;
}

.pricing-content.active {
  display: block;
}

/* Pricing Cards */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 2px solid var(--border-light);
  transition: all var(--transition-base);
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
  border-color: var(--primary);
  position: relative;
}

.pricing-card-badge {
  position: absolute;
  top: -10px;
  right: 1.5rem;
  padding: 0.35rem 1rem;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: var(--radius-full);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-light);
}

.pricing-card-quantity {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.pricing-card-price {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-primary);
}

.pricing-card-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card-features {
  margin-bottom: 1.5rem;
}

.pricing-card-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-light);
}

.pricing-card-features li:last-child {
  border-bottom: none;
}

.pricing-card-features svg {
  width: 20px;
  height: 20px;
  color: var(--accent-green);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* Service Info Section */
.service-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.service-info-content h3 {
  margin-bottom: 1rem;
}

.service-info-content p {
  margin-bottom: 1rem;
}

.service-info-list {
  margin-top: 1.5rem;
}

.service-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.service-info-list svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Usage Examples */
.usage-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.usage-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--border-light);
}

.usage-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.usage-card h4 svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}

.usage-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* Related Services */
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.related-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.related-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.related-icon {
  width: 48px;
  height: 48px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-size: 1.5rem;
}

.related-card h5 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}

.related-card span {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: var(--gradient-primary);
  padding: 4rem 0;
  text-align: center;
}

body.homepage .cta-section {
  background: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
}

.cta-section h2 {
  color: white;
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-section .btn-white {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  padding-top: 120px;
  padding-bottom: 4rem;
  background: var(--gradient-hero);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-content h2 {
  margin-bottom: 1.5rem;
}

.about-content p {
  margin-bottom: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.about-image {
  background: var(--gradient-light);
  border-radius: var(--radius-xl);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.value-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
}

.value-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.value-card h4 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

/* ============================================
   BLOG PAGE
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  transition: all var(--transition-base);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-image {
  height: 200px;
  background: var(--gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-image svg {
  width: 48px;
  height: 48px;
  color: var(--primary);
  opacity: 0.5;
}

.blog-content {
  padding: 1.5rem;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.blog-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.blog-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
}

.read-more svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.read-more:hover svg {
  transform: translateX(4px);
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-info h3 {
  margin-bottom: 1rem;
}

.contact-info > p {
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-method-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-method-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.contact-method-content a {
  color: var(--primary);
  font-weight: 500;
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ============================================
   CHECKOUT PAGE
   ============================================ */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.checkout-notice {
  padding: 1rem 1.1rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.10));
  border: 1px solid rgba(124, 58, 237, 0.14);
  border-radius: var(--radius-md);
}

.checkout-notice strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--text-primary);
}

.checkout-notice p {
  font-size: 0.95rem;
}

.checkout-status {
  padding: 0.95rem 1rem;
  margin-bottom: 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
}

.checkout-status-info {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.16);
  color: var(--primary-dark);
}

.checkout-status-success {
  background: rgba(22, 163, 74, 0.08);
  border: 1px solid rgba(22, 163, 74, 0.16);
  color: var(--accent-green-dark);
}

.checkout-status-error {
  background: rgba(220, 38, 38, 0.08);
  border: 1px solid rgba(220, 38, 38, 0.16);
  color: #b91c1c;
}

.checkout-empty-state {
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  border: 1px dashed var(--border-medium);
  border-radius: var(--radius-md);
  background: var(--bg-light);
}

.checkout-empty-state h4 {
  margin-bottom: 0.5rem;
}

.checkout-empty-state p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.checkout-form-disabled {
  opacity: 0.85;
}

.checkout-disclaimer {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.checkout-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
}

.checkout-form h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.checkout-summary {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-light);
  height: fit-content;
}

.checkout-summary h3 {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border-light);
}

.summary-item:last-of-type {
  border-bottom: none;
}

.summary-item span:first-child {
  color: var(--text-secondary);
}

.summary-item span:last-child {
  font-weight: 600;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 2px solid var(--border-light);
  font-size: 1.25rem;
  font-weight: 700;
}

.checkout-help-box {
  margin-top: 2rem;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.checkout-help-box h4 {
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.checkout-help-box p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.payment-methods {
  margin: 1.5rem 0;
}

.payment-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.payment-method:hover,
.payment-method.selected {
  border-color: var(--primary);
  background: var(--bg-light);
}

.payment-method input {
  width: 20px;
  height: 20px;
  accent-color: var(--primary);
}

/* ============================================
   POLICY PAGES
   ============================================ */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.policy-content h2:first-child {
  margin-top: 0;
}

.policy-content p {
  margin-bottom: 1rem;
}

.policy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.policy-content ul li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

/* Tablet (768px and up) */
@media (min-width: 768px) {
  .nav-desktop {
    display: block;
  }
  
  .header-cta {
    display: block;
  }
  
  .mobile-toggle {
    display: none;
  }
  
  .mobile-menu {
    display: none;
  }
  
  .hero-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 4rem;
  }
  
  .hero-highlights {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-buttons {
    flex-direction: row;
    align-items: center;
  }

  .hero-buttons .btn {
    width: auto;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-showcase {
    min-height: 520px;
    padding: 1rem 0;
  }

  .showcase-panel {
    width: 80%;
    padding: 2rem;
  }

  .hero-floating-card {
    position: absolute;
    max-width: 235px;
  }

  .card-primary {
    top: 0.5rem;
    right: 0;
  }

  .card-secondary {
    left: 0.5rem;
    bottom: 0.25rem;
  }

  .card-tertiary {
    right: 1rem;
    bottom: 6rem;
  }
  
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-footer-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .category-action {
    width: auto;
    min-width: 150px;
  }
  
  .age-tiers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .platforms-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quantity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-proof-card:last-child {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .testimonial-proof-card:last-child .testimonial-proof-media {
    margin: 0;
  }
  
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-info-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .usage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .related-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .checkout-grid {
    grid-template-columns: 2fr 1fr;
  }
}

/* Desktop (1024px and up) */
@media (min-width: 1024px) {
  .hero-showcase {
    min-height: 560px;
  }

  .showcase-panel {
    width: 78%;
  }

  .card-primary {
    right: 0.5rem;
  }

  .card-secondary {
    left: 0;
  }

  .card-tertiary {
    right: 1.5rem;
    bottom: 7rem;
  }

  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .age-tiers-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .platforms-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quantity-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-options-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .testimonial-proof-card,
  .testimonial-proof-card:last-child {
    grid-template-columns: minmax(0, 1fr);
    grid-column: auto;
  }

  .testimonial-proof-media,
  .testimonial-proof-card:last-child .testimonial-proof-media {
    width: min(100%, 230px);
    margin: 0 auto;
  }
  
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .usage-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Large Desktop (1280px and up) */
@media (min-width: 1280px) {
  .container {
    padding: 0 2rem;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center {
  text-align: center;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* Animation for scroll */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}
