/* Custom CSS for Ecomshost - World-Class Premium Landing Page */

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

/* --- Design Tokens / Variables --- */
:root {
  /* Colors */
  --bg-primary: #ffffff;
  --bg-secondary: #f8fafc;
  --bg-tertiary: #f1f5f9;
  
  --primary: #4F46E5;
  --primary-glow: rgba(79, 70, 229, 0.12);
  --primary-hover: #4338ca;
  
  --secondary: #7C3AED;
  --secondary-glow: rgba(124, 58, 237, 0.12);
  --secondary-hover: #6d28d9;
  
  --accent: #06B6D4;
  --accent-glow: rgba(6, 182, 212, 0.12);
  --accent-hover: #0891b2;
  
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  
  --gradient-accent: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --gradient-light: linear-gradient(135deg, rgba(79, 70, 229, 0.03) 0%, rgba(124, 58, 237, 0.03) 100%);
  --gradient-cyan-blue: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  --gradient-border: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
  --gradient-border-anim: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  
  /* Glassmorphism Details */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-bg-hover: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(226, 232, 240, 0.8);
  --glass-border-hover: rgba(79, 70, 229, 0.25);
  --glass-shadow: 0 10px 30px -10px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  --glass-shadow-hover: 0 20px 45px -15px rgba(79, 70, 229, 0.15), 0 1px 5px rgba(79, 70, 229, 0.05);
  
  /* Borders & Shadows */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
  --shadow-premium: 0 25px 50px -12px rgba(79, 70, 229, 0.12);
  
  /* Fonts */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* Layout */
  --header-height: 88px;
  --container-width: 1280px;
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

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

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

ul {
  list-style: none;
}

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

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

/* --- Cursor Glow Effect --- */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, rgba(124, 58, 237, 0.02) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
  opacity: 0;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* --- Layout Utility Classes --- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-bg-alt {
  background-color: var(--bg-secondary);
}

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

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  background: var(--primary-glow);
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
  border: 1px solid rgba(79, 70, 229, 0.08);
}

.section-title {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.section-title span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 400;
}

/* --- Premium Background Decorative Elements --- */
.aurora-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.blur-blob {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(140px);
  opacity: 0.28;
  animation: float-slow 20s ease-in-out infinite alternate;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-glow);
  top: -100px;
  right: -50px;
}

.blob-2 {
  width: 550px;
  height: 550px;
  background: var(--secondary-glow);
  bottom: 5%;
  left: -150px;
  animation-delay: -7s;
}

.blob-3 {
  width: 450px;
  height: 450px;
  background: var(--accent-glow);
  top: 35%;
  right: 5%;
  animation-delay: -14s;
}

/* --- SVG Divider Elements --- */
.svg-divider {
  position: absolute;
  left: 0;
  width: 100%;
  line-height: 0;
  z-index: 10;
  pointer-events: none;
}

.divider-top {
  top: 0;
  transform: translateY(-99%);
}

.divider-bottom {
  bottom: 0;
  transform: translateY(99%);
}

.svg-divider svg {
  display: block;
  width: 100%;
  height: 40px;
  fill: var(--bg-secondary);
}

.svg-divider.to-white svg {
  fill: var(--bg-primary);
}

/* --- Interactive Components: Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  padding: 15px 30px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-fast);
}

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

.btn-primary {
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(79, 70, 229, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(79, 70, 229, 0.45);
  background: linear-gradient(135deg, var(--primary-hover) 0%, var(--secondary-hover) 100%);
}

.btn-secondary {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--bg-tertiary);
  border-color: var(--text-muted);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-accent {
  background: var(--gradient-cyan-blue);
  color: #ffffff;
  box-shadow: 0 10px 25px -5px rgba(6, 182, 212, 0.35);
}

.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px -5px rgba(6, 182, 212, 0.45);
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: var(--radius-sm);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(79, 70, 229, 0.4);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary-glow);
  border-color: var(--primary);
  transform: translateY(-3px);
}

/* --- Navigation Header --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1000;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: transparent;
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.top-bar {
  background: rgba(248, 250, 252, 0.65);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.4);
  font-size: 12px;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
  z-index: 1001;
}

.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-bar-left a, .top-bar-right a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  text-decoration: none;
}

.top-bar-left a:hover, .top-bar-right a:hover {
  color: var(--primary);
}

.top-bar-left i {
  width: 13px;
  height: 13px;
  color: var(--primary);
}

.top-bar-link {
  font-weight: 500;
}

.top-bar-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 11px;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  padding: 3px 8px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(79, 70, 229, 0.15);
}

.header.scrolled .top-bar {
  margin-top: -36px;
  opacity: 0;
  pointer-events: none;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 86px;
  transition: all var(--transition-normal);
}

.header.scrolled .nav-container {
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--text-primary);
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
  transition: opacity var(--transition-fast);
}

.logo-img:hover {
  opacity: 0.9;
}

.logo span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--gradient-accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--primary);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 20px);
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

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

.hero-content {
  z-index: 10;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
  animation: pulse-green 2s infinite;
}

.hero-title {
  font-size: 54px;
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.15;
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: 19px;
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 38px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  border-top: 1px solid var(--bg-tertiary);
  padding-top: 32px;
  flex-wrap: wrap;
}

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

.trust-badge-item i {
  color: var(--primary);
  width: 18px;
  height: 18px;
}

/* Hero Graphic / Dashboard Mockup */
.hero-graphic {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-circle-glow {
  position: absolute;
  width: 110%;
  height: 110%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--gradient-glow);
  filter: blur(110px);
  border-radius: 50%;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
}

