/* ============================================
   ACCSEPIC - Premium Digital Marketplace
   Design System & Styles
   ============================================ */

/* ---- Google Fonts Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400&display=swap');

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
  /* Colors */
  --deep-space: #FFFFFF;
  --slate-gray: #F8FAFC;
  --emerald: #10B981;
  --emerald-dark: #059669;
  --aqua: #00F2FE;
  --glowing-white: #0F172A;
  --text-secondary: #475569;
  --glass-bg: rgba(248, 250, 252, 0.9);
  --glass-border: rgba(15, 23, 42, 0.12);
  --card-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  --emerald-glow: 0 0 20px rgba(16, 185, 129, 0.4);
  --emerald-glow-strong: 0 0 20px rgba(16, 185, 129, 0.6);

  /* Typography */
  --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing */
  --max-width: 1400px;
  --section-padding: 120px;
  --section-padding-mobile: 80px;
  --grid-gap: 24px;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 50%;

  /* Transitions */
  --transition-smooth: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  background-color: #FFFFFF;
  color: #0F172A;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
  color: inherit;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--aqua));
  z-index: 9999;
  transition: width 0.1s ease-out;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
}

/* ============================================
   NAVIGATION
   ============================================ */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-brand {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-brand .brand-white {
  color: var(--glowing-white);
}

.nav-brand .brand-green {
  color: var(--emerald);
}

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

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
  position: relative;
}

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

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

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

.nav-link.active {
  color: var(--emerald);
}

.nav-cta {
  background: var(--emerald);
  color: white;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-smooth);
}

.nav-cta:hover {
  filter: brightness(1.1);
  box-shadow: var(--emerald-glow-strong);
  transform: translateY(-1px);
}

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

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--glowing-white);
  transition: var(--transition-smooth);
}

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

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

.mega-menu-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-menu-trigger svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

.mega-menu-wrapper:hover .mega-menu-trigger svg {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 800px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

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

.mega-menu-category h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--emerald);
  margin-bottom: 12px;
}

.mega-menu-category a {
  display: block;
  padding: 6px 0;
  font-size: 13px;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.mega-menu-category a:hover {
  color: var(--glowing-white);
  padding-left: 8px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: #0F172A;
}

.hero-canvas {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.15;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--glowing-white);
  margin-bottom: 20px;
  letter-spacing: -1px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 span {
  color: var(--emerald);
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
}

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

.btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: var(--emerald-glow-strong);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--glowing-white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--emerald);
  color: var(--emerald);
  background: rgba(16, 185, 129, 0.1);
}

.btn-ghost {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  color: var(--glowing-white);
  border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-small {
  padding: 8px 18px;
  font-size: 13px;
}

.btn-large {
  padding: 18px 40px;
  font-size: 16px;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 24px;
  background: var(--slate-gray);
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

.trust-badge svg {
  width: 22px;
  height: 22px;
  color: var(--emerald);
  flex-shrink: 0;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: var(--section-padding) 24px;
}

.section-dark {
  background: #0F172A;
}

.section-slate {
  background: var(--slate-gray);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--emerald);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--glowing-white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
}

/* ============================================
   GLASSMORPHISM CARDS
   ============================================ */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-smooth);
}

.glass-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  transform: translateY(-4px);
}

.glass-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--emerald);
}

.glass-card-icon svg {
  width: 24px;
  height: 24px;
}

.glass-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--glowing-white);
  margin-bottom: 10px;
}

.glass-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CATEGORY CARDS
   ============================================ */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition-smooth);
  cursor: pointer;
}

.category-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.category-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--emerald);
  font-size: 28px;
}

.category-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.product-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.product-card:hover {
  transform: translateY(-6px);
  border-color: rgba(16, 185, 129, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.product-image {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-bottom: 1px solid var(--glass-border);
}

.product-body {
  padding: 24px;
}

.product-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.badge-fresh {
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald);
}

.badge-aged {
  background: rgba(0, 242, 254, 0.2);
  color: var(--aqua);
}

.badge-ai {
  background: rgba(139, 92, 246, 0.2);
  color: #A78BFA;
}

.product-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.product-card .product-desc {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
}

.product-price {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--emerald);
  margin-bottom: 16px;
}

.product-actions {
  display: flex;
  gap: 8px;
}

.product-actions .btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 13px;
}

/* ============================================
   PRICING TABLES
   ============================================ */
