/* ========================================
   Pvaserves.com - Digital Account Marketplace
   Modern Aurora Marketplace Theme
   ======================================== */

/* CSS Variables */
:root {
  --primary: #0EA5E9;
  --secondary: #8B5CF6;
  --accent: #F59E0B;
  --background: #FFFFFF;
  --light-section: #F8FAFC;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --borders: #E2E8F0;
  --footer-bg: #020617;
  --footer-text: #F9FAFB;
  --button: #22C55E;
  --gradient-primary: linear-gradient(135deg, #0EA5E9, #8B5CF6);
  --gradient-light: linear-gradient(135deg, #EEF2FF, #ECFEFF);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

ul, ol {
  list-style: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(30px, 5vw, 56px);
}

h2 {
  font-size: clamp(24px, 3vw, 38px);
}

h3 {
  font-size: clamp(20px, 2.5vw, 28px);
}

h4 {
  font-size: clamp(18px, 2vw, 22px);
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Container */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--borders);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #0ea5e9 0%, #2563eb 50%, #7c3aed 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.04em;
  box-shadow: 0 4px 16px rgba(14,165,233,0.35);
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: rgba(255,255,255,0.15);
  border-radius: 12px 12px 0 0;
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 2px;
}

.logo-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-primary);
}

.logo-name .logo-pva {
  color: #2563eb;
}

.logo-name .logo-serves {
  color: var(--text-primary);
}

.logo-tagline {
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #64748b;
}

/* Desktop Navigation */
.nav-desktop {
  display: none;
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: 32px;
  }
}

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

/* Mega Menu */
.mega-menu-wrapper {
  position: relative;
}

.mega-menu-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 0;
}

.mega-menu-trigger:hover {
  color: var(--primary);
}

.mega-menu-trigger svg {
  transition: var(--transition);
}

.mega-menu-wrapper:hover .mega-menu-trigger svg {
  transform: rotate(180deg);
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 1100px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 32px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  margin-top: 16px;
}

.mega-menu-wrapper:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
  min-width: 900px;
}

.mega-menu-column h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mega-menu-item:hover {
  background: var(--light-section);
}

.mega-menu-item-icon {
  width: 28px;
  height: 28px;
  background: var(--gradient-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.mega-menu-item span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-primary);
}

/* Header CTA */
.header-cta {
  display: none;
}

@media (min-width: 1024px) {
  .header-cta {
    display: flex;
    align-items: center;
    gap: 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.btn-primary {
  background: var(--button);
  color: white;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.btn-primary:hover {
  background: #16a34a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
}

.btn-secondary {
  background: var(--gradient-primary);
  color: white;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  border: 2px solid var(--borders);
  color: var(--text-primary);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

@media (min-width: 1024px) {
  .mobile-toggle {
    display: none;
  }
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  padding: 24px;
  transform: translateX(100%);
  transition: var(--transition);
  overflow-y: auto;
}

.mobile-menu.active {
  transform: translateX(0);
}

.mobile-nav-link {
  display: block;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  border-bottom: 1px solid var(--borders);
}

.mobile-accordion {
  border-bottom: 1px solid var(--borders);
}

.mobile-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary);
  width: 100%;
}

.mobile-accordion-header svg {
  transition: var(--transition);
}

.mobile-accordion-header.active svg {
  transform: rotate(180deg);
}

.mobile-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.mobile-accordion-content.active {
  max-height: 2500px;
}

.mobile-accordion-item {
  display: block;
  padding: 12px 0 12px 24px;
  font-size: 15px;
  color: var(--text-secondary);
}

.mobile-accordion-item:hover {
  color: var(--primary);
}

.mobile-accordion-sub {
  display: block;
  padding: 12px 0 8px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-primary);
  background: var(--bg-secondary);
  margin-top: 8px;
}

.mobile-cta {
  margin-top: 24px;
}

.mobile-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  padding: 140px 0 80px;
  background: var(--gradient-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 20px;
  line-height: 1.1;
}

.hero-title span {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-visual {
  position: relative;
  display: none;
}

@media (min-width: 1024px) {
  .hero-visual {
    display: block;
  }
}

.floating-cards {
  position: relative;
  height: 400px;
}

.floating-card {
  position: absolute;
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px;
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
  top: 0;
  left: 0;
  animation-delay: 0s;
}

.floating-card:nth-child(2) {
  top: 80px;
  right: 0;
  animation-delay: 1s;
}

.floating-card:nth-child(3) {
  bottom: 40px;
  left: 40px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

.floating-card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 12px;
}

.floating-card h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.floating-card p {
  font-size: 13px;
}

/* ========================================
   SECTIONS
   ======================================== */

.section {
  padding: 80px 0;
}

.section-light {
  background: var(--light-section);
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
}

.section-label {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gradient-light);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 16px;
}

.section-description {
  font-size: 18px;
}

/* ========================================
   CATEGORY CARDS
   ======================================== */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 480px) {
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1400px) {
  .categories-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.category-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  text-align: center;
  border: 1px solid var(--borders);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

@media (min-width: 480px) {
  .category-card {
    padding: 24px 18px;
  }
}

.category-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.category-logo {
  width: 64px;
  height: 64px;
  background: var(--gradient-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}

.category-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.category-card p {
  font-size: 14px;
  flex-grow: 1;
}

.category-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--borders);
}

.category-price {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.category-card .btn-outline {
  width: 100%;
}

/* ========================================
   LIFECYCLE SECTION
   ======================================== */

.lifecycle-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .lifecycle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .lifecycle-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.lifecycle-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--borders);
  position: relative;
  overflow: hidden;
}

.lifecycle-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.lifecycle-badge {
  display: inline-block;
  padding: 6px 12px;
  background: var(--gradient-light);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.lifecycle-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.lifecycle-card p {
  font-size: 14px;
}

/* ========================================
   TRENDING PLATFORMS
   ======================================== */

.trending-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .trending-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .trending-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.trending-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  border: 1px solid var(--borders);
  transition: var(--transition);
}

.trending-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.trending-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin: 0 auto 12px;
}

.trending-card h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.trending-card span {
  font-size: 13px;
  color: var(--primary);
  font-weight: 500;
}

/* ========================================
   BULK ADVANTAGES
   ======================================== */

.bulk-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .bulk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .bulk-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bulk-card {
  display: flex;
  gap: 16px;
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--borders);
}

.bulk-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
  flex-shrink: 0;
}

.bulk-content h4 {
  font-size: 16px;
  margin-bottom: 6px;
}

.bulk-content p {
  font-size: 14px;
}

/* ========================================
   QUANTITY BUNDLES
   ======================================== */

.bundles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .bundles-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.bundle-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 2px solid var(--borders);
  transition: var(--transition);
}

.bundle-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
}

.bundle-card.featured {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(139, 92, 246, 0.05));
}

.bundle-quantity {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.bundle-price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.bundle-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ========================================
   PVACHAIN VS OTHERS
   ======================================== */

.comparison-table {
  overflow-x: auto;
  margin-top: 40px;
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comparison-table th,
.comparison-table td {
  padding: 20px 24px;
  text-align: left;
  border-bottom: 1px solid var(--borders);
}

.comparison-table th {
  background: var(--gradient-primary);
  color: white;
  font-size: 16px;
  font-weight: 600;
}

.comparison-table th:first-child {
  background: #1e293b;
}

.comparison-table td {
  font-size: 15px;
  color: var(--text-secondary);
}

.comparison-table td:first-child {
  font-weight: 500;
  color: var(--text-primary);
}

.comparison-table .check {
  color: var(--primary);
  font-weight: 600;
}

.comparison-logo {
  font-weight: 700;
  font-size: 18px;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--light-section);
}

@media (max-width: 640px) {
  .comparison-table {
    margin-top: 24px;
  }
  
  .comparison-table th,
  .comparison-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
  
  .comparison-table th {
    font-size: 14px;
  }
  
  .comparison-logo {
    font-weight: 700;
    font-size: 14px;
  }
}

/* ========================================
   ORDERING PROCESS
   ======================================== */

.process-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .process-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.process-card {
  text-align: center;
  position: relative;
}

.process-number {
  width: 56px;
  height: 56px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: white;
  margin: 0 auto 16px;
}

.process-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}

