/* ========================================
   Threadszoni.com - Premium Marketplace
   Teal + Gold + Cream Theme
   ======================================== */

/* CSS Variables */
:root {
  /* Primary Colors */
  --teal: #0D9488;
  --deep-teal: #0F766E;
  --emerald: #10B981;
  
  /* Luxury Accents */
  --warm-gold: #F59E0B;
  --soft-gold: #FBBF24;
  
  /* Support Accents */
  --cream: #FFFDF2;
  --light-cream: #FFF9E8;
  --soft-mint: #EFFFF8;
  --warm-sand: #FFF8EF;
  
  /* Text Colors */
  --heading: #111827;
  --heading-secondary: #1F2937;
  --body: #4B5563;
  --muted: #6B7280;
  --white: #FFFFFF;
  
  /* Borders */
  --border-light: #DCE9E7;
  --border-warm: #E7D8BE;
  
  /* Footer */
  --footer-bg: #111827;
  
  /* Gradients */
  --gradient-teal: linear-gradient(135deg, #0D9488 0%, #34D399 100%);
  --gradient-gold: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  --gradient-mixed: linear-gradient(135deg, #0D9488 0%, #F59E0B 100%);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 6px 24px rgba(245, 158, 11, 0.22);
  --shadow-teal: 0 6px 24px rgba(13, 148, 136, 0.22);
  
  /* Spacing */
  --section-py: 80px;
  --section-py-sm: 60px;
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: var(--heading);
  line-height: 1.3;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Typography */
.h1 {
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.2;
}

.h2 {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
}

.h3 {
  font-size: clamp(20px, 3vw, 24px);
  font-weight: 600;
}

.h4 {
  font-size: 20px;
  font-weight: 600;
}

.text-body {
  font-size: 16px;
  line-height: 1.7;
}

.text-small {
  font-size: 14px;
  line-height: 1.6;
}

.text-muted {
  color: var(--muted);
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 960px;
}

/* Section Styles */
.section {
  padding: var(--section-py) 0;
}

.section-sm {
  padding: var(--section-py-sm) 0;
}

.section-cream {
  background: linear-gradient(180deg, var(--cream) 0%, var(--light-cream) 100%);
}

.section-mint {
  background: linear-gradient(180deg, var(--soft-mint) 0%, #E4FCF4 100%);
}

.section-sand {
  background: linear-gradient(180deg, var(--warm-sand) 0%, #FFF3E5 100%);
}

.section-light-cream {
  background-color: var(--light-cream);
}

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 18px;
  color: var(--muted);
}

/* Home Services & Packages */
.home-packages-block {
  margin-top: 26px;
}

.home-packages-subtitle {
  margin-bottom: 18px;
  font-size: 22px;
  color: var(--heading-secondary);
}

.home-packages-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gradient-teal);
  color: var(--white);
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(15, 118, 110, 0.3);
}

.btn-gold {
  background: var(--gradient-gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(217, 119, 6, 0.3);
}

.btn-outline {
  border: 2px solid var(--teal);
  color: var(--teal);
  background: transparent;
}

.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-outline-gold {
  border: 2px solid var(--warm-gold);
  color: var(--warm-gold);
  background: transparent;
}

.btn-outline-gold:hover {
  background: var(--warm-gold);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--teal);
  font-weight: 600;
}

.btn-white:hover {
  background: var(--cream);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  min-width: 0;
}

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo span {
  color: var(--warm-gold);
}

/* Navigation */
.nav-desktop {
  display: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--heading-secondary);
  position: relative;
  padding: 8px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-teal);
  transition: width 0.3s ease;
}

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

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

/* Mega Menu */
.has-mega-menu {
  position: relative;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 800px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1001;
}

.has-mega-menu:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.mega-menu-category {
  margin-bottom: 16px;
}

.mega-menu-category h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 12px;
}