.pricing-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.pricing-tab {
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.pricing-tab:hover {
  border-color: var(--emerald);
  color: var(--glowing-white);
}

.pricing-tab.active {
  background: var(--emerald);
  color: white;
  border-color: var(--emerald);
}

.pricing-table-wrapper {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.pricing-table th {
  text-align: left;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--glass-border);
}

.pricing-table td {
  padding: 14px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.price-cell {
  font-family: var(--font-mono);
  font-weight: 600;
  color: var(--emerald);
}

/* ============================================
   PRICING CALCULATOR
   ============================================ */
.calculator-form {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  color: var(--glowing-white);
  transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-secondary);
}

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

.calculator-result {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-sm);
  padding: 24px;
  margin-top: 24px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  font-size: 15px;
}

.result-row.total {
  font-size: 20px;
  font-weight: 700;
  color: var(--emerald);
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  padding-top: 12px;
  margin-top: 12px;
}

/* ============================================
   FEATURE CARDS (Why Choose Us)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
}

.feature-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-3px);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--emerald);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   ORDER PROCESS STEPS
   ============================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  text-align: center;
  padding: 32px 24px;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background: var(--emerald);
  color: white;
  font-size: 22px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--emerald-glow);
}

.step-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  color: #FBBF24;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.testimonial-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  color: var(--emerald);
}

.testimonial-info h4 {
  font-size: 15px;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 13px;
  color: var(--text-secondary);
}

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

.faq-item {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--glowing-white);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.faq-question:hover {
  color: var(--emerald);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 12px;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

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

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

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 100px 24px;
  text-align: center;
}

.cta-box {
  max-width: 900px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(0, 242, 254, 0.1));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
}

.cta-box h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  margin-bottom: 16px;
}

.cta-box p {
  font-size: 17px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CRYPTO WALLET CARDS
   ============================================ */
.wallet-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.wallet-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.wallet-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.wallet-card-header h3 {
  font-size: 16px;
  font-weight: 600;
}

.wallet-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--emerald);
}

.wallet-icon svg {
  width: 20px;
  height: 20px;
}

.wallet-address {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  word-break: break-all;
  margin-bottom: 12px;
}

.wallet-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--emerald);
  padding: 8px 16px;
  background: rgba(16, 185, 129, 0.1);
  border-radius: var(--radius-sm);
  transition: var(--transition-smooth);
}

.wallet-copy-btn:hover {
  background: rgba(16, 185, 129, 0.2);
}

.wallet-copy-btn svg {
  width: 14px;
  height: 14px;
}

/* ============================================
   ORDER MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.modal {
  background: var(--slate-gray);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.95);
  transition: transform 0.3s ease;
}

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

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid var(--glass-border);
}

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

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--glowing-white);
}

.modal-body {
  padding: 32px;
}

.modal-footer {
  padding: 24px 32px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-footer .btn {
  flex: 1;
  min-width: 140px;
}

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 28px;
}

.blog-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16, 185, 129, 0.3);
}

.blog-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.blog-body {
  padding: 24px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: 12px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.blog-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--emerald);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-smooth);
}

.blog-link:hover {
  gap: 10px;
}

/* ============================================
   CONTACT CARDS
   ============================================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.contact-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: var(--transition-smooth);
}

.contact-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.contact-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: rgba(16, 185, 129, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--emerald);
}

.contact-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-card a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.contact-card a:hover {
  color: var(--emerald);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--slate-gray);
  border-top: 1px solid var(--glass-border);
  padding: 60px 24px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 48px;
  max-width: var(--max-width);
  margin: 0 auto 48px;
}

.footer-brand {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-brand .brand-white {
  color: var(--glowing-white);
}

.footer-brand .brand-green {
  color: var(--emerald);
}

.footer-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.footer-social a:hover {
  background: var(--emerald);
  border-color: var(--emerald);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--glowing-white);
}

.footer-column a {
  display: block;
  font-size: 14px;
  color: var(--text-secondary);
  padding: 6px 0;
  transition: var(--transition-smooth);
}

.footer-column a:hover {
  color: var(--emerald);
  padding-left: 4px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid var(--glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* ============================================
   FLOATING ACTION BUTTONS
   ============================================ */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 90;
}

.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn svg {
  width: 24px;
  height: 24px;
}

.floating-whatsapp {
  background: #25D366;
  color: white;
}

.floating-telegram {
  background: #0088CC;
  color: white;
}