.mockup-window {
  width: 100%;
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-premium);
  overflow: hidden;
  z-index: 5;
  display: flex;
  flex-direction: column;
}

.mockup-header {
  background: rgba(255, 255, 255, 0.4);
  padding: 14px 20px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.5);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.mockup-dot.red { background-color: #EF4444; }
.mockup-dot.yellow { background-color: #F59E0B; }
.mockup-dot.green { background-color: #10B981; }

.mockup-address {
  background: rgba(255, 255, 255, 0.6);
  padding: 4px 24px;
  border-radius: var(--radius-full);
  font-size: 11px;
  color: var(--text-secondary);
  border: 1px solid rgba(226, 232, 240, 0.5);
  font-family: var(--font-body);
}

.mockup-content {
  padding: 24px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
}

.mockup-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.mockup-metric-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--radius-md);
  padding: 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mockup-metric-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-glow);
  color: var(--primary);
}

.mockup-metric-text p:first-child {
  font-size: 11px;
  color: var(--text-secondary);
  font-weight: 500;
}

.mockup-metric-text p:last-child {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.mockup-visual-box {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--radius-md);
  padding: 0;
  min-height: 320px;
  overflow: hidden;
}

.mockup-visual-box img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  z-index: 2;
  object-fit: cover;
  display: block;
  mix-blend-mode: multiply;
}

/* SVG Line chart inside mockup */
.mockup-svg-chart {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 1;
}

.chart-path {
  fill: none;
  stroke: url(#chart-gradient);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: draw-line 8s linear infinite;
}

@keyframes draw-line {
  0% { stroke-dashoffset: 1000; }
  100% { stroke-dashoffset: 0; }
}

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

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

/* Floating Elements around Mockup */
.hero-floating-badge {
  position: absolute;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  animation: float-alt 5s ease-in-out infinite;
}

.badge-uptime {
  top: 22%;
  left: -35px;
  animation: float 6s ease-in-out infinite;
}

.badge-speed {
  bottom: 12%;
  right: -30px;
  animation: float-alt 6s ease-in-out infinite;
  animation-delay: -1.5s;
}

.hero-floating-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.badge-uptime span {
  background-color: #10B981;
  box-shadow: 0 0 8px #10B981;
}

.badge-speed span {
  background-color: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.hero-floating-badge p {
  font-size: 12px;
  font-weight: 700;
}

/* --- Live Server Status Section --- */
.server-status-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 10px;
}

.status-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.status-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glass-shadow-hover);
  border-color: var(--glass-border-hover);
}

.status-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.status-card-title {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
}

.status-card-icon {
  color: var(--primary);
}

.status-card-value {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.status-progress-container {
  width: 100%;
  height: 6px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.status-progress-bar {
  height: 100%;
  background: var(--gradient-accent);
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}

.status-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  color: var(--text-muted);
}

.status-pulse-indicator {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #10B981;
  font-weight: 600;
}

.status-pulse-dot {
  width: 6px;
  height: 6px;
  background-color: #10B981;
  border-radius: 50%;
  animation: pulse-green 1.5s infinite;
}

/* --- Features Section --- */
.features-grid-12 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card-premium {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.feature-card-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-light);
  z-index: -1;
  opacity: 0;
  transition: var(--transition-normal);
}

.feature-card-premium:hover {
  transform: translateY(-6px);
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow-hover);
}

.feature-card-premium:hover::before {
  opacity: 1;
}

.feature-icon-box {
  width: 48px;
  height: 48px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 20px;
  transition: all var(--transition-normal);
}

.feature-card-premium:hover .feature-icon-box {
  background: var(--gradient-accent);
  color: #ffffff;
  transform: scale(1.08);
  box-shadow: 0 8px 16px -4px rgba(79, 70, 229, 0.35);
}

.feature-card-premium h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}

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

/* Glow Accent Hover */
.feature-card-premium::after {
  content: '';
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(79, 70, 229, 0.08) 0%, transparent 60%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease;
  z-index: -2;
}

.feature-card-premium:hover::after {
  opacity: 1;
}

/* --- Pricing Section --- */
.pricing-switcher-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}

.switcher-label {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.switcher-label.active {
  color: var(--text-primary);
}

.pricing-switch {
  position: relative;
  width: 58px;
  height: 30px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-normal);
  border: 1px solid var(--glass-border);
}