.mega-menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu-list a {
  font-size: 14px;
  color: var(--body);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.mega-menu-list a:hover {
  color: var(--teal);
  padding-left: 4px;
}

.mega-menu-list a::before {
  content: '→';
  opacity: 0;
  transition: opacity 0.2s ease;
  font-size: 12px;
}

.mega-menu-list a:hover::before {
  opacity: 1;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1002;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-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(--white);
  z-index: 999;
  padding: 24px 20px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-link {
  font-size: 16px;
  font-weight: 500;
  color: var(--heading);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-services-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading);
  border-bottom: 1px solid var(--border-light);
}

.mobile-services-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-services-toggle.active svg {
  transform: rotate(180deg);
}

.mobile-services-menu {
  display: none;
  padding: 16px 0;
}

.mobile-services-menu.active {
  display: block;
}

.mobile-service-category {
  margin-bottom: 20px;
}

.mobile-service-category h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-bottom: 10px;
}

.mobile-service-category ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-service-category a {
  font-size: 14px;
  color: var(--body);
  padding: 6px 0 6px 12px;
  border-left: 2px solid var(--border-light);
}

.mobile-service-category a:hover {
  color: var(--teal);
  border-left-color: var(--teal);
}

/* Hero Section */
.hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #E8FFF7 0%, #F3FFFB 55%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(13, 148, 136, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  max-width: 600px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #F6FFFB;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge svg {
  color: var(--warm-gold);
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--heading);
}

.hero h1 span {
  background: var(--gradient-mixed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 50px;
  font-size: 13px;
  color: var(--body);
  transition: all 0.2s ease;
}

.chip:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.stat-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F2FFFA 100%);
  padding: 20px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 1px solid rgba(13, 148, 136, 0.14);
}

.stat-card h3 {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 4px;
}

.stat-card p {
  font-size: 13px;
  color: var(--muted);
}

/* Marketplace Snapshot */
.snapshot-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.snapshot-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F6FFFC 100%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.snapshot-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft-mint);
  border-radius: var(--radius-md);
  color: var(--teal);
  flex-shrink: 0;
}

.snapshot-content h4 {
  font-size: 14px;
  color: var(--heading);
  margin-bottom: 2px;
}

.snapshot-content p {
  font-size: 12px;
  color: var(--muted);
}

/* Category Cards */
.category-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.category-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F5FFFB 100%);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid #CFE9E4;
}

.category-card[data-filter-category] {
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  border-color: var(--teal);
}

.category-card.category-active {
  border-color: var(--teal);
  box-shadow: var(--shadow-teal);
}

.category-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-teal);
  border-radius: var(--radius-md);
  color: var(--white);
  margin-bottom: 20px;
}

.category-card h3 {
  margin-bottom: 12px;
}

.category-card p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 15px;
}

.category-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--teal);
}

.category-link:hover {
  gap: 12px;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.feature-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF1 100%);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #EADFC9;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-md);
  color: var(--warm-gold);
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Age Tier Cards */
.age-tier-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

.age-tier-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F6FFFB 100%);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

.age-tier-card:hover {
  border-color: var(--teal);
}

.age-tier-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 6px 14px;
  background: var(--gradient-gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
}

.age-tier-card h3 {
  margin-bottom: 8px;
}

.age-tier-card .price {
  font-size: 24px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 12px;
}

.age-tier-card p {
  font-size: 14px;
  color: var(--muted);
}

/* Pricing Tables */
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-tab {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--body);
  background: #F5FFFB;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-tab:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: #ECFFF8;
}