.floating-top {
  background: var(--emerald);
  color: white;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.floating-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 20px 0;
  flex-wrap: wrap;
}

.breadcrumb a {
  transition: var(--transition-smooth);
}

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

.breadcrumb-separator {
  color: var(--text-secondary);
  opacity: 0.5;
}

.breadcrumb-current {
  color: var(--glowing-white);
}

/* ============================================
   STATS GRID
   ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
}

.stat-number {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--emerald);
  font-family: var(--font-mono);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================
   GRID DISPLAY (Service Grid)
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.service-grid-item {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  transition: var(--transition-smooth);
}

.service-grid-item:hover {
  border-color: var(--emerald);
  transform: translateY(-2px);
}

.service-grid-item h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
}

.service-grid-item span {
  font-size: 12px;
  color: var(--emerald);
  font-family: var(--font-mono);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 5px rgba(16, 185, 129, 0.3); }
  50% { box-shadow: 0 0 20px rgba(16, 185, 129, 0.6); }
}

/* Scroll Animation Classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   3D HOLOGRAPHIC CAROUSEL
   ============================================ */
.carousel-section {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
}

.scene {
  position: relative;
  perspective: 1200px;
  transform-style: preserve-3d;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  height: 450px;
}

.carousel-3d {
  position: relative;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  transform-style: preserve-3d;
  animation: rotateScene 30s linear infinite;
}

.carousel__cell {
  position: absolute;
  width: 180px;
  height: 100px;
  left: 50%;
  top: 50%;
  margin-left: -90px;
  margin-top: -50px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.3);
  color: var(--glowing-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.carousel__cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 242, 254, 0.3) 0%, transparent 80%);
  transform-origin: top center;
  transform: translateY(-100%) scaleY(0.5);
  filter: blur(10px);
  z-index: -1;
  border-radius: inherit;
}

.carousel__cell:nth-child(1) { transform: rotateY(0deg) translateZ(220px); }
.carousel__cell:nth-child(2) { transform: rotateY(36deg) translateZ(220px); }
.carousel__cell:nth-child(3) { transform: rotateY(72deg) translateZ(220px); }
.carousel__cell:nth-child(4) { transform: rotateY(108deg) translateZ(220px); }
.carousel__cell:nth-child(5) { transform: rotateY(144deg) translateZ(220px); }
.carousel__cell:nth-child(6) { transform: rotateY(180deg) translateZ(220px); }
.carousel__cell:nth-child(7) { transform: rotateY(216deg) translateZ(220px); }
.carousel__cell:nth-child(8) { transform: rotateY(252deg) translateZ(220px); }
.carousel__cell:nth-child(9) { transform: rotateY(288deg) translateZ(220px); }
.carousel__cell:nth-child(10) { transform: rotateY(324deg) translateZ(220px); }

@keyframes rotateScene {
  0% { transform: rotateY(0deg) rotateX(10deg); }
  100% { transform: rotateY(360deg) rotateX(10deg); }
}

/* ============================================
   PREVIEW SCROLLING ROW
   ============================================ */
.preview-wrapper {
  overflow: hidden;
  padding: 40px 0;
}

.preview-row {
  display: flex;
  gap: 20px;
  width: fit-content;
  animation: scrollPreview 20s linear infinite;
}

.preview-row:hover {
  animation-play-state: paused;
}