.pricing-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  background-color: white;
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.pricing-switch.active {
  background: var(--gradient-accent);
}

.pricing-switch.active::after {
  left: 31px;
}

.discount-badge {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-glow);
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-bottom: 50px;
}

.pricing-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--glass-shadow);
  transition: all var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

/* Popular Gradient Border Card */
.pricing-card.popular {
  border: 2px solid transparent;
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              var(--gradient-border-anim) border-box;
  background-size: 200% 100%;
  box-shadow: var(--shadow-premium);
  transform: scale(1.03);
  animation: border-gradient-shift 6s linear infinite;
}

.pricing-card.popular:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 25px 60px -15px rgba(79, 70, 229, 0.22);
}

@keyframes border-gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.popular-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--gradient-accent);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

.pricing-header {
  margin-bottom: 30px;
}

.pricing-name {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.pricing-desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.pricing-price-container {
  display: flex;
  align-items: baseline;
  margin-bottom: 30px;
}

.price-currency {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  align-self: flex-start;
  margin-top: 4px;
}

.price-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
  transition: opacity 0.15s ease-in-out;
}

.price-period {
  font-size: 15px;
  color: var(--text-secondary);
  margin-left: 4px;
}

.pricing-features-list {
  border-top: 1px solid var(--bg-tertiary);
  padding-top: 30px;
  margin-bottom: 40px;
  flex-grow: 1;
}

.pricing-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.pricing-feature-item i {
  color: #10B981;
  width: 18px;
  height: 18px;
}

.pricing-feature-item.muted {
  text-decoration: line-through;
  color: var(--text-muted);
}

.pricing-feature-item.muted i {
  color: var(--text-muted);
}

.pricing-cta {
  width: 100%;
}

.compare-plans-btn-wrapper {
  text-align: center;
  margin-top: 20px;
}

/* --- Performance Section --- */
.performance-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.perf-left h2 {
  font-size: 38px;
  margin-bottom: 20px;
}

.perf-left p {
  color: var(--text-secondary);
  font-size: 17px;
  margin-bottom: 40px;
}

.benchmark-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benchmark-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.benchmark-labels {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
}

.benchmark-labels span:last-child {
  color: var(--primary);
}