.pricing-tab.active {
  background: var(--gradient-teal);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 8px 22px rgba(13, 148, 136, 0.26);
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.pricing-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FFFC 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #CFE9E4;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
  border-color: var(--soft-gold);
  position: relative;
  box-shadow: 0 12px 30px rgba(245, 158, 11, 0.22);
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 16px;
  background: var(--gradient-gold);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.pricing-header {
  padding: 28px;
  text-align: center;
  border-bottom: 1px solid var(--border-light);
  background: linear-gradient(180deg, rgba(13, 148, 136, 0.07) 0%, rgba(255, 255, 255, 0) 100%);
}

.pricing-card.featured .pricing-header {
  background: linear-gradient(180deg, rgba(245, 158, 11, 0.14) 0%, rgba(255, 255, 255, 0) 100%);
}

.pricing-card.featured .pricing-header {
  padding-top: 40px;
}

.pricing-header h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--teal);
}

.pricing-price span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #B45309;
  background: rgba(245, 158, 11, 0.16);
  border: 1px solid rgba(245, 158, 11, 0.38);
  padding: 4px 10px;
  border-radius: 999px;
  margin-left: 8px;
  vertical-align: middle;
}

.pricing-card.featured .pricing-price span {
  color: #0E7490;
  background: rgba(14, 116, 144, 0.14);
  border-color: rgba(14, 116, 144, 0.35);
}

.pricing-body {
  padding: 28px;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--body);
}

.pricing-feature svg {
  color: var(--emerald);
  flex-shrink: 0;
}

.pricing-footer {
  padding: 0 28px 28px;
}

/* Tab Panel Styles */
.panel-fresh {
  background: linear-gradient(180deg, #E6FFF7 0%, #ECFFF9 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.panel-1-6 {
  background: linear-gradient(180deg, #FFF8E8 0%, #FFFCEF 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.panel-7-11 {
  background: linear-gradient(180deg, #FFF4EA 0%, #FFF8F1 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.panel-1-2 {
  background: linear-gradient(135deg, #FFFFFF 0%, #E9FFF8 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.panel-3-5 {
  background: linear-gradient(135deg, #0A5C56 0%, #0E7A71 48%, #0FA896 100%);
  padding: 40px;
  border-radius: var(--radius-lg);
}

.panel-3-5 .pricing-card {
  background: rgba(255, 255, 255, 0.95);
}

.panel-3-5 .pricing-header h3,
.panel-3-5 .pricing-price {
  color: var(--deep-teal);
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.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;
}

.step-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-teal);
  color: var(--white);
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.process-step h3 {
  margin-bottom: 10px;
}

.process-step p {
  font-size: 15px;
  color: var(--muted);
}

/* Quantity Section */
.quantity-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.quantity-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF2 100%);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.quantity-card:hover {
  border-color: var(--warm-gold);
}

.quantity-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.quantity-card .accounts {
  font-size: 32px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 8px;
}

.quantity-card p {
  font-size: 14px;
  color: var(--muted);
}

/* Platform Highlights */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.platform-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FFFC 100%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.platform-item:hover {
  box-shadow: var(--shadow-md);
}

.platform-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
  color: var(--warm-gold);
}

.platform-item h4 {
  font-size: 14px;
  color: var(--heading);
}

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

.faq-item {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBFFFD 100%);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
  color: var(--heading);
  background: transparent;
}

.faq-question svg {
  color: var(--muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
  color: var(--teal);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

/* Contact Methods */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.contact-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FFFC 100%);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid var(--border-light);
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.contact-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--soft-mint);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--teal);
}

.contact-card.whatsapp .contact-icon {
  background: #DCFCE7;
  color: #16A34A;
}

.contact-card.telegram .contact-icon {
  background: #E0F2FE;
  color: #0284C7;
}

.contact-card.email .contact-icon {
  background: var(--cream);
  color: var(--warm-gold);
}

.contact-card h3 {
  margin-bottom: 8px;
}

.contact-card p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background: var(--footer-bg);
  color: var(--white);
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand p {
  color: #9CA3AF;
  font-size: 15px;
  line-height: 1.7;
  margin-top: 16px;
}

.footer-links h4 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #9CA3AF;
  margin-bottom: 16px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #D1D5DB;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--soft-gold);
}

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