.preview-item {
  flex-shrink: 0;
  width: clamp(300px, 40vw, 500px);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.preview-item img {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes scrollPreview {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   PRODUCT TOGGLE (Grid/List View)
   ============================================ */
.view-toggle {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  justify-content: flex-end;
}

.toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-secondary);
  transition: var(--transition-smooth);
}

.toggle-btn.active,
.toggle-btn:hover {
  background: var(--emerald);
  color: white;
  border-color: var(--emerald);
}

.toggle-btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
  .mega-menu {
    min-width: 700px;
  }
  .mega-menu-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 60px;
    gap: 24px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    font-size: 18px;
  }

  .menu-toggle {
    display: flex;
  }

  .mega-menu-wrapper {
    display: none;
  }

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

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

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

  .scene,
  .carousel-3d {
    width: 350px;
    height: 350px;
  }

  .carousel__cell {
    width: 140px;
    height: 80px;
    margin-left: -70px;
    margin-top: -40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 80px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .trust-badges {
    gap: 20px;
    padding: 30px 16px;
  }

  .trust-badge {
    font-size: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .carousel-section {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .categories-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .cta-actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .floating-actions {
    bottom: 16px;
    right: 16px;
  }

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

  .wallet-grid {
    grid-template-columns: 1fr;
  }

  .modal-footer {
    flex-direction: column;
  }

  .modal-footer .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 32px;
  }

  .calculator-form {
    padding: 24px;
  }

  .cta-box {
    padding: 40px 24px;
  }

  .section {
    padding: 60px 16px;
  }

  .nav-container {
    padding: 0 16px;
    height: 60px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-emerald { color: var(--emerald); }
.text-aqua { color: var(--aqua); }
.text-muted { color: var(--text-secondary); }
.text-white { color: var(--glowing-white); }

.font-mono { font-family: var(--font-mono); }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }

.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.hidden { display: none !important; }

/* Low stock indicator */
.stock-low {
  color: #F59E0B;
}

.stock-in {
  color: var(--emerald);
}

.stock-out {
  color: #EF4444;
}

/* Notification toast */
.toast {
  position: fixed;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--slate-gray);
  border: 1px solid var(--emerald);
  color: var(--glowing-white);
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: var(--card-shadow);
}

.toast.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* Copy success animation */
.copy-success {
  animation: pulse 0.3s ease;
}

/* ============================================
   SWIPER SLIDER OVERRIDES & SERVICE SLIDER
   ============================================ */
.services-slider-section {
  padding: 0 0 60px;
  overflow: hidden;
}

.services-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  margin-bottom: 32px;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
}

.slider-nav-btns {
  display: flex;
  gap: 12px;
}

.slider-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--glowing-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-smooth);
  flex-shrink: 0;
}

.slider-nav-btn:hover {
  background: var(--emerald);
  border-color: var(--emerald);
  box-shadow: var(--emerald-glow);
}

.slider-nav-btn svg {
  width: 20px;
  height: 20px;
}

.swiper-services {
  padding: 0 24px 20px !important;
  overflow: visible !important;
}

.swiper-services .swiper-wrapper {
  align-items: stretch;
}

.swiper-services .swiper-slide {
  height: auto;
}

.swiper-services .product-card {
  height: 100%;
}

.swiper-pagination-services {
  margin-top: 24px;
  position: static !important;
}

.swiper-pagination-services .swiper-pagination-bullet {
  background: var(--text-secondary);
  opacity: 0.5;
  width: 8px;
  height: 8px;
  transition: all 0.3s;
}

.swiper-pagination-services .swiper-pagination-bullet-active {
  background: var(--emerald);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   TABBED PRICING TABLES
   ============================================ */
.pricing-section {
  padding: 80px 24px;
}

.pricing-tabs-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
}

.age-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--glass-border);
  padding-bottom: 0;
}

.age-tab {
  padding: 12px 28px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  border: 1px solid transparent;
  border-bottom: none;
  color: var(--text-secondary);
  cursor: pointer;
  transition: var(--transition-smooth);
  position: relative;
  bottom: -1px;
}

.age-tab:hover {
  color: var(--glowing-white);
  background: var(--glass-bg);
  border-color: var(--glass-border);
}

.age-tab.active {
  background: var(--slate-gray);
  color: var(--emerald);
  border-color: var(--glass-border);
  border-bottom-color: var(--slate-gray);
}

.age-tab-content {
  display: none;
}

.age-tab-content.active {
  display: block;
}

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

@media (max-width: 900px) {
  .pricing-tables-grid {
    grid-template-columns: 1fr;
  }
}

.pricing-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.pricing-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.pricing-card-header {
  padding: 20px 24px;
  background: rgba(16, 185, 129, 0.08);
  border-bottom: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.pricing-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--glowing-white);
}

.pricing-card-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--emerald);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card-badge.badge-popular {
  background: rgba(245, 158, 11, 0.2);
  color: #F59E0B;
}

.pricing-card-badge.badge-value {
  background: rgba(0, 242, 254, 0.2);
  color: var(--aqua);
}

.pricing-card-badge.badge-premium {
  background: rgba(139, 92, 246, 0.2);
  color: #A78BFA;
}

.pricing-card .pricing-table {
  min-width: unset;
}

.pricing-card .pricing-table th,
.pricing-card .pricing-table td {
  padding: 12px 16px;
}

.order-row-btns {
  display: flex;
  gap: 8px;
  padding: 16px 16px;
  border-top: 1px solid var(--glass-border);
}