.process-card p {
  font-size: 14px;
}

/* ========================================
   PRICING SECTION (Service Pages)
   ======================================== */

.pricing-section {
  padding: 100px 0 60px;
  background: var(--gradient-light);
}

.pricing-header {
  text-align: center;
  margin-bottom: 48px;
}

.pricing-header h1 {
  margin-bottom: 16px;
}

.pricing-header p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

/* Age Tabs */
.age-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.age-tab {
  padding: 12px 20px;
  background: white;
  border: 2px solid var(--borders);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
}

.age-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.age-tab.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--borders);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.pricing-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.pricing-card-header {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--borders);
}

.pricing-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Pricing Card Icon Base Styles */
.pricing-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  border-radius: 20px;
  padding: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.pricing-card-icon svg {
  width: 100%;
  height: 100%;
}

/* Body class-based icon colors for each platform */
body.facebook-pva-accounts .pricing-card-icon svg path { fill: #1877F2 !important; }
body.instagram-pva-accounts .pricing-card-icon svg path { fill: #E4405F !important; }
body.tiktok-pva-accounts .pricing-card-icon svg path { fill: #000000 !important; }
body.x-pva-accounts .pricing-card-icon svg path { fill: #000000 !important; }
body.threads-pva-accounts .pricing-card-icon svg path { fill: #000000 !important; }
body.snapchat-pva-accounts .pricing-card-icon svg path { fill: #FFFC00 !important; }
body.pinterest-pva-accounts .pricing-card-icon svg path { fill: #E60023 !important; }
body.linkedin-pva-accounts .pricing-card-icon svg path { fill: #0A66C2 !important; }
body.youtube-pva-accounts .pricing-card-icon svg path { fill: #FF0000 !important; }
body.gmail-pva-accounts .pricing-card-icon svg path { fill: #4285F4 !important; }
body.aol-pva-accounts .pricing-card-icon svg path { fill: #0060A8 !important; }
body.yahoo-pva-accounts .pricing-card-icon svg path { fill: #410093 !important; }
body.protonmail-pva-accounts .pricing-card-icon svg path { fill: #6D4AFF !important; }
body.icloud-pva-accounts .pricing-card-icon svg path { fill: #3693F3 !important; }
body.telegram-accounts .pricing-card-icon svg path { fill: #0088CC !important; }
body.whatsapp-accounts .pricing-card-icon svg path { fill: #25D366 !important; }
body.discord-accounts .pricing-card-icon svg path { fill: #5865F2 !important; }
body.chatgpt-accounts .pricing-card-icon svg path { fill: #10A37F !important; }
body.outlook-pva-accounts .pricing-card-icon svg path { fill: #0078D4 !important; }

/* Service-specific icon colors */
.instagram-pva-accounts .pricing-card-icon svg,
.page-instagram .pricing-card-icon svg {
  fill: #E4405F;
}

.facebook-pva-accounts .pricing-card-icon svg,
.page-facebook .pricing-card-icon svg {
  fill: #1877F2;
}

.tiktok-pva-accounts .pricing-card-icon svg,
.page-tiktok .pricing-card-icon svg {
  fill: #000000;
}

.x-pva-accounts .pricing-card-icon svg,
.page-x .pricing-card-icon svg {
  fill: #000000;
}

.threads-pva-accounts .pricing-card-icon svg,
.page-threads .pricing-card-icon svg {
  fill: #000000;
}

.snapchat-pva-accounts .pricing-card-icon svg,
.page-snapchat .pricing-card-icon svg {
  fill: #FFFC00;
}

.pinterest-pva-accounts .pricing-card-icon svg,
.page-pinterest .pricing-card-icon svg {
  fill: #E60023;
}

.linkedin-pva-accounts .pricing-card-icon svg,
.page-linkedin .pricing-card-icon svg {
  fill: #0A66C2;
}

.youtube-pva-accounts .pricing-card-icon svg,
.page-youtube .pricing-card-icon svg {
  fill: #FF0000;
}

.gmail-pva-accounts .pricing-card-icon svg,
.page-gmail .pricing-card-icon svg {
  fill: #4285F4;
}

.aol-pva-accounts .pricing-card-icon svg,
.page-aol .pricing-card-icon svg {
  fill: #0060A8;
}

.yahoo-pva-accounts .pricing-card-icon svg,
.page-yahoo .pricing-card-icon svg {
  fill: #410093;
}

.protonmail-pva-accounts .pricing-card-icon svg,
.page-protonmail .pricing-card-icon svg {
  fill: #6D4AFF;
}

.icloud-pva-accounts .pricing-card-icon svg,
.page-icloud .pricing-card-icon svg {
  fill: #3693F3;
}

.telegram-accounts .pricing-card-icon svg,
.page-telegram .pricing-card-icon svg {
  fill: #0088CC;
}

.pricing-card-quantity {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.pricing-card-price {
  font-size: 42px;
  font-weight: 800;
  color: var(--text-primary);
}

.pricing-card-price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
}

.pricing-features {
  margin-bottom: 24px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature svg {
  width: 20px;
  height: 20px;
  color: var(--button);
  flex-shrink: 0;
}

.pricing-card .btn {
  width: 100%;
}

/* ========================================
   SERVICE CARDS (Homepage)
   ======================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--borders);
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: var(--gradient-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.service-card-header h3 {
  font-size: 18px;
}

.service-card-header span {
  font-size: 13px;
  color: var(--text-secondary);
}

.service-features {
  margin-bottom: 20px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.service-feature::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--button);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--borders);
}

.service-card-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
}

.service-card-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
}

/* ========================================
   ORDER MODAL
   ======================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  background: white;
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 480px;
  width: 100%;
  transform: scale(0.9) translateY(20px);
  transition: var(--transition);
}

.modal-overlay.active .modal {
  transform: scale(1) translateY(0);
}

.modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.modal-header h3 {
  margin-bottom: 8px;
}

.modal-header p {
  font-size: 14px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: var(--light-section);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--text-secondary);
}

.modal-close:hover {
  background: var(--borders);
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--light-section);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.modal-option:hover {
  background: var(--gradient-light);
}

.modal-option-icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: var(--shadow-sm);
}

.modal-option-content {
  flex: 1;
}

.modal-option-content h4 {
  font-size: 16px;
  margin-bottom: 2px;
}

.modal-option-content span {
  font-size: 13px;
  color: var(--text-secondary);
}

.modal-option-arrow {
  color: var(--text-secondary);
}

.modal-option:hover .modal-option-arrow {
  color: var(--primary);
}

.modal-divider {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.modal-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--borders);
}

.modal-divider span {
  position: relative;
  background: white;
  padding: 0 16px;
  font-size: 13px;
  color: var(--text-secondary);
}

.modal-checkout-btn {
  width: 100%;
  padding: 16px;
  background: var(--gradient-primary);
  color: white;
  border-radius: var(--radius-md);
  font-size: 16px;
  font-weight: 600;
}

.modal-checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ========================================
   FAQ SECTION
   ======================================== */

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--borders);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
  text-align: left;
}

.faq-question svg {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-question.active svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-answer.active {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 15px;
}

/* ========================================
   BLOG SECTION
   ======================================== */

.blog-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

@media (min-width: 640px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--borders);
  transition: var(--transition);
}

.blog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.blog-image {
  height: 180px;
  background: var(--gradient-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.blog-content {
  padding: 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.blog-category {
  padding: 4px 10px;
  background: var(--gradient-light);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
}

.blog-date {
  font-size: 13px;
  color: var(--text-secondary);
}

.blog-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  line-height: 1.4;
}

.blog-card p {
  font-size: 14px;
  margin-bottom: 16px;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.blog-link:hover {
  gap: 10px;
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-info h2 {
  margin-bottom: 16px;
}

.contact-info > p {
  font-size: 18px;
  margin-bottom: 32px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--borders);
}

.contact-method-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.contact-method-content h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.contact-method-content a {
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
}

.contact-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--borders);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--borders);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-hero {
  padding: 140px 0 60px;
  background: var(--gradient-light);
  text-align: center;
}

.about-hero h1 {
  margin-bottom: 16px;
}

.about-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  margin-bottom: 20px;
}

.about-content p {
  margin-bottom: 20px;
  font-size: 17px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
  margin-top: 32px;
}

@media (min-width: 640px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.value-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--borders);
}

.value-card h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.value-card p {
  font-size: 14px;
  margin: 0;
}

/* ========================================
   CHECKOUT PAGE
   ======================================== */

.checkout-section {
  padding: 140px 0 80px;
  background: var(--light-section);
  min-height: 100vh;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 1024px) {
  .checkout-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.checkout-form {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--borders);
}

.checkout-form h2 {
  margin-bottom: 24px;
  font-size: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.checkout-summary {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--borders);
  height: fit-content;
}

.checkout-summary h3 {
  margin-bottom: 24px;
  font-size: 20px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--borders);
  font-size: 15px;
}

.summary-item:last-child {
  border-bottom: none;
  font-weight: 700;
  font-size: 18px;
  padding-top: 16px;
  margin-top: 8px;
  border-top: 2px solid var(--borders);
}

.payment-methods {
  margin-top: 24px;
}

.payment-methods h4 {
  font-size: 14px;
  margin-bottom: 12px;
}

.payment-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.payment-icon {
  width: 48px;
  height: 32px;
  background: var(--light-section);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ========================================
   LEGAL PAGES
   ======================================== */

.legal-section {
  padding: 140px 0 80px;
  background: var(--light-section);
  min-height: 100vh;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  border: 1px solid var(--borders);
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  margin: 32px 0 16px;
  font-size: 22px;
}

.legal-content p {
  margin-bottom: 16px;
  font-size: 16px;
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
  list-style: disc;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.legal-date {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ========================================
   ORDER MODAL
   ======================================== */

.order-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.order-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.order-modal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  max-width: 420px;
  width: 90%;
  transform: scale(0.9);
  transition: var(--transition);
}

.order-modal-overlay.active .order-modal {
  transform: scale(1);
}

.order-modal-header {
  text-align: center;
  margin-bottom: 24px;
}

.order-modal-header h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.order-modal-header p {
  color: var(--text-secondary);
  font-size: 14px;
}

.order-modal-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-option {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 2px solid var(--borders);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--text-primary);
}

.order-option:hover {
  border-color: var(--primary);
  background: var(--light-section);
}

.order-option-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.order-option-whatsapp .order-option-icon {
  background: #25D366;
  color: white;
}

.order-option-telegram .order-option-icon {
  background: #0088CC;
  color: white;
}

.order-option-email .order-option-icon {
  background: #EA4335;
  color: white;
}

.order-option-checkout .order-option-icon {
  background: var(--gradient-primary);
  color: white;
}

.order-option-info h4 {
  font-size: 15px;
  margin-bottom: 2px;
}

.order-option-info span {
  font-size: 13px;
  color: var(--text-secondary);
}

.order-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--text-secondary);
}

.order-modal-close:hover {
  color: var(--text-primary);
}

/* Checkout Form */
.checkout-container {
  max-width: 500px;
  margin: 40px auto;
  padding: 32px;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.checkout-form h2 {
  text-align: center;
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--borders);
  border-radius: var(--radius-md);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  outline: none;
}

.order-summary {
  background: var(--light-section);
  padding: 20px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
}

.order-summary h4 {
  margin-bottom: 12px;
}

.order-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
}

.order-summary-total {
  border-top: 1px solid var(--borders);
  margin-top: 8px;
  padding-top: 8px;
  font-weight: 600;
  font-size: 16px;
}

/* ========================================
   FLOATING CHAT ICONS
   ======================================== */

.floating-chat {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.chat-icon:hover {
  transform: scale(1.1);
}

.chat-whatsapp {
  background: #25D366;
  color: white;
}

.chat-whatsapp:hover {
  background: #20BD5A;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.chat-telegram {
  background: #0088CC;
  color: white;
}

.chat-telegram:hover {
  background: #0077B3;
  box-shadow: 0 6px 20px rgba(0, 136, 204, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }
}

.footer .logo {
  color: white;
}

.footer .logo-icon {
  width: 44px;
  height: 44px;
}

.footer .logo-name {
  font-size: 20px;
}

.footer .logo-pva {
  color: #38bdf8;
}

.footer .logo-serves {
  color: #fff;
}

.footer .logo-tagline {
  color: rgba(255,255,255,0.45);
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  margin: 16px 0 24px;
  font-size: 15px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-contact a:hover {
  color: var(--primary);
}

.footer-column h4 {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: white;
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links a:hover {
  color: white;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal a:hover {
  color: white;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.text-center {
  text-align: center;
}

.mt-4 {
  margin-top: 16px;
}

.mt-8 {
  margin-top: 32px;
}

.mb-4 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 32px;
}

.hidden {
  display: none;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */

@media (max-width: 639px) {
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 120px 0 60px;
  }
  
  .pricing-section,
  .about-hero,
  .legal-section,
  .checkout-section {
    padding: 120px 0 60px;
  }
  
  .modal {
    padding: 24px;
  }
  
  .legal-content {
    padding: 24px;
  }
}


/* Scroll animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   NEW SERVICE PAGE SECTIONS - RESPONSIVE
   ======================================== */

/* Section Header */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.section-header .section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-size: clamp(22px, 4vw, 32px);
  margin-bottom: 12px;
}

.section-header p {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Use Cases Section */
.use-cases-section {
  padding: 50px 0;
  background: var(--background);
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.use-case-card {
  background: var(--light-section);
  border: 1px solid var(--borders);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.use-case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.use-case-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.use-case-card h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.use-case-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Why Buy Section */
.why-buy-section {
  padding: 50px 0;
  background: var(--light-section);
}

.why-buy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-buy-item {
  display: flex;
  gap: 16px;
  background: var(--background);
  border: 1px solid var(--borders);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.why-buy-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.why-buy-number {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  min-width: 36px;
}

.why-buy-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-primary);
}

.why-buy-content p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* FAQ Section */
.faq-section {
  padding: 50px 0;
  background: var(--background);
}

.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light-section);
  border: 1px solid var(--borders);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  color: var(--text-primary);
  background: transparent;
  border: none;
  cursor: pointer;
}

.faq-question:hover {
  background: rgba(14, 165, 233, 0.05);
}

.faq-icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 20px 16px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Related Services Section */
.related-services-section {
  padding: 50px 0;
  background: var(--light-section);
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.related-service-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--background);
  border: 1px solid var(--borders);
  border-radius: var(--radius-md);
  padding: 18px;
  transition: var(--transition);
}

.related-service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.related-service-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(139, 92, 246, 0.1));
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}

.related-service-content h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.related-service-content p {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.related-service-price {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}

/* Ready to Order Section */
.ready-to-order-section {
  padding: 50px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.ready-to-order-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.ready-to-order-content h2 {
  font-size: clamp(24px, 5vw, 36px);
  color: white;
  margin-bottom: 12px;
}

.ready-to-order-content > p {
  font-size: clamp(14px, 2vw, 16px);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  line-height: 1.6;
}

.ready-to-order-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}

.ready-to-order-buttons .btn-primary {
  background: white;
  color: var(--primary);
  padding: 12px 28px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.ready-to-order-buttons .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.ready-to-order-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid white;
  padding: 10px 24px;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.ready-to-order-buttons .btn-secondary:hover {
  background: white;
  color: var(--primary);
}

.ready-to-order-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.ready-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
}

.ready-feature svg {
  width: 18px;
  height: 18px;
  fill: white;
}

/* SEO Article Section */
.seo-article-section {
  background: var(--light-section);
}

.seo-article {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 56px);
  background: var(--background);
  border: 1px solid var(--borders);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.seo-article h2 {
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.25;
  margin: 28px 0 14px;
  color: var(--text-primary);
}

.seo-article h2:first-of-type {
  margin-top: 0;
}

.seo-article h3 {
  font-size: clamp(18px, 3vw, 22px);
  margin: 24px 0 10px;
  color: var(--text-primary);
}

.seo-article p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.seo-article a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.seo-article a:hover {
  color: var(--secondary);
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

@media (max-width: 768px) {
  /* Section padding */
  .use-cases-section,
  .why-buy-section,
  .faq-section,
  .related-services-section,
  .seo-article-section,
  .ready-to-order-section {
    padding: 40px 0;
  }

  .seo-article {
    padding: 24px;
  }

  .seo-article p {
    font-size: 15px;
    line-height: 1.7;
  }

  /* Use Cases Grid */
  .use-cases-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .use-case-card {
    padding: 20px;
  }

  .use-case-icon {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .use-case-card h3 {
    font-size: 15px;
  }

  .use-case-card p {
    font-size: 13px;
  }

  /* Why Buy Grid */
  .why-buy-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
  }

  .why-buy-item {
    padding: 16px;
  }

  .why-buy-number {
    font-size: 20px;
    min-width: 30px;
  }

  .why-buy-content h3 {
    font-size: 14px;
  }

  .why-buy-content p {
    font-size: 12px;
  }

  /* FAQ Grid */
  .faq-grid {
    padding: 0 16px;
  }

  .faq-question {
    font-size: 14px;
    padding: 14px 16px;
  }

  .faq-answer p {
    font-size: 13px;
    padding: 0 16px 14px;
  }

  /* Related Services */
  .related-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 16px;
  }

  .related-service-card {
    padding: 14px;
  }

  .related-service-icon {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }

  /* Ready to Order */
  .ready-to-order-buttons {
    flex-direction: column;
    align-items: center;
  }

  .ready-to-order-buttons .btn-primary,
  .ready-to-order-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  .ready-to-order-features {
    gap: 12px;
  }

  .ready-feature {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .section-header {
    margin-bottom: 28px;
  }

  .section-header .section-label {
    font-size: 11px;
    padding: 5px 10px;
  }

  .ready-to-order-features {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
}


/* ========================================
   HOMEPAGE SILICON VALLEY REDESIGN
   ======================================== */
.home-hero{position:relative;overflow:hidden;padding:152px 0 92px;color:#f8fafc;background:radial-gradient(circle at 18% 18%,rgba(56,189,248,.24),transparent 32%),radial-gradient(circle at 82% 8%,rgba(168,85,247,.28),transparent 34%),linear-gradient(135deg,#020617 0%,#07111f 42%,#101827 100%)}
.home-hero:before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.045) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);background-size:54px 54px;mask-image:linear-gradient(to bottom,rgba(0,0,0,.9),transparent 88%);pointer-events:none}.home-hero-orb{position:absolute;border-radius:999px;filter:blur(20px);opacity:.75;pointer-events:none}.home-hero-orb-one{width:280px;height:280px;left:-90px;bottom:40px;background:rgba(14,165,233,.28)}.home-hero-orb-two{width:380px;height:380px;right:-130px;top:90px;background:rgba(139,92,246,.25)}
.home-hero-grid{position:relative;z-index:1;display:grid;grid-template-columns:1fr;gap:56px;align-items:center}@media (min-width:1024px){.home-hero-grid{grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);gap:72px}}
.home-eyebrow,.home-section-kicker{display:inline-flex;align-items:center;gap:9px;padding:8px 13px;border:1px solid rgba(14,165,233,.22);border-radius:999px;background:rgba(255,255,255,.08);color:#67e8f9;font-size:12px;font-weight:800;letter-spacing:.12em;text-transform:uppercase}.home-eyebrow-dot{width:8px;height:8px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 6px rgba(34,197,94,.14)}
.home-hero-title{max-width:760px;margin:22px 0;color:#fff;font-size:clamp(44px,7vw,82px);letter-spacing:-.075em;line-height:.94}.home-hero-copy{max-width:680px;color:#cbd5e1;font-size:clamp(17px,1.55vw,21px);line-height:1.75}.home-hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin:34px 0}.home-btn-primary{border:0;color:#03111f;background:linear-gradient(135deg,#5eead4,#38bdf8 52%,#a78bfa);box-shadow:0 18px 45px rgba(56,189,248,.24)}.home-btn-primary:hover{color:#020617;transform:translateY(-3px);box-shadow:0 24px 60px rgba(56,189,248,.32)}.home-btn-ghost{color:#e2e8f0;border:1px solid rgba(226,232,240,.2);background:rgba(255,255,255,.06);backdrop-filter:blur(14px)}.home-btn-ghost:hover{color:#fff;border-color:rgba(125,211,252,.55);transform:translateY(-3px)}.home-btn-light{margin-top:24px;color:#020617;background:#fff;box-shadow:0 20px 55px rgba(255,255,255,.12)}.home-btn-light:hover{transform:translateY(-3px)}
.home-hero-proof{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:12px;max-width:640px}.home-hero-proof div{padding:16px;border:1px solid rgba(226,232,240,.14);border-radius:18px;background:rgba(255,255,255,.06)}.home-hero-proof strong{display:block;color:#fff;font-size:22px;line-height:1}.home-hero-proof span{display:block;margin-top:7px;color:#94a3b8;font-size:13px}
.home-hero-visual{position:relative;min-height:540px}.home-dashboard-card{border:1px solid rgba(226,232,240,.14);background:linear-gradient(180deg,rgba(255,255,255,.14),rgba(255,255,255,.055));border-radius:30px;box-shadow:0 28px 90px rgba(0,0,0,.35);backdrop-filter:blur(22px)}.home-dashboard-main{position:relative;z-index:2;padding:24px;min-height:430px}.home-dashboard-topbar{display:flex;align-items:center;justify-content:space-between;gap:20px;margin-bottom:28px}.home-dashboard-topbar span,.home-floating-metric span{display:block;color:#94a3b8;font-size:12px;font-weight:700;letter-spacing:.1em;text-transform:uppercase}.home-dashboard-topbar strong,.home-floating-metric strong{display:block;margin-top:6px;color:#fff;font-size:18px}.home-status-pill{padding:8px 12px;border-radius:999px;color:#bbf7d0;background:rgba(34,197,94,.16);border:1px solid rgba(34,197,94,.26);font-weight:800;font-size:12px}.home-signal-chart{height:180px;display:flex;align-items:end;gap:13px;padding:22px;border-radius:24px;background:rgba(2,6,23,.42);border:1px solid rgba(148,163,184,.16)}.home-signal-chart span{flex:1;min-width:24px;border-radius:999px 999px 8px 8px;background:linear-gradient(180deg,#67e8f9,#8b5cf6);box-shadow:0 14px 40px rgba(103,232,249,.18)}.home-dashboard-list{display:grid;gap:12px;margin-top:18px}.home-dashboard-list div{display:grid;grid-template-columns:46px 1fr auto;align-items:center;gap:12px;padding:13px;border:1px solid rgba(226,232,240,.1);border-radius:18px;background:rgba(255,255,255,.06)}.home-dashboard-list p{color:#e2e8f0;font-size:14px}.home-dashboard-list strong{color:#a7f3d0;font-size:13px}.home-platform-badge{width:42px;height:42px;display:grid;place-items:center;border-radius:14px;color:#fff;font-weight:900}.home-platform-badge.instagram{background:linear-gradient(135deg,#f97316,#db2777,#7c3aed)}.home-platform-badge.gmail{background:linear-gradient(135deg,#2563eb,#ef4444,#f59e0b)}.home-platform-badge.chatgpt{background:linear-gradient(135deg,#10b981,#0f766e)}.home-floating-metric{position:absolute;z-index:3;padding:18px 20px;min-width:190px}.metric-one{left:-22px;bottom:74px}.metric-two{right:-14px;top:68px}.home-network-node{position:absolute;display:grid;place-items:center;width:92px;height:92px;border-radius:28px;color:#e0f2fe;border:1px solid rgba(125,211,252,.22);background:rgba(15,23,42,.68);font-size:12px;font-weight:900;letter-spacing:.12em;box-shadow:inset 0 1px 0 rgba(255,255,255,.12)}.node-one{right:38px;bottom:30px}.node-two{left:42px;top:24px}.node-three{right:138px;bottom:-16px}
.home-brand-strip{padding:26px 0;background:#fff;border-bottom:1px solid var(--borders)}.home-brand-strip .container{display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:18px}.home-brand-strip p{max-width:560px;color:#334155;font-weight:700}.home-brand-tags{display:flex;flex-wrap:wrap;gap:10px}.home-brand-tags span,.home-service-cloud a{border:1px solid #e2e8f0;border-radius:999px;padding:9px 13px;color:#475569;background:#fff;font-size:13px;font-weight:700}
.home-section{padding:96px 0;background:#fff}.home-section-heading{max-width:780px;margin:0 auto 48px;text-align:center}.home-section-heading.align-left{margin-left:0;text-align:left}.home-section-heading .home-section-kicker,.home-gradient-section .home-section-kicker{color:#0369a1;background:#e0f2fe;border-color:#bae6fd}.home-section-heading h2,.home-split-copy h2,.home-enterprise-card h2{margin:18px 0 16px;color:#020617;font-size:clamp(32px,5vw,56px);line-height:1;letter-spacing:-.055em}.home-section-heading p,.home-split-copy p,.home-enterprise-card p{color:#475569;font-size:18px}
.home-market-grid{display:grid;grid-template-columns:1fr;gap:18px}@media (min-width:760px){.home-market-grid{grid-template-columns:repeat(2,1fr)}}@media (min-width:1120px){.home-market-grid{grid-template-columns:repeat(3,1fr)}}.home-market-card{position:relative;overflow:hidden;min-height:310px;padding:28px;border:1px solid #e2e8f0;border-radius:30px;background:linear-gradient(180deg,#fff,#f8fafc);box-shadow:0 18px 60px rgba(15,23,42,.06)}.home-market-card:after{content:'';position:absolute;width:170px;height:170px;right:-70px;top:-70px;border-radius:50%;background:rgba(14,165,233,.1);transition:var(--transition)}.home-market-card:hover{transform:translateY(-8px);border-color:rgba(14,165,233,.34);box-shadow:0 28px 80px rgba(15,23,42,.11)}.home-market-card:hover:after{transform:scale(1.35);background:rgba(139,92,246,.11)}.home-market-card.feature-card{background:linear-gradient(135deg,#eff6ff,#fff 48%,#f5f3ff)}.home-market-card.cool-card{background:linear-gradient(135deg,#ecfeff,#fff 48%,#f0fdf4)}.home-market-icon{position:relative;z-index:1;width:62px;height:62px;display:grid;place-items:center;margin-bottom:24px;border-radius:20px;color:#020617;background:#fff;border:1px solid #e2e8f0;box-shadow:0 15px 35px rgba(15,23,42,.08);font-size:24px;font-weight:900}.home-market-card>span{position:relative;z-index:1;color:#0284c7;font-size:12px;font-weight:900;letter-spacing:.1em;text-transform:uppercase}.home-market-card h3{position:relative;z-index:1;margin:11px 0 10px;color:#020617;font-size:24px;letter-spacing:-.03em}.home-market-card p{position:relative;z-index:1;color:#64748b;font-size:15px}.home-market-card strong{position:absolute;z-index:1;left:28px;bottom:26px;color:#0f172a;font-size:14px}.home-service-cloud{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-top:34px}.home-service-cloud a:hover{color:#0369a1;border-color:#7dd3fc;transform:translateY(-2px)}
.home-section-dark{color:#fff;background:radial-gradient(circle at 15% 10%,rgba(14,165,233,.18),transparent 30%),linear-gradient(135deg,#020617,#0f172a)}.home-split{display:grid;grid-template-columns:1fr;gap:44px;align-items:center}@media (min-width:980px){.home-split{grid-template-columns:.9fr 1.1fr;gap:70px}}.home-split-copy h2,.home-section-dark .home-section-kicker{color:#fff}.home-split-copy p{color:#cbd5e1}.home-feature-stack{display:grid;gap:16px}.home-feature-item{display:grid;grid-template-columns:64px 1fr;gap:18px;padding:24px;border:1px solid rgba(226,232,240,.12);border-radius:26px;background:rgba(255,255,255,.06);backdrop-filter:blur(16px)}.home-feature-item>span{width:48px;height:48px;display:grid;place-items:center;border-radius:16px;color:#67e8f9;background:rgba(103,232,249,.1);font-weight:900}.home-feature-item h3{color:#fff;margin-bottom:6px;font-size:20px}.home-feature-item p{color:#94a3b8;font-size:15px}
.home-gradient-section{background:linear-gradient(180deg,#f8fafc,#eef2ff)}.home-grade-grid{display:grid;grid-template-columns:1fr;gap:16px}@media (min-width:720px){.home-grade-grid{grid-template-columns:repeat(4,1fr)}}.home-grade-card{padding:28px;min-height:250px;border:1px solid rgba(148,163,184,.24);border-radius:28px;background:rgba(255,255,255,.72);box-shadow:0 18px 50px rgba(15,23,42,.06)}.home-grade-card.featured{color:#fff;background:linear-gradient(135deg,#0f172a,#1d4ed8);transform:translateY(-12px)}.home-grade-card span{color:#0284c7;font-weight:900}.home-grade-card.featured span,.home-grade-card.featured h3,.home-grade-card.featured p{color:#fff}.home-grade-card h3{margin:52px 0 12px;font-size:24px}.home-grade-card p{font-size:15px}
.home-process-grid{display:grid;grid-template-columns:1fr;gap:16px}@media (min-width:860px){.home-process-grid{grid-template-columns:repeat(4,1fr)}}.home-process-card{position:relative;padding:28px;border:1px solid #e2e8f0;border-radius:28px;background:#fff;box-shadow:0 20px 60px rgba(15,23,42,.06)}.home-process-card span{display:grid;place-items:center;width:42px;height:42px;margin-bottom:54px;border-radius:14px;color:#fff;background:#020617;font-weight:900}.home-process-card h3{margin-bottom:10px;font-size:20px}.home-process-card p{font-size:15px}
.home-enterprise-section{padding:0 0 96px;background:#fff}.home-enterprise-card{display:grid;grid-template-columns:1fr;gap:28px;align-items:center;padding:clamp(30px,6vw,64px);border-radius:36px;color:#fff;background:radial-gradient(circle at 88% 20%,rgba(103,232,249,.22),transparent 28%),linear-gradient(135deg,#0f172a,#172554 55%,#312e81);box-shadow:0 30px 90px rgba(15,23,42,.22)}@media (min-width:920px){.home-enterprise-card{grid-template-columns:1fr auto}}.home-enterprise-card h2,.home-enterprise-card p{color:#fff}.home-enterprise-card p{max-width:720px;color:#cbd5e1}.home-enterprise-actions{display:flex;flex-wrap:wrap;gap:12px;justify-content:flex-start}.home-btn-ghost.dark{color:#fff;border-color:rgba(255,255,255,.24)}
@media (max-width:760px){.home-hero{padding:122px 0 64px}.home-hero-title{letter-spacing:-.052em}.home-hero-proof{grid-template-columns:1fr}.home-hero-visual{min-height:auto}.home-floating-metric,.home-network-node{display:none}.home-dashboard-main{min-height:auto;padding:18px}.home-signal-chart{height:140px;gap:8px;padding:16px}.home-dashboard-list div{grid-template-columns:42px 1fr}.home-dashboard-list strong{grid-column:2}.home-section{padding:64px 0}.home-section-heading{text-align:left;margin-bottom:32px}.home-market-card{min-height:300px}.home-feature-item{grid-template-columns:1fr}.home-grade-card.featured{transform:none}.home-enterprise-section{padding-bottom:64px}}



/* ========================================
   DARK SPLINE-STYLE PRICING CARDS
   For Service Pages (account age tiers)
   ======================================== */

.spline-pricing-section {
  padding: 100px 0;
  background:
    radial-gradient(ellipse 70% 50% at 10% 50%, rgba(14,165,233,.13), transparent),
    radial-gradient(ellipse 60% 50% at 90% 50%, rgba(139,92,246,.13), transparent),
    linear-gradient(160deg, #050a14 0%, #0b1120 55%, #06111f 100%);
  position: relative;
  overflow: hidden;
}

.spline-pricing-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  pointer-events: none;
}

.spline-pricing-header {
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.spline-pricing-header h2 {
  color: #fff;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
  margin: 14px 0 16px;
}

.spline-pricing-header p {
  color: #94a3b8;
  font-size: 18px;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Toggle */
.spline-toggle-wrap {
  display: flex;
  justify-content: center;
  margin: 28px 0 44px;
  position: relative;
  z-index: 1;
}

.spline-toggle-inner {
  display: inline-flex;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 5px;
  gap: 4px;
}

.spline-tab-btn {
  padding: 9px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all .22s ease;
  border: none;
  background: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.spline-tab-btn.active {
  background: rgba(255,255,255,.13);
  color: #fff;
}

.spline-save-pill {
  background: #22c55e;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: .05em;
  text-transform: uppercase;
}

/* Grid */
.spline-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  position: relative;
  z-index: 1;
}

@media (min-width: 700px) {
  .spline-pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1100px) {
  .spline-pricing-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1350px) {
  .spline-pricing-grid.has-four { grid-template-columns: repeat(4, 1fr); }
}

/* Cards */
.spline-price-card {
  position: relative;
  padding: 30px 26px 26px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}

.spline-price-card:hover {
  border-color: rgba(255,255,255,.2);
  transform: translateY(-5px);
  box-shadow: 0 28px 70px rgba(0,0,0,.45);
}

.spline-price-card.featured {
  border-color: rgba(34,197,94,.38);
  background: rgba(255,255,255,.065);
  box-shadow: 0 0 0 1px rgba(34,197,94,.22), 0 24px 70px rgba(34,197,94,.1);
}

.spline-price-card.featured:hover {
  box-shadow: 0 0 0 1px rgba(34,197,94,.35), 0 32px 90px rgba(34,197,94,.18);
}

/* Popular badge */
.spline-card-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #22c55e, #16a34a);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 18px;
  border-radius: 999px;
  letter-spacing: .09em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 22px rgba(34,197,94,.35);
}

/* Icon */
.spline-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 14px;
  color: #fff;
  flex-shrink: 0;
}

.spline-card-icon.tier-fresh      { background: linear-gradient(135deg,#0ea5e9,#38bdf8); }
.spline-card-icon.tier-starter    { background: linear-gradient(135deg,#22c55e,#16a34a); }
.spline-card-icon.tier-established{ background: linear-gradient(135deg,#8b5cf6,#7c3aed); }
.spline-card-icon.tier-legacy     { background: linear-gradient(135deg,#f59e0b,#d97706); }
.spline-card-icon.tier-premium    { background: linear-gradient(135deg,#ef4444,#b91c1c); }

.spline-card-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 5px;
}

.spline-price-card.featured .spline-card-eyebrow { color: #86efac; }

.spline-card-name {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
}

/* Price */
.spline-card-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 4px;
}

.spline-price-big {
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.05em;
  line-height: 1;
}

.spline-price-unit {
  font-size: 14px;
  color: #64748b;
}

.spline-price-sub {
  font-size: 13px;
  color: #475569;
  margin-bottom: 20px;
}

/* Divider */
.spline-divider {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin: 18px 0;
}

/* Features */
.spline-includes-label {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 14px;
}

.spline-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 22px;
  flex: 1;
}

.spline-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.45;
}

.spline-features li::before {
  content: '✓';
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: rgba(34,197,94,.14);
  color: #22c55e;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

/* Volume table */
.spline-volumes {
  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 22px;
}

.spline-volumes-label {
  font-size: 11px;
  font-weight: 800;
  color: #475569;
  letter-spacing: .09em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.spline-vol-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}

.spline-vol-row:last-child { border-bottom: none; padding-bottom: 0; }

.spline-vol-qty {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
}

.spline-vol-price {
  font-size: 14px;
  font-weight: 800;
  color: #fff;
}

/* CTA Buttons */
.spline-cta-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  transition: all .25s ease;
  border: none;
  font-family: inherit;
}

.spline-cta-btn.cta-default {
  background: rgba(255,255,255,.1);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,.15);
}

.spline-cta-btn.cta-default:hover {
  background: rgba(255,255,255,.17);
  transform: translateY(-2px);
}

.spline-cta-btn.cta-green {
  background: linear-gradient(135deg,#22c55e,#16a34a);
  color: #fff;
  box-shadow: 0 10px 28px rgba(34,197,94,.35);
}

.spline-cta-btn.cta-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(34,197,94,.48);
}

.spline-cta-btn.cta-purple {
  background: linear-gradient(135deg,#8b5cf6,#7c3aed);
  color: #fff;
  box-shadow: 0 10px 28px rgba(139,92,246,.35);
}

.spline-cta-btn.cta-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(139,92,246,.45);
}

.spline-cta-btn.cta-gold {
  background: linear-gradient(135deg,#f59e0b,#d97706);
  color: #fff;
  box-shadow: 0 10px 28px rgba(245,158,11,.35);
}

.spline-cta-btn.cta-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(245,158,11,.45);
}

.spline-cta-btn.cta-red {
  background: linear-gradient(135deg,#ef4444,#b91c1c);
  color: #fff;
  box-shadow: 0 10px 28px rgba(239,68,68,.35);
}

.spline-cta-btn.cta-red:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(239,68,68,.45);
}

/* ========================================
   HOMEPAGE IMAGE SECTIONS IMPROVEMENTS
   ======================================== */

/* Image-backed "Why" section */
.home-section-dark .home-split-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.home-split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.home-img-overlay-card {
  position: absolute;
  bottom: 22px;
  left: 22px;
  right: 22px;
  background: rgba(2,6,23,.78);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.home-img-overlay-card .oc-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg,#22c55e,#16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.home-img-overlay-card .oc-text strong {
  display: block;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 2px;
}

.home-img-overlay-card .oc-text span {
  color: #94a3b8;
  font-size: 13px;
}

/* Stats banner */
.home-stats-banner {
  padding: 72px 0;
  background: linear-gradient(135deg,#eff6ff,#faf5ff);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.home-stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .home-stats-inner { grid-template-columns: 1fr 1fr; }
}

.home-stats-copy h2 {
  font-size: clamp(28px,4vw,44px);
  letter-spacing: -.04em;
  color: #020617;
  margin-bottom: 16px;
}

.home-stats-copy p {
  font-size: 17px;
  color: #475569;
  line-height: 1.75;
  max-width: 500px;
}

.home-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.home-stat-box {
  padding: 24px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  box-shadow: 0 10px 40px rgba(15,23,42,.06);
}

.home-stat-box strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #020617;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: 6px;
}

.home-stat-box span {
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

/* Use cases visual row */
.home-use-cases-section {
  padding: 96px 0;
  background: #fff;
}

.home-use-cases-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 48px;
}

@media (min-width: 700px) {
  .home-use-cases-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1060px) {
  .home-use-cases-grid { grid-template-columns: repeat(3, 1fr); }
}

.home-use-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.home-use-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.home-use-card:hover img { transform: scale(1.05); }

.home-use-card-overlay {
  position: relative;
  z-index: 1;
  padding: 22px;
  background: linear-gradient(to top, rgba(2,6,23,.9) 0%, rgba(2,6,23,.5) 60%, transparent 100%);
}

.home-use-card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: #67e8f9;
  margin-bottom: 8px;
}

.home-use-card-overlay h3 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 6px;
}

.home-use-card-overlay p {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.5;
}

/* Testimonial / trust strip */
.home-trust-section {
  padding: 72px 0;
  background: linear-gradient(135deg,#020617,#0f172a);
  position: relative;
  overflow: hidden;
}

.home-trust-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 54px 54px;
  pointer-events: none;
}

.home-trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .home-trust-grid { grid-template-columns: repeat(3, 1fr); }
}

.home-trust-card {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 22px;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(16px);
}

.home-trust-card-stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 14px;
  letter-spacing: 3px;
}

.home-trust-card p {
  color: #cbd5e1;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.home-trust-card-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.home-trust-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg,#0ea5e9,#8b5cf6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.home-trust-card-author strong {
  display: block;
  color: #fff;
  font-size: 14px;
}

.home-trust-card-author span {
  font-size: 13px;
  color: #64748b;
}


/* ── Home Featured Products ─────────────────── */
.home-featured-products {
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}
.home-fp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.home-fp-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  transition: box-shadow .2s, transform .2s;
}
.home-fp-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  transform: translateY(-2px);
}
.home-fp-card.featured {
  border-color: #2563eb;
  box-shadow: 0 4px 20px rgba(37,99,235,0.12);
}
.home-fp-badge-new {
  position: absolute;
  top: -0.7rem;
  left: 1rem;
  background: #16a34a;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: 0.2rem 0.55rem;
  border-radius: 99px;
}
.home-fp-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: #fff;
  border-radius: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}
.home-fp-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  line-height: 1.3;
}
.home-fp-price {
  font-size: 2rem;
  font-weight: 800;
  color: #2563eb;
  margin-top: 0.25rem;
}
.home-fp-per {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: -0.25rem;
}
.home-fp-features {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  flex: 1;
}
.home-fp-features li {
  font-size: 0.78rem;
  color: #475569;
  padding-left: 1.1rem;
  position: relative;
}
.home-fp-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}
.home-fp-btn {
  width: 100%;
  text-align: center;
  cursor: pointer;
  margin-top: auto;
}
@media (max-width: 768px) {
  .home-fp-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 480px) {
  .home-fp-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Homepage Hero Dashboard Visual ─────────────────────────── */
.hviz-shell {
  position: relative;
  width: 100%;
  max-width: 520px;
  background: rgba(15,23,42,0.78);
  border: 1px solid rgba(148,163,184,0.15);
  border-radius: 24px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.08);
  backdrop-filter: blur(28px);
  overflow: visible;
  animation: hvizFloat 6s ease-in-out infinite;
}

@keyframes hvizFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hviz-topbar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hviz-dots {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
}

.hviz-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
}

.hviz-dots span:nth-child(1) { background: #ef4444; }
.hviz-dots span:nth-child(2) { background: #f59e0b; }
.hviz-dots span:nth-child(3) { background: #22c55e; }

.hviz-title {
  flex: 1;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
}

.hviz-live {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.06em;
}

.hviz-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  animation: hvizPulse 1.8s ease-in-out infinite;
}

@keyframes hvizPulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hviz-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hviz-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.hviz-stat {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.hviz-stat-label {
  font-size: 10px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hviz-stat-val {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}

.hviz-stat-delta {
  font-size: 10px;
  font-weight: 700;
}

.hviz-stat-delta.up { color: #22c55e; }

.hviz-chart {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 14px;
}

.hviz-chart-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hviz-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 64px;
}

.hviz-bar-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  height: 100%;
  justify-content: flex-end;
}

.hviz-bar {
  width: 100%;
  height: var(--h, 50%);
  border-radius: 4px 4px 2px 2px;
  background: linear-gradient(180deg, rgba(56,189,248,0.6), rgba(56,189,248,0.25));
  transition: height 0.4s ease;
}

.hviz-bar.featured {
  background: linear-gradient(180deg, #38bdf8, #2563eb);
  box-shadow: 0 0 14px rgba(56,189,248,0.35);
}

.hviz-bar-wrap span {
  font-size: 9px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
}

.hviz-accounts {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hviz-acct {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}

.hviz-acct:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(56,189,248,0.3);
  transform: translateX(3px);
}

.hviz-acct-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  flex-shrink: 0;
}

.hviz-acct-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hviz-acct-info strong {
  font-size: 13px;
  font-weight: 700;
  color: #e2e8f0;
  line-height: 1;
}

.hviz-acct-info span {
  font-size: 11px;
  color: #64748b;
}

.hviz-acct-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.hviz-acct-meta strong {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.hviz-badge {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 99px;
}

.hviz-badge.green {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
  border: 1px solid rgba(34,197,94,0.25);
}

.hviz-badge.amber {
  background: rgba(245,158,11,0.15);
  color: #f59e0b;
  border: 1px solid rgba(245,158,11,0.25);
}

.hviz-notif {
  position: absolute;
  bottom: -20px;
  right: -14px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(15,23,42,0.95), rgba(7,17,31,0.95));
  border: 1px solid rgba(34,197,94,0.3);
  border-radius: 14px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.04);
  backdrop-filter: blur(18px);
  min-width: 220px;
  animation: hvizNotifSlide 0.6s ease 1s both, hvizFloat 6s ease-in-out 1s infinite;
}

@keyframes hvizNotifSlide {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hviz-notif-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  flex-shrink: 0;
  font-weight: 900;
}

.hviz-notif > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.hviz-notif strong {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
}

.hviz-notif span {
  display: block;
  font-size: 11px;
  color: #64748b;
}

@media (max-width: 760px) {
  .hviz-shell { max-width: 100%; }
  .hviz-notif { right: 0; bottom: -16px; min-width: auto; }
  .hviz-stat-val { font-size: 15px; }
}

/* ══════════════════════════════════════════════════════════════
   SERVICE PAGE HERO — Beautiful & Professional Redesign
   ══════════════════════════════════════════════════════════════ */

.service-hero-section {
  position: relative;
  padding: 130px 0 80px;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 55% at 10% 20%, rgba(var(--service-rgb, 66,133,244), 0.18), transparent),
    radial-gradient(ellipse 50% 60% at 92% 15%, rgba(139,92,246,0.22), transparent),
    linear-gradient(160deg, #020617 0%, #05101e 50%, #0a1628 100%);
  color: #fff;
}

.service-hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.7), transparent 90%);
  pointer-events: none;
}

/* Accent orb */
.service-hero-section::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--service-rgb, 66,133,244), 0.12), transparent 70%);
  pointer-events: none;
}

.service-hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: center;
}

@media (min-width: 980px) {
  .service-hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* LEFT: Copy */
.service-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-hero-copy .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(var(--service-rgb, 66,133,244), 0.18);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(var(--service-rgb, 66,133,244), 0.35);
  margin-bottom: 24px;
  width: fit-content;
}

.service-hero-copy h1 {
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.03;
  color: #fff;
  margin: 0 0 20px 0;
}

.service-hero-copy > p {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.75;
  color: #94a3b8;
  margin: 0 0 28px 0;
  max-width: 540px;
}

.service-hero-features {
  list-style: none;
  margin: 0 0 32px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
}

.service-hero-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #cbd5e1;
}

.service-hero-features li span {
  width: 20px;
  height: 20px;
  border-radius: 6px;
  background: rgba(var(--service-rgb, 66,133,244), 0.25);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(var(--service-rgb, 66,133,244), 0.35);
}

.service-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* RIGHT: Hero Card — completely redesigned */
.service-hero-card {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 32px 28px 28px;
  backdrop-filter: blur(22px);
  box-shadow:
    0 40px 90px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.12),
    0 0 0 1px rgba(var(--service-rgb, 66,133,244), 0.15);
  overflow: hidden;
}

/* Card background glow */
.service-hero-card::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--service-rgb, 66,133,244), 0.25), transparent 70%);
  pointer-events: none;
}

/* Card inner shine */
.service-hero-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
}

/* Platform icon — large and impactful */
.service-platform-mark {
  position: relative;
  z-index: 1;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(var(--service-rgb, 66,133,244), 0.9), rgba(var(--service-rgb, 66,133,244), 0.6));
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 16px 40px rgba(var(--service-rgb, 66,133,244), 0.4);
}

.service-hero-card > span {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(var(--service-rgb, 66,133,244), 0.9);
  margin-bottom: 8px;
}

.service-hero-card h2 {
  position: relative;
  z-index: 1;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 10px 0;
}

.service-hero-card > p {
  position: relative;
  z-index: 1;
  font-size: 14px;
  color: #94a3b8;
  line-height: 1.65;
  margin: 0 0 24px 0;
}

/* Stats row inside card */
.service-hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.service-hero-stats > div {
  padding: 14px 12px;
  background: rgba(255,255,255,0.04);
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  transition: background 0.2s;
}

.service-hero-stats > div:hover {
  background: rgba(255,255,255,0.09);
}

.service-hero-stats span {
  font-size: 10px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.service-hero-stats strong {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
}

/* Trust badges row below card on mobile */
.service-trust-badges {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.service-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #cbd5e1;
}

.service-trust-badge .badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
}

@media (max-width: 640px) {
  .service-hero-section {
    padding: 110px 0 60px;
  }

  .service-hero-features {
    grid-template-columns: 1fr;
  }

  .service-hero-card {
    padding: 24px 20px 20px;
  }

  .service-platform-mark {
    width: 56px;
    height: 56px;
    font-size: 26px;
  }

  .service-hero-card h2 {
    font-size: 22px;
  }

  .service-hero-stats strong {
    font-size: 17px;
  }
}

/* ── Service page dark header ───────────────────────────── */
.service-page .header {
  background: rgba(2, 6, 23, 0.88);
  border-bottom-color: rgba(255,255,255,0.08);
}

.service-page .header.scrolled {
  background: rgba(2, 6, 23, 0.97);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

.service-page .logo-name {
  color: #fff;
}

.service-page .logo-pva {
  color: #38bdf8;
}

.service-page .logo-serves {
  color: #fff;
}

.service-page .logo-tagline {
  color: rgba(255,255,255,0.4);
}

.service-page .nav-link {
  color: rgba(255,255,255,0.7);
}

.service-page .nav-link:hover {
  color: #fff;
}

.service-page .mega-menu-trigger {
  color: rgba(255,255,255,0.7);
}

.service-page .mega-menu-trigger:hover {
  color: #fff;
}

.service-page .mobile-toggle span {
  background: rgba(255,255,255,0.85);
}

/* ========================================
   Mobile viewport, navigation, and chat fixes
   ======================================== */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.header,
.mobile-menu {
  max-width: 100vw;
}

.mobile-toggle {
  position: relative;
  z-index: 1002;
  flex: 0 0 auto;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.mobile-menu {
  width: 100vw;
  overflow-x: hidden;
  transform: translate3d(100%, 0, 0);
}

.mobile-menu.active {
  transform: translate3d(0, 0, 0);
}

@media (max-width: 767px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-inner {
    width: 100%;
    min-width: 0;
    gap: 10px;
  }

  .logo {
    min-width: 0;
    flex: 1 1 auto;
  }

  .logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 11px;
    font-size: 18px;
  }

  .logo-wordmark {
    min-width: 0;
  }

  .logo-name {
    font-size: 16px;
    white-space: nowrap;
  }

  .logo-tagline {
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-toggle {
    margin-left: auto;
  }

  .mobile-menu {
    left: 0;
    right: auto;
    padding: 20px 18px calc(110px + env(safe-area-inset-bottom));
  }

  .floating-chat {
    left: max(12px, env(safe-area-inset-left));
    bottom: max(12px, env(safe-area-inset-bottom));
    flex-direction: row;
    gap: 8px;
    z-index: 9998;
  }

  .chat-icon {
    width: 44px;
    height: 44px;
    font-size: 19px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.22);
  }

  .chat-icon:hover {
    transform: none;
  }

  iframe[title*="chat"],
  iframe[title*="Chat"],
  iframe[src*="tawk.to"] {
    max-width: calc(100vw - 96px) !important;
    max-height: calc(100vh - 110px) !important;
    right: max(8px, env(safe-area-inset-right)) !important;
    bottom: max(8px, env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 380px) {
  .logo-tagline {
    display: none;
  }

  .chat-icon {
    width: 42px;
    height: 42px;
  }
}