.footer-bottom p {
  font-size: 14px;
  color: #9CA3AF;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #374151;
  border-radius: 50%;
  color: #D1D5DB;
  transition: all 0.2s ease;
}

.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
}

/* Floating Chat Buttons */
.floating-chat-buttons {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1500;
}

.floating-chat-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.floating-chat-btn.whatsapp {
  background: linear-gradient(135deg, #16A34A 0%, #22C55E 100%);
}

.floating-chat-btn.telegram {
  background: linear-gradient(135deg, #0284C7 0%, #38BDF8 100%);
}

.floating-chat-btn:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--shadow-xl);
  filter: saturate(1.08);
}

/* 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: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.modal-overlay.active .modal {
  transform: translateY(0);
}

.modal-header {
  padding: 24px 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-header h3 {
  font-size: 20px;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: 50%;
  color: var(--muted);
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--border-light);
  color: var(--heading);
}

.modal-body {
  padding: 24px;
}

.modal-service {
  padding: 12px 16px;
  background: var(--soft-mint);
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.modal-service p {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 4px;
}

.modal-service h4 {
  font-size: 16px;
  color: var(--teal);
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border: 2px solid var(--border-light);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.modal-option:hover {
  border-color: var(--teal);
  background: var(--soft-mint);
}

.modal-option-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.modal-option.whatsapp .modal-option-icon {
  background: #DCFCE7;
  color: #16A34A;
}

.modal-option.telegram .modal-option-icon {
  background: #E0F2FE;
  color: #0284C7;
}

.modal-option.email .modal-option-icon {
  background: var(--cream);
  color: var(--warm-gold);
}

.modal-option.checkout .modal-option-icon {
  background: var(--soft-mint);
  color: var(--teal);
}

.modal-option-content {
  flex: 1;
  text-align: left;
}

.modal-option-content h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.modal-option-content p {
  font-size: 13px;
  color: var(--muted);
}

.modal-option svg:last-child {
  color: var(--muted);
}

/* Breadcrumb */
.breadcrumb {
  padding: 100px 0 30px;
  background: var(--soft-mint);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.breadcrumb a {
  color: var(--muted);
}

.breadcrumb a:hover {
  color: var(--teal);
}

.breadcrumb svg {
  color: var(--muted);
  width: 16px;
  height: 16px;
}

.breadcrumb span {
  color: var(--heading);
  font-weight: 500;
}

/* Page Hero */
.page-hero {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, #E8FFF7 0%, #F3FFFB 100%);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
}

/* Service Page */
.service-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.service-intro-content h2 {
  margin-bottom: 20px;
}

.service-intro-content p {
  font-size: 16px;
  color: var(--body);
  line-height: 1.8;
  margin-bottom: 16px;
}

.service-values {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.value-item svg {
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
}

.value-item h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.value-item p {
  font-size: 13px;
  color: var(--muted);
}

/* Use Cases */
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.usecase-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFBF2 100%);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
}

.usecase-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.usecase-card h3 svg {
  color: var(--warm-gold);
}

.usecase-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}

/* Related Services */
.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.related-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FFFC 100%);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
  border: 1px solid rgba(13, 148, 136, 0.1);
}

.related-item:hover {
  box-shadow: var(--shadow-md);
}

.related-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
  color: var(--teal);
  flex-shrink: 0;
}

.related-item h4 {
  font-size: 14px;
  color: var(--heading);
}

/* Blog Cards */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
}