.order-row-btns .btn {
  flex: 1;
  padding: 10px 16px;
  font-size: 13px;
}

/* ============================================
   ENHANCED NAVBAR (FULL MEGA MENU)
   ============================================ */
.mega-menu-grid.extended {
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1400px) {
  .mega-menu-grid.extended {
    grid-template-columns: repeat(4, 1fr);
  }
}

.mega-menu.wide {
  min-width: 1000px;
  max-width: 1200px;
}

/* Mobile mega menu as accordion */
@media (max-width: 992px) {
  .mega-menu-wrapper {
    display: block !important;
    width: 100%;
  }

  .mega-menu-trigger {
    justify-content: center;
    width: 100%;
  }

  .mega-menu {
    position: static;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
    min-width: 100%;
    width: 100%;
    padding: 16px;
    margin-top: 8px;
    display: none;
    box-shadow: none;
  }

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

  .mega-menu-grid,
  .mega-menu-grid.extended {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .mega-menu-wrapper:hover .mega-menu {
    display: none;
  }

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

@media (max-width: 480px) {
  .mega-menu-grid,
  .mega-menu-grid.extended {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
}

/* ============================================
   SERVICE PAGE RICH CONTENT
   ============================================ */
.service-hero {
  padding-top: 120px;
  padding-bottom: 0;
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

@media (max-width: 900px) {
  .service-layout {
    grid-template-columns: 1fr;
  }
}

.service-features-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 24px 0;
}

.service-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.service-feature-item svg {
  width: 16px;
  height: 16px;
  color: var(--emerald);
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 600px) {
  .service-features-list {
    grid-template-columns: 1fr;
  }
}

.service-specs {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 24px 0;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-spec-row {
  display: flex;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--glass-border);
  font-size: 14px;
  gap: 16px;
}

.service-spec-row:last-child {
  border-bottom: none;
}

.service-spec-label {
  color: var(--text-secondary);
  width: 140px;
  flex-shrink: 0;
  font-weight: 500;
}

.service-spec-value {
  color: var(--glowing-white);
  font-weight: 600;
}

.service-spec-value.green {
  color: var(--emerald);
}

.faq-section {
  padding: 80px 24px;
}

.faq-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: var(--glowing-white);
  cursor: pointer;
  gap: 16px;
  background: none;
  border: none;
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--emerald);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px;
  max-height: 400px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.use-case-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  transition: var(--transition-smooth);
  text-align: center;
}

.use-case-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.use-case-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.use-case-card h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--glowing-white);
}

.use-case-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.why-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: var(--transition-smooth);
}

.why-card:hover {
  border-color: rgba(16, 185, 129, 0.3);
  transform: translateY(-4px);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: rgba(16, 185, 129, 0.12);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--emerald);
}

.why-icon svg {
  width: 24px;
  height: 24px;
}

.why-card h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--glowing-white);
}

.why-card p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE TABLE FIX
   ============================================ */
.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
}

.table-responsive::-webkit-scrollbar {
  height: 4px;
}

.table-responsive::-webkit-scrollbar-track {
  background: var(--glass-bg);
}

.table-responsive::-webkit-scrollbar-thumb {
  background: var(--emerald);
  border-radius: 2px;
}

/* ============================================
   ADDITIONAL MOBILE FIXES
   ============================================ */
@media (max-width: 768px) {
  .service-layout {
    grid-template-columns: 1fr;
  }

  .services-slider-header {
    padding: 0 16px;
  }

  .swiper-services {
    padding: 0 16px 20px !important;
  }

  .age-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    flex-wrap: nowrap;
    padding-bottom: 0;
    gap: 4px;
  }

  .age-tab {
    white-space: nowrap;
    padding: 10px 16px;
    font-size: 13px;
  }

  .pricing-tables-grid {
    grid-template-columns: 1fr;
  }

  .order-row-btns {
    flex-direction: column;
  }

  .service-features-list {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .use-cases-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .pricing-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================
   BREADCRUMB
   ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--text-secondary);
  transition: color 0.2s;
}

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

.breadcrumb-separator {
  color: var(--glass-border);
}

.breadcrumb-current {
  color: var(--glowing-white);
  font-weight: 500;
}

/* ============================================
   WHITE THEME OVERRIDES
   ============================================ */

/* Nav on white */
.main-nav {
  border-bottom: 1px solid rgba(15,23,42,0.08) !important;
}
.nav-link {
  color: #1E293B !important;
}
.nav-link:hover {
  color: var(--emerald) !important;
}
.menu-toggle span {
  background: #1E293B !important;
}