.benchmark-track {
  width: 100%;
  height: 12px;
  background-color: var(--bg-tertiary);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.benchmark-bar {
  height: 100%;
  border-radius: var(--radius-full);
  width: 0%;
  transition: width 1.5s cubic-bezier(0.1, 1, 0.1, 1);
}

.benchmark-bar.ecoms {
  background: var(--gradient-accent);
  box-shadow: 0 0 10px rgba(79, 70, 229, 0.3);
}

.benchmark-bar.industry {
  background-color: var(--text-muted);
}

.benchmark-bar.slow {
  background-color: #EF4444;
}

/* Performance Right: Speed Dial and CDN Latency */
.perf-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.speed-dial-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--glass-shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.speed-dial-wrapper {
  position: relative;
  width: 220px;
  height: 140px;
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.speed-dial-svg {
  width: 220px;
  height: 220px;
}

.speed-dial-track {
  fill: none;
  stroke: var(--bg-tertiary);
  stroke-width: 12;
  stroke-dasharray: 282.6;
  stroke-dashoffset: 0;
  stroke-linecap: round;
}

.speed-dial-fill {
  fill: none;
  stroke: url(#dial-gradient);
  stroke-width: 12;
  stroke-dasharray: 282.6;
  stroke-dashoffset: 282.6;
  stroke-linecap: round;
  transition: stroke-dashoffset 2s cubic-bezier(0.1, 1, 0.1, 1);
}

.speed-dial-needle {
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 90px;
  background-color: var(--text-primary);
  border-radius: var(--radius-full);
  transform-origin: 50% 90%;
  transform: rotate(-90deg);
  transition: transform 2s cubic-bezier(0.1, 1, 0.1, 1);
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.speed-dial-needle::after {
  content: '';
  width: 16px;
  height: 16px;
  background-color: var(--text-primary);
  border-radius: 50%;
  position: absolute;
  bottom: 0;
}

.speed-dial-text {
  font-size: 28px;
  font-weight: 800;
  color: var(--text-primary);
  margin-top: 10px;
}

.speed-dial-label {
  font-size: 13px;
  color: #10B981;
  font-weight: 700;
  text-transform: uppercase;
}

/* CDN Latency table */
.cdn-latency-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--glass-shadow);
}

.cdn-latency-card h4 {
  font-size: 16px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cdn-latency-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.cdn-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  font-size: 13px;
  gap: 8px;
  min-width: 0;
}

.cdn-region {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
}

.cdn-flag {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.cdn-ping {
  color: #10B981;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* --- Testimonials Section (Slider) --- */
.slider-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.slider-wrapper {
  display: flex;
  transition: transform var(--transition-slow);
}

.slide-item {
  min-width: 100%;
  padding: 10px 20px;
  box-sizing: border-box;
  perspective: 1000px;
}

.testimonial-card-slider {
  background: var(--glass-bg);
  backdrop-filter: blur(15px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
  opacity: 0.35;
  transform: scale(0.93) translateY(15px) rotateX(2deg);
  transition: opacity 0.75s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.75s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.75s ease;
}

.slide-item.active .testimonial-card-slider {
  opacity: 1;
  transform: scale(1) translateY(0) rotateX(0deg);
  box-shadow: var(--glass-shadow-hover);
}

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  left: 40px;
  font-size: 80px;
  color: rgba(79, 70, 229, 0.05);
  line-height: 1;
  font-family: Georgia, serif;
  user-select: none;
}

.testimonial-stars {
  color: #FBBF24;
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-bottom: 24px;
}

.testimonial-text-large {
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.testimonial-author-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.author-avatar-lg {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ffffff;
  box-shadow: var(--shadow-md);
}

.author-info-centered h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
}

.author-info-centered p {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Slider Controls */
.slider-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.slider-btn:hover {
  background: var(--gradient-accent);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 5px 15px -3px rgba(79, 70, 229, 0.4);
}

.slider-indicators {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  background-color: var(--text-muted);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  width: 24px;
  border-radius: var(--radius-full);
  background-color: var(--primary);
}

/* --- Datacenter Section --- */
#network {
  padding: 45px 0;
}

#network .section-header {
  margin-bottom: 25px;
}

.datacenter-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 30px 40px;
  position: relative;
  overflow: visible;
}

.map-container {
  position: relative;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
}

/* SVG map styling */
.svg-world-map {
  width: 100%;
  height: auto;
  display: block;
  fill: #e2e8f0;
}

/* Location hot-spots */
.map-hotspot {
  position: absolute;
  cursor: pointer;
  transform: translate(-50%, -50%);
  z-index: 20;
}

.hotspot-trigger {
  width: 16px;
  height: 16px;
  background-color: var(--primary);
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 10px var(--primary);
  transition: all var(--transition-fast);
}

.hotspot-pulse {
  position: absolute;
  top: -8px;
  left: -8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-glow);
  animation: pulse-ring 2s infinite;
  z-index: -1;
  pointer-events: none;
}

.map-hotspot:hover .hotspot-trigger {
  transform: scale(1.3);
  background-color: var(--secondary);
  box-shadow: 0 0 15px var(--secondary);
}

.map-hotspot:hover .hotspot-pulse {
  background: var(--secondary-glow);
}

/* Tooltips */
.hotspot-tooltip {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: #0f172a;
  color: #ffffff;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px -15px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 100;
  width: 220px;
  text-align: center;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hotspot-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #0f172a transparent transparent transparent;
}

.map-hotspot:hover .hotspot-tooltip,
.map-hotspot.active .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.map-container.has-active .map-hotspot:not(.active) .hotspot-tooltip {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.tooltip-title {
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 4px;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.tooltip-title-text {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.tooltip-flag {
  width: 16px;
  height: 11px;
  object-fit: cover;
  border-radius: 1px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.tooltip-details {
  font-size: 11px;
  color: var(--text-muted);
  display: flex;
  justify-content: space-around;
  margin-top: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 8px;
}

.tooltip-details span {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tooltip-details strong {
  color: var(--accent);
}

/* Hotspot Coordinates */
.spot-usa { top: 25.97%; left: 25%; }
.spot-uk { top: 17.25%; left: 46.4%; }
.spot-germany { top: 20.29%; left: 49.3%; }
.spot-india { top: 42.00%; left: 70%; }
.spot-bangladesh { top: 39.57%; left: 72.8%; }
.spot-singapore { top: 57.83%; left: 78%; }

/* --- Statistics Section --- */
.stats-section {
  padding: 50px 0;
  color: var(--text-primary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('assets/stats-bg.png') no-repeat center center / cover;
  filter: invert(1) brightness(1.6) opacity(0.04);
  z-index: -1;
  pointer-events: none;
}

.stats-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 50% 50%, rgba(79, 70, 229, 0.05) 0%, rgba(255, 255, 255, 0) 70%), #ffffff;
  z-index: -2;
  pointer-events: none;
}

.stats-section .stat-label {
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.stats-section .stat-number {
  color: var(--primary);
  font-size: 32px;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1.2;
  margin: 6px 0;
  letter-spacing: -0.5px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: var(--radius-md);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition: transform var(--transition-normal), background var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}

.stat-card:hover {
  transform: translateY(-4px);
  background: #ffffff;
  border-color: rgba(79, 70, 229, 0.2);
  box-shadow: 0 10px 30px rgba(79, 70, 229, 0.08);
}

.stat-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(79, 70, 229, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 8px;
}

.stat-icon svg, .stat-icon i {
  width: 18px !important;
  height: 18px !important;
  color: var(--primary) !important;
}

.stats-decor {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
  z-index: -1;
  pointer-events: none;
}

/* --- FAQ Accordion Section --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.faq-item:hover {
  border-color: var(--glass-border-hover);
  box-shadow: var(--glass-shadow);
}

.faq-question {
  width: 100%;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon-wrapper {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-tertiary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-normal);
}

.faq-item.active .faq-icon-wrapper {
  background: var(--gradient-accent);
  color: #ffffff;
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0, 1, 0, 1);
  padding: 0 30px;
}

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

.faq-answer p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  border-top: 1px solid var(--bg-tertiary);
  padding-top: 16px;
}

/* --- Footer --- */
.footer {
  background-color: var(--bg-secondary);
  color: var(--text-secondary);
  padding: 100px 0 40px 0;
  font-size: 14px;
  position: relative;
  border-top: 1px solid rgba(226, 232, 240, 0.8);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand .logo {
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-desc {
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 320px;
  color: var(--text-secondary);
}

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

.social-icon {
  width: 38px;
  height: 38px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.social-icon:hover {
  background: var(--gradient-accent);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px -3px rgba(79, 70, 229, 0.5);
}

.footer-heading {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: var(--font-heading);
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

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

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.footer-contact-item i {
  color: var(--primary);
  margin-top: 3px;
}

.system-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.08);
  color: #10B981;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #10B981;
  border-radius: 50%;
  animation: pulse-green 1.5s infinite;
}

.footer-bottom {
  border-top: 1px solid rgba(15, 23, 42, 0.08);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* --- Keyframe Animations --- */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

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

@keyframes float-slow {
  0% { transform: translate(0px, 0px) rotate(0deg); }
  100% { transform: translate(60px, 40px) rotate(360deg); }
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

@keyframes pulse-ring {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* --- Responsive Media Queries --- */
@media (max-width: 1200px) {
  .hero-grid {
    gap: 40px;
  }
  .hero-title {
    font-size: 46px;
  }
  .features-grid-12 {
    grid-template-columns: repeat(3, 1fr);
  }
  .server-status-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-trust-badges {
    justify-content: center;
  }
  .hero-graphic {
    max-width: 550px;
    margin: 0 auto;
  }
  .badge-uptime {
    left: -10px;
  }
  .badge-speed {
    right: -10px;
  }
  
  .server-status-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid-12 {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
    gap: 40px;
  }
  .pricing-card.popular {
    transform: scale(1);
  }
  .pricing-card.popular:hover {
    transform: translateY(-8px);
  }
  
  .performance-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-top {
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 90px 0;
  }
  #network {
    padding: 40px 0 !important;
  }
  .section-title {
    font-size: 32px;
  }
  
  /* Navigation Bar Mobile Layout */
  .mobile-toggle {
    display: block;
    z-index: 1100;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 35px rgba(15, 23, 42, 0.08);
    flex-direction: column;
    align-items: flex-start;
    padding: 110px 40px;
    gap: 24px;
    transition: right var(--transition-normal);
    z-index: 1050;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-actions {
    display: none; /* hidden, will bind inside hamburger if needed */
  }
  
  .features-grid-12 {
    grid-template-columns: 1fr;
  }
  
  .datacenter-wrapper {
    padding: 40px 20px;
    overflow: visible !important;
  }

  .hotspot-tooltip {
    width: 170px !important;
    padding: 10px 12px !important;
    bottom: 20px !important;
  }

  .tooltip-title {
    font-size: 12px !important;
  }

  .hotspot-trigger {
    width: 12px !important;
    height: 12px !important;
    border-width: 2px !important;
  }

  .hotspot-pulse {
    width: 24px !important;
    height: 24px !important;
    top: -6px !important;
    left: -6px !important;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 580px) {
  .server-status-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 36px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
  .hero-trust-badges {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
  
  .hotspot-tooltip {
    width: 140px !important;
    padding: 8px 10px !important;
    bottom: 16px !important;
  }
  
  .tooltip-title {
    font-size: 11px !important;
  }
}

/* --- Domain Search Section --- */
.section-domain-search {
  padding: 40px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.domain-card-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 50px 60px;
  position: relative;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
}

.domain-card-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: var(--gradient-glow);
  filter: blur(80px);
  opacity: 0.15;
  pointer-events: none;
}

.domain-search-content {
  text-align: center;
  position: relative;
  z-index: 5;
}

.domain-badge-tag {
  display: inline-block;
  background: rgba(79, 70, 229, 0.08);
  color: var(--primary);
  border: 1px solid rgba(79, 70, 229, 0.15);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.domain-search-content h2 {
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.domain-search-content h2 span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.domain-search-content p {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 35px auto;
}

.domain-search-form {
  display: flex;
  gap: 12px;
  max-width: 750px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(226, 232, 240, 0.8);
  padding: 8px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  align-items: center;
}

.domain-input-box {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  padding-left: 14px;
}

.domain-globe-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
}

.domain-input-box input {
  border: none;
  background: transparent;
  outline: none;
  width: 100%;
  font-size: 15px;
  color: var(--text-primary);
  font-weight: 500;
}

.domain-input-box input::placeholder {
  color: var(--text-muted);
}

.btn-domain-search {
  padding: 14px 28px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  height: 100%;
  border-radius: var(--radius-sm);
}

.popular-tlds {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.tld-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.6);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(226, 232, 240, 0.5);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.tld-item:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 70, 229, 0.3);
  box-shadow: var(--shadow-sm);
}

.tld-name {
  font-weight: 700;
  color: var(--text-primary);
}

.tld-price {
  color: var(--primary);
  font-weight: 600;
}

.tld-item.hot {
  position: relative;
  border-color: rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.03);
}

.tld-badge {
  font-size: 9px;
  font-weight: 700;
  background: var(--accent);
  color: white;
  padding: 2px 5px;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
}

/* Results box styles */
.domain-result-box {
  margin-top: 25px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.domain-result-box.hidden {
  display: none;
}

.domain-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.domain-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid var(--primary-glow);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

.domain-loading p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.domain-success {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.success-icon {
  width: 36px;
  height: 36px;
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-icon i {
  width: 20px;
  height: 20px;
}

.success-text {
  flex: 1;
}

.success-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.success-text p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.domain-error {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.error-icon {
  width: 36px;
  height: 36px;
  background: rgba(239, 68, 68, 0.1);
  color: #EF4444;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.error-icon i {
  width: 20px;
  height: 20px;
}

.error-text {
  flex: 1;
}

.error-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.error-text p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* --- Footer Payment Gateways --- */
.footer-payment-methods {
  margin-top: 24px;
}

.payment-title {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.payment-gateways-row {
  display: flex;
  margin-top: 8px;
}

.payment-gateway-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  display: block;
  opacity: 0.95;
  transition: opacity var(--transition-fast);
  border: 1px solid rgba(15, 23, 42, 0.06);
  background: white;
  padding: 4px;
}

.payment-gateway-img:hover {
  opacity: 1;
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  
  .domain-card-wrapper {
    padding: 30px 20px;
  }
  
  .domain-search-content h2 {
    font-size: 28px;
  }
  
  .domain-search-form {
    flex-direction: column;
    padding: 12px;
  }
  
  .domain-input-box {
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
  
  .btn-domain-search {
    width: 100%;
    justify-content: center;
  }
}

.hidden {
  display: none !important;
}

/* --- Performance Section Enhancements --- */

.perf-tech-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 30px;
  padding: 16px 18px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.perf-tech-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--bg-primary);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 5px 11px;
  transition: all var(--transition-fast);
}

.perf-tech-item:hover {
  border-color: var(--glass-border-hover);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--glass-shadow-hover);
}

.perf-tech-logo {
  height: 18px;
  width: auto;
  object-fit: contain;
  display: block;
}

.bench-label-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  color: var(--text-primary);
}

.bench-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
}

.bench-label-val {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.bench-val-green {
  color: #10B981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.bench-val-yellow {
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.bench-val-red {
  color: #EF4444;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.cdn-flag {
  width: 20px;
  height: auto;
  border-radius: 2px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
  flex-shrink: 0;
}

.cdn-region {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cdn-ping {
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}

.cdn-ping-best {
  color: #059669;
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.2);
}

.cdn-ping-green {
  color: #10B981;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.cdn-ping-yellow {
  color: #F59E0B;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

/* --- Features Section Image Icons --- */
.feature-icon-img-box {
  background: var(--bg-primary) !important;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  padding: 10px;
}

.feature-card-img-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  display: block;
  transition: transform var(--transition-normal);
}

.feature-card-premium:hover .feature-card-img-icon {
  transform: scale(1.12) rotate(-4deg);
}

/* --- Pricing Category Tabs --- */
.pricing-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin: 0 0 32px;
  padding: 6px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.pricing-tab-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: var(--radius-md);
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: var(--font-body);
}

.pricing-tab-btn svg {
  width: 15px;
  height: 15px;
}

.pricing-tab-btn:hover {
  color: var(--primary);
  background: rgba(79, 70, 229, 0.06);
}

.pricing-tab-btn.active {
  background: var(--gradient-accent);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(79, 70, 229, 0.35);
}

.pricing-tab-panel {
  display: none;
}

@keyframes pricingSlideIn {
  from {
    opacity: 0;
    transform: translateX(45px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.pricing-tab-panel.active {
  display: block;
  animation: pricingSlideIn 0.58s cubic-bezier(0.34, 1.45, 0.64, 1) forwards;
}

/* ============================================
   PREMIUM MOBILE RESPONSIVE — 768px
   ============================================ */
@media (max-width: 768px) {

  /* Base */
  .container { padding: 0 16px; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .section-title { font-size: 28px !important; line-height: 1.3; }
  .section-subtitle { font-size: 14px !important; }
  .top-bar { display: none; }

  /* ── Navigation ── */
  .header { padding: 0; }
  .nav-container { padding: 0 16px; height: 66px; }
  .logo-img { height: 40px; }
  .nav-cta-group { display: none; }
  .nav-menu {
    position: fixed;
    top: 66px; left: 0; right: 0; bottom: 0;
    width: 100% !important;
    background: var(--bg-primary);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 24px 40px;
    gap: 4px;
    overflow-y: auto;
    transform: translateY(-110%);
    transition: transform 0.32s cubic-bezier(0.4,0,0.2,1);
    z-index: 998;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    border-bottom: 2px solid var(--glass-border);
  }
  .nav-menu.active { transform: translateY(0); }
  .nav-link {
    width: 100%;
    font-size: 16px;
    font-weight: 600;
    padding: 14px 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-primary);
  }
  .nav-link:last-child { border-bottom: none; }
  .nav-link.active { color: var(--primary); }
  .mobile-toggle { display: flex; }

  /* ── Hero ── */
  body, html { overflow-x: hidden; }
  .hero { padding: 100px 0 52px; overflow: hidden; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }
  .hero-content { order: 2; }
  .hero-badge { margin: 0 auto 18px; }
  .hero-title { font-size: 30px !important; line-height: 1.25; margin-bottom: 14px; }
  .hero-subtitle { font-size: 14px; margin: 0 auto 24px; max-width: 100%; }
  .hero-buttons { justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
  .hero-trust-badges { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .trust-badge-item { font-size: 12px; }

  /* Hero graphic — compact card view */
  .hero-graphic {
    display: block;
    order: 1;
    width: calc(100% - 0px);
    max-width: 100%;
    position: relative;
    overflow: hidden;
  }
  .hero-circle-glow { display: none; }
  .hero-floating-badge { display: none; }

  /* Constrain the mockup window fully */
  .mockup-window {
    width: 100% !important;
    max-width: 100% !important;
    min-width: unset !important;
    position: relative !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin: 0 auto;
    box-shadow: var(--glass-shadow);
  }
  .mockup-header { padding: 10px 14px; }
  .mockup-address { font-size: 11px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; max-width: 180px; }
  .mockup-content { padding: 12px; }
  .mockup-grid-top { grid-template-columns: 1fr 1fr; gap: 10px; }
  .mockup-metric-card { padding: 12px 10px; }
  .mockup-metric-text p:last-child { font-size: 16px; }

  /* Hide server image on mobile to save space */
  .mockup-visual-box {
    display: block;
    width: 100%;
    max-height: 220px;
    overflow: hidden;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }
  .mockup-visual-box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .mockup-svg-chart { display: none; }

  /* ── Domain Search ── */
  .section-domain-search { padding: 40px 0; }
  .domain-card-wrapper {
    padding: 28px 18px;
    border-radius: var(--radius-lg);
    flex-direction: column;
    gap: 24px;
  }
  .domain-search-content h2 { font-size: 22px; text-align: center; }
  .domain-search-content p  { font-size: 13px; text-align: center; }
  .domain-search-form { flex-direction: column; gap: 10px; padding: 10px; }
  .domain-input-box { width: 100%; padding: 0; }
  .btn-domain-search { width: 100%; justify-content: center; padding: 14px; }

  /* ── Features ── */
  .features-grid-12 {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }
  .feature-card-premium {
    padding: 20px 14px;
    border-radius: var(--radius-md);
    text-align: center;
  }
  .feature-icon-box {
    width: 46px; height: 46px;
    margin: 0 auto 12px;
  }
  .feature-card-img-icon { width: 28px; height: 28px; }
  .feature-card-premium h3 { font-size: 13px; font-weight: 700; }
  .feature-card-premium p  { font-size: 11px; line-height: 1.5; }

  /* ── Pricing ── */
  .pricing-switcher-wrapper { flex-wrap: wrap; justify-content: center; gap: 10px; }
  .pricing-tabs-nav {
    gap: 6px;
    padding: 5px;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    border-radius: var(--radius-md);
    margin-bottom: 24px;
  }
  .pricing-tabs-nav::-webkit-scrollbar { display: none; }
  .pricing-tab-btn {
    padding: 9px 14px;
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    gap: 5px;
  }
  .pricing-tab-btn svg { width: 13px; height: 13px; }
  .pricing-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-card { padding: 24px 20px; }
  .pricing-name { font-size: 18px; }
  .price-amount { font-size: 42px !important; }
  .pricing-features-list { gap: 10px; }
  .pricing-feature-item { font-size: 13px; }

  /* ── Performance ── */
  .performance-grid {
    grid-template-columns: 1fr !important;
    gap: 32px;
  }
  .perf-left { text-align: center; }
  .perf-left h2 { font-size: 24px; }
  .perf-left > p { font-size: 14px; }
  .perf-tech-strip {
    gap: 8px;
    padding: 14px 12px;
    justify-content: center;
  }
  .perf-tech-item { font-size: 11px; padding: 5px 10px; }
  .perf-tech-logo { height: 15px; }
  .benchmark-labels { font-size: 12px; }
  .bench-label-val { font-size: 11px; }
  .speed-dial-card { padding: 24px 20px; max-width: 320px; margin: 0 auto; }
  .cdn-latency-card { padding: 18px 16px; max-width: 320px; margin: 0 auto; }
  .cdn-latency-grid { gap: 10px; }
  .cdn-item { font-size: 13px; }

  /* ── Statistics ── */
  .stats-section { padding: 56px 0; }
  .stats-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px;
  }
  .stat-card { padding: 24px 14px; }
  .stat-number { font-size: 32px !important; }
  .stat-label { font-size: 12px; }
  .stat-icon svg { width: 22px; height: 22px; }

  /* ── Network Map ── */
  .section-header { text-align: center; }
  .datacenter-wrapper {
    min-height: 220px;
    border-radius: var(--radius-lg);
  }
  .hotspot-trigger { width: 12px; height: 12px; }
  .map-tooltip {
    max-width: 160px;
    font-size: 11px;
    padding: 8px 10px;
  }
  .map-legend { flex-wrap: wrap; gap: 10px; justify-content: center; }

  /* ── Live Status ── */
  .status-cards-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }
  .status-card { padding: 18px 16px; }
  .status-meta { font-size: 12px; }

  /* ── Testimonials ── */
  .testimonial-slider-wrapper { padding: 0; }
  .testimonial-card-large { padding: 28px 18px; }
  .testimonial-text-large { font-size: 14px !important; line-height: 1.7; }
  .author-avatar-lg { width: 52px !important; height: 52px !important; }
  .testimonial-stars { gap: 3px; }
  .slider-nav { gap: 12px; margin-top: 20px; }
  .slider-btn { width: 38px; height: 38px; }

  /* ── FAQ ── */
  .faq-container { gap: 10px; }
  .faq-question { font-size: 14px; padding: 16px 16px; }
  .faq-answer p { font-size: 13px; padding: 14px 16px; }

  /* ── Footer ── */
  .footer { padding: 60px 0 30px; }
  .footer-top {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 32px 20px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-contact {
    grid-column: span 2;
  }
  .footer-desc { max-width: 100%; }
  .footer-heading { margin-bottom: 16px; }
  .footer-links li { margin-bottom: 10px; }
  .footer-contact-item { font-size: 13px; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    font-size: 12px;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    font-size: 12px;
  }
  .footer-socials { gap: 8px; }
  .social-icon { width: 34px; height: 34px; }
  .payment-gateway-img { max-width: 100%; }
}

/* ============================================
   SMALL PHONE — 480px
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section { padding: 52px 0; }

  .hero-title { font-size: 28px !important; }
  .hero-subtitle { font-size: 14px; }
  .section-title { font-size: 23px !important; }

  /* Buttons full-width on tiny screens */
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 300px; justify-content: center; }

  /* Features single column */
  .features-grid-12 { grid-template-columns: 1fr !important; gap: 10px; }
  .feature-card-premium { flex-direction: row; align-items: flex-start; gap: 14px; text-align: left; padding: 16px 14px; }
  .feature-icon-box { margin: 0; flex-shrink: 0; width: 42px; height: 42px; }

  /* Stats single column */
  .stats-grid { grid-template-columns: 1fr 1fr !important; }
  .stat-number { font-size: 28px !important; }

  /* Pricing */
  .price-amount { font-size: 36px !important; }
  .pricing-tab-btn { padding: 7px 11px; font-size: 11px; }
  .pricing-grid { max-width: 100%; }

  /* Performance */
  .perf-tech-strip { padding: 12px 10px; }
  .perf-tech-item { font-size: 10px; padding: 4px 8px; }

  /* Footer */
  .logo-img { height: 34px; }
  .footer-top { gap: 24px; }
  .social-icon { width: 32px; height: 32px; }
}

/* ── Scroll Reveal Slide-Up Styles ── */
.reveal-slide-up {
  opacity: 0;
  transform: translateY(45px) scale(0.96) rotateX(4deg);
  transition: opacity 0.85s cubic-bezier(0.34, 1.45, 0.64, 1), transform 0.85s cubic-bezier(0.34, 1.45, 0.64, 1);
  will-change: transform, opacity;
  transform-origin: center bottom;
  perspective: 1000px;
}

.reveal-slide-up.revealed {
  opacity: 1;
  transform: translateY(0) scale(1) rotateX(0deg);
}

/* ── Staggered Animation Wave Delays ── */
.reveal-slide-up.stagger-1 { transition-delay: 0.06s; }
.reveal-slide-up.stagger-2 { transition-delay: 0.14s; }
.reveal-slide-up.stagger-3 { transition-delay: 0.22s; }
.reveal-slide-up.stagger-4 { transition-delay: 0.30s; }
.reveal-slide-up.stagger-5 { transition-delay: 0.38s; }
.reveal-slide-up.stagger-6 { transition-delay: 0.46s; }