.blog-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F7FFFC 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.blog-image {
  height: 200px;
  background: var(--gradient-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-category {
  padding: 4px 12px;
  background: var(--soft-mint);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  border-radius: 50px;
}

.blog-date {
  font-size: 13px;
  color: var(--muted);
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: linear-gradient(180deg, #FFFFFF 0%, #F9FFFC 100%);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  background: var(--white);
  transition: border-color 0.2s ease;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--teal);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* Checkout Page */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.checkout-summary {
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.checkout-summary h3 {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
}

.checkout-placeholder {
  text-align: center;
  padding: 40px 20px;
  color: var(--muted);
}

.checkout-placeholder svg {
  margin-bottom: 16px;
  color: var(--border-warm);
}

.checkout-form-wrapper {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.checkout-form-wrapper h3 {
  margin-bottom: 24px;
}

.checkout-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.checkout-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.checkout-item span {
  font-size: 14px;
  color: var(--muted);
}

.checkout-item strong {
  font-size: 14px;
  color: var(--heading);
  text-align: right;
}

.checkout-message {
  display: none;
  margin-bottom: 20px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-size: 14px;
  border: 1px solid transparent;
}

.checkout-message.is-info {
  color: #075985;
  background: #E0F2FE;
  border-color: #7DD3FC;
}

.checkout-message.is-success {
  color: #166534;
  background: #DCFCE7;
  border-color: #86EFAC;
}

.checkout-message.is-error {
  color: #991B1B;
  background: #FEE2E2;
  border-color: #FCA5A5;
}

.checkout-helper {
  margin-top: 8px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

/* Policy Pages */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
}

.policy-content h2 {
  margin: 40px 0 20px;
  font-size: 24px;
}

.policy-content h3 {
  margin: 28px 0 12px;
  font-size: 18px;
}

.policy-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: 20px;
  padding-left: 24px;
  list-style: disc;
}

.policy-content li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* Tablet Styles */
@media (min-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .snapshot-row {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .age-tier-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .quantity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .platform-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-methods {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-values {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .usecase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .floating-chat-buttons {
    left: 14px;
    bottom: 14px;
    gap: 10px;
  }

  .floating-chat-btn {
    width: 48px;
    height: 48px;
  }
}

@media (max-width: 639px) {
  .home-packages-grid {
    grid-template-columns: 1fr;
  }

  .home-packages-grid .pricing-price {
    font-size: 28px;
  }

  .home-packages-grid .pricing-price span {
    display: inline-block;
    margin-left: 0;
    margin-top: 6px;
  }

  .home-packages-grid .pricing-header,
  .home-packages-grid .pricing-body,
  .home-packages-grid .pricing-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}

@media (max-width: 767px) {
  .header-inner {
    gap: 12px;
  }

  .logo {
    font-size: 21px;
    min-width: 0;
  }

  .logo svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
  }

  .checkout-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pricing-grid,
  .home-packages-grid {
    grid-template-columns: 1fr;
  }

  .panel-fresh,
  .panel-1-6,
  .panel-7-11,
  .panel-1-2,
  .panel-3-5 {
    padding: 20px;
  }

  .pricing-grid .pricing-card,
  .home-packages-grid .pricing-card {
    max-width: 460px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-price {
    font-size: 30px;
  }

  .pricing-price span {
    display: inline-block;
    margin-left: 0;
    margin-top: 6px;
  }

  .pricing-header,
  .pricing-body,
  .pricing-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Desktop Styles */
@media (min-width: 1024px) {
  .nav-desktop {
    display: block;
  }
  
  .menu-toggle {
    display: none;
  }
  
  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }
  
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .age-tier-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .process-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .quantity-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .platform-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .contact-methods {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: 2fr repeat(3, 1fr);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
  
  .service-intro {
    grid-template-columns: 1.5fr 1fr;
  }
  
  .service-values {
    grid-template-columns: 1fr;
  }
  
  .usecase-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .related-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .checkout-grid {
    grid-template-columns: 1fr 1.5fr;
  }
  
  .process-step:not(:last-child)::after {
    display: block;
  }

  .home-packages-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.text-teal {
  color: var(--teal);
}

.text-gold {
  color: var(--warm-gold);
}

.bg-cream {
  background-color: var(--cream);
}

.bg-mint {
  background-color: var(--soft-mint);
}

.bg-sand {
  background-color: var(--warm-sand);
}

.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }

.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }

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

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--deep-teal);
}