/* Hero section - keep gradient but lighten */
.hero-section {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 50%, #f0fdfa 100%) !important;
}
.hero-title {
  color: #0F172A !important;
}
.hero-desc {
  color: #475569 !important;
}

/* Section backgrounds */
.section-dark {
  background: #FFFFFF !important;
}
.section-slate {
  background: #F8FAFC !important;
}

/* Cards */
.service-card, .pricing-card, .calculator-form, .stat-card, .blog-card, .feature-card {
  background: #FFFFFF !important;
  border: 1px solid rgba(15,23,42,0.08) !important;
  color: #0F172A !important;
}
.service-card:hover, .pricing-card:hover {
  border-color: var(--emerald) !important;
  box-shadow: 0 8px 32px rgba(16, 185, 129, 0.15) !important;
}

/* Pricing tables */
.pricing-table th {
  background: #F1F5F9 !important;
  color: #374151 !important;
  border-bottom: 2px solid #E2E8F0 !important;
}
.pricing-table td {
  color: #374151 !important;
  border-bottom: 1px solid #F1F5F9 !important;
}
.pricing-table tr:hover td {
  background: #F8FAFC !important;
}

/* Tabs */
.age-tab {
  background: #F1F5F9 !important;
  color: #374151 !important;
  border: 1px solid #E2E8F0 !important;
}
.age-tab.active, .age-tab:hover {
  background: var(--emerald) !important;
  color: #FFFFFF !important;
  border-color: var(--emerald) !important;
}

/* Mega menu */
.mega-menu {
  background: #FFFFFF !important;
  border: 1px solid rgba(15,23,42,0.1) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12) !important;
}
.mega-menu a {
  color: #374151 !important;
}
.mega-menu a:hover {
  color: var(--emerald) !important;
}
.mega-menu-category h4 {
  color: #0F172A !important;
}

/* Breadcrumb */
.breadcrumb a, .breadcrumb-current {
  color: #374151 !important;
}

/* Labels & badges */
.section-label {
  color: var(--emerald) !important;
}
.section-title {
  color: #0F172A !important;
}
.section-desc {
  color: #475569 !important;
}

/* Form inputs */
input[type=text], input[type=email], textarea, select {
  background: #F8FAFC !important;
  border-color: #E2E8F0 !important;
  color: #0F172A !important;
}
input[readonly] {
  background: #F1F5F9 !important;
}

/* Calculator/form wrapper */
.calculator-form {
  background: #FFFFFF !important;
  border: 1px solid #E2E8F0 !important;
}
.calculator-result {
  background: #F0FDF4 !important;
  border: 1px solid #BBF7D0 !important;
}
.result-row span:first-child {
  color: #374151 !important;
}

/* Scroll progress bar */
.scroll-progress {
  background: var(--emerald) !important;
}

/* Footer stays dark */
.footer {
  background: #0F172A !important;
  color: #F8FAFC !important;
}
.footer a, .footer p, .footer-desc {
  color: #94A3B8 !important;
}
.footer a:hover {
  color: var(--emerald) !important;
}
.footer-brand .brand-white {
  color: #F8FAFC !important;
}

/* Btn ghost on white bg */
.btn-ghost {
  border-color: #E2E8F0 !important;
  color: #374151 !important;
}
.btn-ghost:hover {
  border-color: var(--emerald) !important;
  color: var(--emerald) !important;
  background: rgba(16,185,129,0.05) !important;
}

/* Price cells */
.price-cell {
  color: var(--emerald) !important;
  font-weight: 600 !important;
}

/* Order row buttons */
.order-row-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}
.order-row-btns .btn {
  flex: 1;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
}

/* Pricing card header */
.pricing-card-header {
  background: linear-gradient(135deg, #f0fdf4, #ecfdf5) !important;
  border-bottom: 1px solid #D1FAE5 !important;
}
.pricing-card-title {
  color: #065f46 !important;
}

/* Stats section */
.stat-number {
  color: var(--emerald) !important;
}
.stat-label {
  color: #475569 !important;
}

/* Blog/feature cards */
.blog-card-title, .feature-title {
  color: #0F172A !important;
}
.blog-card-excerpt, .feature-desc {
  color: #475569 !important;
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav-links {
    background: #FFFFFF !important;
    border-top: 1px solid #E2E8F0 !important;
  }
}
