/* =====================================================
   WEBHOSTER - PREMIUM AUSTRALIAN WEB HOSTING
   Modern, Bold, Award-Winning Design
   ===================================================== */

/* CSS Variables - Distinctive Color Palette */
:root {
  /* Dark Theme (Default) */
  --bg-primary: #0a0a0f;
  --bg-secondary: #12121a;
  --bg-tertiary: #1a1a25;
  --bg-card: rgba(26, 26, 37, 0.8);
  --bg-card-hover: rgba(30, 30, 45, 0.9);
  
  --text-primary: #ffffff;
  --text-secondary: #a0a0b0;
  --text-muted: #6b6b7b;
  
  --primary: #00d4ff;
  --primary-dark: #00a8cc;
  --secondary: #7c3aed;
  --accent: #ff6b6b;
  --success: #10b981;
  
  --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #7c3aed 100%);
  --gradient-secondary: linear-gradient(135deg, #7c3aed 0%, #ff6b6b 50%, #00d4ff 100%);
  --gradient-glow: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.15) 0%, transparent 70%);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.15);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 60px rgba(0, 212, 255, 0.3);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  
  --transition-fast: 0.15s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Light Theme */
[data-theme="light"] {
  --bg-primary: #f8fafc;
  --bg-secondary: #ffffff;
  --bg-tertiary: #e2e8f0;
  --bg-card: rgba(255, 255, 255, 0.95);
  --bg-card-hover: rgba(255, 255, 255, 1);
  
  --text-primary: #0f172a;
  --text-secondary: #475569;
  --text-muted: #64748b;
  
  --primary: #0891b2;
  --primary-dark: #0e7490;
  --secondary: #7c3aed;
  --accent: #f43f5e;
  --success: #059669;
  
  --gradient-primary: linear-gradient(135deg, #0891b2 0%, #7c3aed 100%);
  
  --border-color: rgba(0, 0, 0, 0.1);
  --border-hover: rgba(0, 0, 0, 0.2);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 60px rgba(8, 145, 178, 0.15);
}

/* Light theme specific overrides */
[data-theme="light"] .gradient-orb {
  opacity: 0.15;
}

[data-theme="light"] .grid-overlay {
  background-image: 
    linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

/* Light theme header - see main header section */

[data-theme="light"] .server-card {
  background: #ffffff;
  box-shadow: var(--shadow-lg);
}

[data-theme="light"] .server-header {
  background: #f1f5f9;
}

[data-theme="light"] .code-line {
  color: #334155;
}

[data-theme="light"] .code-response {
  color: #64748b;
}

[data-theme="light"] .hero-badge {
  background: #e2e8f0;
  border-color: var(--border-color);
}

[data-theme="light"] .trust-badge {
  color: #334155;
}

[data-theme="light"] .feature-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .testimonial-card {
  background: #ffffff;
  border-color: var(--border-color);
  box-shadow: var(--shadow-sm);
}

[data-theme="light"] .feature-card:hover,
[data-theme="light"] .pricing-card:hover,
[data-theme="light"] .testimonial-card:hover {
  box-shadow: var(--shadow-md);
}

[data-theme="light"] .pricing-card.popular {
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
}

[data-theme="light"] .network-card {
  background: #ffffff;
  border-color: var(--border-color);
}

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

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

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
  font-weight: 400;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Work Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  line-height: 1.75;
  font-size: 16px;
}

code, .code, .mono, .terminal-text {
  font-family: 'Fira Code', 'JetBrains Mono', monospace;
}

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

/* Animated Background */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: var(--primary);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  bottom: -150px;
  left: -150px;
  animation-delay: -7s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
  opacity: 0.2;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(50px, -50px) scale(1.05); }
  50% { transform: translate(-30px, 30px) scale(0.95); }
  75% { transform: translate(-50px, -30px) scale(1.02); }
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Container */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1200px) {
  .container {
    padding: 0 24px;
  }
}

/* Header */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 24px;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

[data-theme="light"] .main-header {
  background: rgba(255, 255, 255, 0.95);
  border-bottom-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
}

/* Mobile menu action buttons - hidden by default */
.mobile-menu-actions {
  display: none;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 36px;
  width: auto;
}

/* logo-white.svg (white logo) for dark theme */
.logo-dark {
  display: block;
}

/* logo-black.svg (black logo) for light theme */
.logo-light {
  display: none;
}

[data-theme="light"] .logo-dark {
  display: none;
}

[data-theme="light"] .logo-light {
  display: block;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 10px 16px;
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.nav-menu > li > a:hover,
.nav-menu > li.has-dropdown:hover > a {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s ease;
  box-shadow: var(--shadow-lg);
  list-style: none;
  z-index: 100;
}

.has-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
}

.dropdown-menu li a:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

/* Light theme dropdown */
[data-theme="light"] .dropdown-menu {
  background: #ffffff;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .dropdown-menu li a:hover {
  background: #f1f5f9;
}

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

/* Theme Toggle Button - Simple Icon */
.theme-toggle-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  cursor: pointer;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.theme-toggle-btn:hover {
  color: var(--text-primary);
  border-color: var(--border-hover);
  background: var(--bg-tertiary);
}

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

.theme-toggle-btn .icon-sun {
  display: none;
}

.theme-toggle-btn .icon-moon {
  display: block;
}

[data-theme="light"] .theme-toggle-btn .icon-sun {
  display: block;
}

[data-theme="light"] .theme-toggle-btn .icon-moon {
  display: none;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-fast);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: var(--shadow-sm), 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md), 0 0 40px rgba(0, 212, 255, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-color);
}

.btn-outline:hover {
  background: var(--bg-tertiary);
  border-color: var(--border-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

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

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

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: var(--bg-tertiary);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 24px;
  border: 1px solid var(--border-color);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.title-line {
  display: block;
}

.hero-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 36px;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  border: 1px solid var(--border-color);
}

.highlight-icon {
  font-size: 16px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 60px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat {
  text-align: left;
}

.stat-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  font-family: 'JetBrains Mono', monospace;
}

.stat-suffix {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-secondary);
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--border-color);
}

/* Page Hero Section (Inner Pages) */
.page-hero {
  min-height: 60vh;
  padding: 160px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero .container {
  display: contents;
}

.page-hero .hero-content {
  max-width: 100%;
}

.page-hero .hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
  cursor: grab;
  min-height: 350px;
}

.page-hero .hero-visual:active {
  cursor: grabbing;
}

.page-hero .hero-image {
  max-width: 100%;
  width: 500px;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  /* Animation removed to allow JS tilt effect */
}

.page-hero .hero-image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-hero .hero-image-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  background: var(--gradient-glow);
  filter: blur(60px);
  z-index: -1;
  animation: pulse-glow 4s ease-in-out infinite;
}

.page-hero .hero-image-container {
  cursor: grab;
  transform-style: preserve-3d;
  padding: 20px;
}

.page-hero .hero-image-container:hover {
  cursor: grabbing;
}

.page-hero .hero-image {
  transform-style: preserve-3d;
  will-change: transform;
  backface-visibility: hidden;
  transition: transform 0.15s ease-out;
}

.page-hero .hero-image-glow {
  transition: transform 0.15s ease-out, opacity 0.3s ease;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}

@media (max-width: 1024px) {
  .page-hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 140px 20px 60px;
    min-height: auto;
  }
  
  .page-hero .hero-visual {
    order: -1;
  }
  
  .page-hero .hero-image {
    width: 350px;
  }
  
  .page-hero .hero-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 120px 20px 40px;
  }
  
  .page-hero .hero-image {
    width: 280px;
  }
}

/* Server Card Visual */
.hero-visual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  perspective: 1000px;
}

.server-card {
  width: 100%;
  max-width: 560px;
  background: var(--bg-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border-color);
  overflow: hidden;
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  transform-style: preserve-3d;
  transition: transform 0.1s ease-out;
  will-change: transform;
}

.server-card.tilt {
  transform: rotateX(var(--rotateX)) rotateY(var(--rotateY));
}

/* Hero Badges Stack */
.hero-badges-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 560px;
}

.hero-badges-stack .floating-badge {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  bottom: auto;
  animation: none;
  justify-content: flex-start;
}

.server-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-color);
}

.server-dots {
  display: flex;
  gap: 8px;
}

.server-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.server-dots span:nth-child(1) { background: #ff5f56; }
.server-dots span:nth-child(2) { background: #ffbd2e; }
.server-dots span:nth-child(3) { background: #27c93f; }

.server-title {
  font-size: 13px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

.server-content {
  padding: 24px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
}

.code-line {
  margin-bottom: 8px;
  color: var(--text-secondary);
}

.code-prompt {
  color: var(--primary);
}

.code-cmd {
  color: var(--secondary);
}

.code-response {
  padding-left: 20px;
  color: var(--text-muted);
}

.code-highlight {
  color: var(--success);
  font-weight: 600;
}

.cursor-blink .cursor {
  animation: blink 1s step-end infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

/* Floating Badges on Hero */
.floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}

.floating-badge .badge-icon {
  font-size: 18px;
}

.floating-badge.badge-1 {
  top: 20%;
  right: -20px;
  animation-delay: 0s;
}

.floating-badge.badge-2 {
  bottom: 25%;
  left: -30px;
  animation-delay: 1.5s;
}

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

/* Partners / Trusted By Section */
.partners-section {
  padding: 80px 0;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.partners-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 12px;
}

.partners-subtitle {
  text-align: center;
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 50px;
}

.partners-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 40s linear infinite;
  width: max-content;
}

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

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  min-width: 160px;
  transition: var(--transition-fast);
}

.partner-logo:hover {
  border-color: var(--primary);
  transform: scale(1.05);
}

.partner-logo span {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-secondary);
  white-space: nowrap;
}

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

.badge-icon {
  font-size: 24px;
}

/* Section Styles */
section {
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 16px;
  margin-top: 40px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Features Section */
.features {
  padding: 120px 24px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.feature-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.feature-card.feature-large {
  grid-column: span 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
}

.feature-card.feature-large .feature-icon {
  margin-bottom: 0;
}

.feature-card.feature-large h3 {
  grid-column: 1 / -1;
}

.feature-card.feature-highlight {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border-color: rgba(0, 212, 255, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: transparent;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 56px;
  filter: grayscale(100%) brightness(1.5);
  opacity: 0.7;
}

.feature-icon svg {
  width: 56px;
  height: 56px;
  stroke: var(--text-primary);
  stroke-width: 1.5;
  fill: none;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

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

.feature-metric {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.metric-value {
  display: block;
  font-size: 32px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  color: var(--primary);
}

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

.uptime-indicator {
  margin-top: 24px;
}

.uptime-bar {
  height: 8px;
  background: var(--bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.uptime-fill {
  height: 100%;
  width: var(--uptime);
  background: var(--gradient-primary);
  border-radius: 4px;
}

.uptime-indicator span {
  font-size: 14px;
  color: var(--text-muted);
  font-family: 'Fira Code', monospace;
}

/* Feature List and Stats */
.feature-list {
  list-style: none;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

.feature-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: bold;
}

.feature-stats {
  display: flex;
  gap: 24px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.mini-stat {
  text-align: center;
}

.mini-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Fira Code', monospace;
}

.mini-label {
  font-size: 12px;
  color: var(--text-muted);
}

.app-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--bg-tertiary);
  border-radius: 8px;
  font-size: 20px;
}

.app-icon:last-child {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

/* Feature Card CTA Buttons */
.feature-card .btn {
  margin-top: 20px;
}

/* Features Section CTA */
.features-cta {
  margin-top: 80px;
  padding: 60px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  text-align: center;
}

.features-cta h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.features-cta p {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 30px;
}

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

/* How It Works Section */
.how-it-works {
  padding: 120px 24px;
  background: var(--bg-primary);
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 100%;
  margin: 0 auto 60px;
}

.step-card {
  flex: 1;
  max-width: 420px;
  padding: 40px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition-normal);
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.step-number {
  font-size: 64px;
  font-weight: 800;
  font-family: 'Work Sans', sans-serif;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  opacity: 0.8;
}

.step-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
}

.step-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.step-time {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.time-icon {
  font-size: 16px;
}

.step-connector {
  width: 80px;
  display: flex;
  align-items: center;
  padding-top: 60px;
}

.step-connector svg {
  width: 100%;
}

.migration-cta {
  max-width: 1000px;
  margin: 0 auto;
}

.migration-content {
  padding: 40px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border: 1px solid var(--primary);
  border-radius: var(--radius-xl);
  text-align: center;
}

.migration-content h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.migration-content p {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* Pricing Section */
.pricing {
  padding: 120px 24px;
  background: var(--bg-secondary);
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}

.toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

.toggle-switch {
  width: 56px;
  height: 32px;
  background: var(--bg-tertiary);
  border: 1px solid var(--border-color);
  border-radius: 100px;
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
}

.toggle-slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  background: var(--gradient-primary);
  border-radius: 50%;
  transition: var(--transition-fast);
}

.toggle-switch.active .toggle-slider {
  left: calc(100% - 26px);
}

.save-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(16, 185, 129, 0.2);
  color: var(--success);
  font-size: 12px;
  font-weight: 600;
  border-radius: 4px;
  margin-left: 8px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  margin: 0 auto;
}

.pricing-card {
  padding: 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  position: relative;
}

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

.pricing-card.popular {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border-color: var(--primary);
  transform: scale(1.05);
}

.pricing-card.popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 100px;
}

.plan-header {
  margin-bottom: 24px;
}

.plan-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-desc {
  font-size: 14px;
  color: var(--text-muted);
}

.plan-price {
  margin-bottom: 32px;
}

.plan-price .price-from {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.plan-price .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
  vertical-align: top;
}

.plan-price .amount {
  font-size: 52px;
  font-weight: 800;
  font-family: 'Fira Code', monospace;
  line-height: 1;
}

.plan-price .period {
  font-size: 16px;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  margin-bottom: 32px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 15px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.plan-features li:last-child {
  border-bottom: none;
}

.plan-features .check {
  color: var(--success);
  font-weight: bold;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-muted);
}

/* Why Australia Section */
.why-australia {
  padding: 120px 24px;
  overflow: hidden;
}

.australia-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.australia-content .section-tag {
  display: inline-block;
  margin-bottom: 16px;
}

.australia-content .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.australia-content .section-intro {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
  line-height: 1.7;
}

.australia-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.benefit-item:hover {
  border-color: var(--primary);
  transform: translateX(8px);
}

.benefit-icon-wrap {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  font-size: 24px;
  flex-shrink: 0;
}

.benefit-content h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit-content > p {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  line-height: 1.6;
}

.benefit-metric {
  margin-top: 8px;
}

.metric-bar {
  display: block;
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  margin-bottom: 6px;
}

.metric-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--width);
  background: var(--gradient-primary);
  border-radius: 3px;
  animation: fillBar 2s ease-out forwards;
}

@keyframes fillBar {
  from { width: 0; }
  to { width: var(--width); }
}

.metric-text {
  font-size: 11px;
  color: var(--text-muted);
  font-family: 'Fira Code', monospace;
}

/* Network Map */
.australia-map-wrap {
  position: sticky;
  top: 100px;
  margin-top: 250px;
}

.network-map {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.map-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 0 20px 0;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.live-indicator {
  width: 10px;
  height: 10px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-live 2s ease-in-out infinite;
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
}

.map-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.australia-map-img {
  width: 100%;
  height: auto;
  display: block;
}

.network-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.network-overlay .city-node {
  pointer-events: auto;
  cursor: pointer;
}

.network-overlay text {
  font-family: 'Poppins', sans-serif;
}

.network-line {
  stroke-dasharray: 10, 5;
  animation: dash 15s linear infinite;
}

@keyframes dash {
  to {
    stroke-dashoffset: -300;
  }
}

.data-packet {
  filter: drop-shadow(0 0 8px #00d4ff);
}

.city-label {
  font-family: 'Poppins', sans-serif;
}

.city-label-main {
  font-family: 'Work Sans', sans-serif;
  letter-spacing: 1px;
}

.city-label-sub {
  font-family: 'Fira Code', monospace;
  letter-spacing: 0.5px;
}

.latency-text {
  font-family: 'Fira Code', monospace;
}

.node-core {
  transition: var(--transition-fast);
}

.city-node:hover .node-core {
  filter: drop-shadow(0 0 12px currentColor);
}

/* Network Stats Bar */
.network-stats-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 30px 40px;
  margin-top: 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
}

.network-stats-bar .stat-item {
  text-align: center;
}

.network-stats-bar .stat-value {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
}

.network-stats-bar .stat-label {
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.network-stats-bar .stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border-color);
}

/* Legacy stat cards - keep for other sections */
.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 30px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.stat-card:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.stat-icon {
  font-size: 28px;
}

.stat-info {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 28px;
  font-weight: 800;
  font-family: 'JetBrains Mono', monospace;
  color: var(--primary);
  line-height: 1;
}

.stat-unit {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
}

.stat-name {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

/* Australia Benefits Grid */
.australia-benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.benefit-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.benefit-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lg);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon-wrap {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  font-size: 28px;
  margin-bottom: 20px;
}

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

.benefit-card > p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.benefit-metric {
  margin-top: auto;
}

.metric-bar {
  display: block;
  height: 6px;
  background: var(--bg-tertiary);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
  margin-bottom: 8px;
}

.metric-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--width);
  background: var(--gradient-primary);
  border-radius: 3px;
  animation: fillBar 2s ease-out forwards;
}

@keyframes fillBar {
  from { width: 0; }
  to { width: var(--width); }
}

.metric-text {
  font-size: 12px;
  color: var(--text-muted);
  font-family: 'JetBrains Mono', monospace;
}

/* Testimonials */
.testimonials {
  padding: 120px 24px;
  background: var(--bg-secondary);
}

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

.testimonial-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: var(--transition-normal);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
}

.testimonial-content {
  margin-bottom: 24px;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-secondary);
  font-style: italic;
}

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

.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  font-size: 16px;
}

.author-info strong {
  display: block;
  font-size: 15px;
}

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

/* CTA Section */
.cta-section {
  padding: 120px 24px;
  text-align: center;
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.cta-content p {
  font-size: 18px;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

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

/* =====================================================
   PARTNER OFFER SECTION - Premium Design
   ===================================================== */
.partner-offer-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.partner-offer-card {
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 60px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  overflow: visible;
}

.partner-offer-card::before,
.partner-offer-card::after {
  display: none;
}

.partner-content {
  position: relative;
  z-index: 2;
}

.partner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.3) 0%, rgba(6, 182, 212, 0.3) 100%);
  border: 1px solid rgba(139, 92, 246, 0.5);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary);
  margin-bottom: 24px;
}

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

.partner-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}

.partner-content h2 .gradient-text {
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.partner-content > p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.partner-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.partner-service {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(139, 92, 246, 0.1);
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-fast);
}

.partner-service:hover {
  background: rgba(139, 92, 246, 0.2);
  border-color: rgba(139, 92, 246, 0.4);
  transform: translateX(4px);
}

.partner-service svg {
  width: 20px;
  height: 20px;
  color: #8b5cf6;
  flex-shrink: 0;
}

.partner-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.partner-cta .btn-partner {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: var(--transition-normal);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.4);
}

.partner-cta .btn-partner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5);
}

.partner-cta .btn-partner svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.partner-cta .btn-partner:hover svg {
  transform: translateX(4px);
}

.partner-discount {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius-md);
  color: var(--success);
  font-size: 14px;
  font-weight: 600;
}

.partner-discount svg {
  width: 18px;
  height: 18px;
}

.partner-visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.partner-logo-container,
.partner-visual .partner-logo-container,
.partner-offer-card .partner-logo-container {
  position: relative;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.partner-logo-container:hover {
  background: transparent !important;
}

.partner-logo-link {
  display: block;
  transition: var(--transition-normal);
  background: transparent !important;
  position: relative;
  z-index: 2;
}

.partner-logo-link:hover {
  transform: translateY(-3px);
}

.partner-logo {
  max-width: 550px;
  width: 100%;
  height: auto;
  display: block;
  background: transparent !important;
  border: none !important;
  outline: none !important;
}

/* Glowing orb that follows mouse */
.partner-glow-orb {
  position: absolute;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(circle at center, 
    rgba(139, 92, 246, 0.8) 0%, 
    rgba(6, 182, 212, 0.6) 30%, 
    rgba(139, 92, 246, 0.3) 50%,
    transparent 70%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  filter: blur(40px);
  transition: opacity 0.5s ease-out;
  transform: translate(-50%, -50%);
  animation: orbColorShift 4s ease-in-out infinite;
}

@keyframes orbColorShift {
  0%, 100% {
    background: radial-gradient(circle at center, 
      rgba(139, 92, 246, 0.8) 0%, 
      rgba(6, 182, 212, 0.5) 30%, 
      rgba(139, 92, 246, 0.2) 50%,
      transparent 70%);
    filter: blur(40px);
  }
  25% {
    background: radial-gradient(circle at center, 
      rgba(6, 182, 212, 0.8) 0%, 
      rgba(16, 185, 129, 0.5) 30%, 
      rgba(6, 182, 212, 0.2) 50%,
      transparent 70%);
    filter: blur(35px);
  }
  50% {
    background: radial-gradient(circle at center, 
      rgba(16, 185, 129, 0.8) 0%, 
      rgba(139, 92, 246, 0.5) 30%, 
      rgba(16, 185, 129, 0.2) 50%,
      transparent 70%);
    filter: blur(45px);
  }
  75% {
    background: radial-gradient(circle at center, 
      rgba(255, 107, 107, 0.7) 0%, 
      rgba(139, 92, 246, 0.5) 30%, 
      rgba(255, 107, 107, 0.2) 50%,
      transparent 70%);
    filter: blur(38px);
  }
}

.partner-visual {
  position: relative;
  overflow: visible;
}

/* =====================================================
   MANAGED HOSTING UPSELL SECTION
   ===================================================== */
.managed-hosting-section {
  padding: 100px 0;
  position: relative;
}

.managed-hosting-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.managed-content h2 {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.managed-content > p {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 32px;
}

.managed-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 32px;
}

.managed-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.managed-feature:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--primary);
  transform: translateX(4px);
}

.managed-feature svg {
  width: 24px;
  height: 24px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.managed-feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
}

.managed-feature-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.managed-pricing {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.managed-pricing h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.managed-pricing > p {
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-toggle-managed {
  display: flex;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 24px;
}

.pricing-toggle-managed button {
  flex: 1;
  padding: 12px 20px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.pricing-toggle-managed button.active {
  background: var(--primary);
  color: white;
}

.managed-price-display {
  text-align: center;
  margin-bottom: 24px;
}

.managed-price {
  font-size: 56px;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.managed-price sup {
  font-size: 24px;
  vertical-align: super;
  color: var(--text-secondary);
}

.managed-price sub {
  font-size: 18px;
  color: var(--text-muted);
}

.managed-price-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 8px;
}

.managed-price-features {
  list-style: none;
  margin-bottom: 24px;
}

.managed-price-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 15px;
}

.managed-price-features li:last-child {
  border-bottom: none;
}

.managed-price-features li svg {
  width: 20px;
  height: 20px;
  color: var(--success);
  flex-shrink: 0;
}

.managed-cta {
  text-align: center;
}

.managed-cta .btn {
  width: 100%;
  padding: 16px 32px;
  font-size: 16px;
}

@media (max-width: 900px) {
  .managed-hosting-card {
    grid-template-columns: 1fr;
    padding: 40px 24px;
  }
  
  .managed-features {
    grid-template-columns: 1fr;
  }
}

.partner-logo.logo-light {
  display: block;
}

.partner-logo.logo-dark {
  display: none;
}

[data-theme="light"] .partner-logo.logo-light {
  display: none;
}

[data-theme="light"] .partner-logo.logo-dark {
  display: block;
}

.partner-stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
}

.partner-stat {
  text-align: center;
}

.partner-stat-value {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  font-family: 'Fira Code', monospace;
}

.partner-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Light theme adjustments */
[data-theme="light"] .partner-offer-card {
  background: transparent;
  border: none;
}

[data-theme="light"] .partner-service {
  background: rgba(139, 92, 246, 0.08);
  border-color: rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .partner-logo-container {
  background: transparent;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .partner-offer-card {
    grid-template-columns: 1fr;
    padding: 40px 32px;
    gap: 40px;
    text-align: center;
  }

  .partner-services {
    grid-template-columns: 1fr;
  }

  .partner-cta {
    justify-content: center;
  }

  .partner-visual {
    order: -1;
  }

  .partner-stats {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .partner-content h2 {
    font-size: 28px;
  }

  .partner-logo {
    max-width: 200px;
  }

  .partner-stats {
    gap: 20px;
  }

  .partner-stat-value {
    font-size: 22px;
  }
}

/* ====================================
   FAQ Accordion Styles
   ==================================== */

.faq-section {
  padding: 100px 0;
  background: rgba(0, 0, 0, 0.1);
}

:root[data-theme="light"] .faq-section {
  background: rgba(0, 0, 0, 0.02);
}

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

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

:root[data-theme="light"] .faq-item {
  border-color: rgba(0, 0, 0, 0.08);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 0;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}

.faq-question span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.faq-icon {
  width: 24px;
  height: 24px;
  stroke: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

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

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

.faq-answer p {
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Migration Section Styles */
.migration-section {
  padding: 80px 0;
}

.migration-card {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.08), rgba(100, 100, 255, 0.04));
  border: 1px solid rgba(0, 180, 255, 0.2);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
}

:root[data-theme="light"] .migration-card {
  background: linear-gradient(135deg, rgba(0, 180, 255, 0.06), rgba(100, 100, 255, 0.03));
}

.migration-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 40px;
}

.migration-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 180, 255, 0.1);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.migration-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--primary);
}

.migration-text {
  text-align: left;
}

.migration-badge {
  display: inline-block;
  background: linear-gradient(135deg, #00b4ff, #0066ff);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.migration-text h3 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.migration-text p {
  color: var(--text-muted);
  max-width: 500px;
}

.migration-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.migration-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 16px 20px;
}

:root[data-theme="light"] .migration-step {
  background: rgba(255, 255, 255, 0.8);
  border-color: rgba(0, 0, 0, 0.08);
}

.migration-step-num {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 0.9rem;
}

.migration-step-info {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.migration-step-title {
  font-weight: 600;
  font-size: 0.95rem;
}

.migration-step-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.migration-arrow {
  color: var(--text-muted);
  font-size: 1.25rem;
}

/* FAQ Categories for FAQ Page */
.faq-section-full {
  padding: 60px 0 100px;
}

.faq-category {
  margin-bottom: 60px;
}

.faq-category:last-child {
  margin-bottom: 0;
}

.faq-category h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

@media (max-width: 768px) {
  .migration-header {
    flex-direction: column;
    text-align: center;
  }
  
  .migration-text {
    text-align: center;
  }
  
  .migration-steps {
    flex-direction: column;
    gap: 12px;
  }
  
  .migration-arrow {
    transform: rotate(90deg);
  }
  
  .migration-step {
    width: 100%;
    justify-content: center;
  }
  
  .faq-question span {
    font-size: 1rem;
  }
}

/* Footer */
.main-footer {
  padding: 80px 24px 40px;
  background: var(--bg-secondary);
}

/* Footer Logo */
.footer-logo {
  display: inline-block;
}

.footer-logo img {
  height: 40px;
  width: auto;
}

.footer-logo .logo-light {
  display: block;
}

.footer-logo .logo-dark {
  display: none;
}

[data-theme="light"] .footer-logo .logo-light {
  display: none;
}

[data-theme="light"] .footer-logo .logo-dark {
  display: block;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 15px;
  margin: 16px 0 24px;
  max-width: 280px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary);
  color: #fff;
}

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

.footer-links h4 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  color: var(--text-muted);
}

.footer-links ul {
  list-style: none;
}

.footer-links a {
  display: block;
  padding: 8px 0;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

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

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

.footer-legal a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition-fast);
}

.footer-legal a:hover {
  color: var(--text-primary);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 120px;
  }
  
  .hero-content {
    order: 1;
  }
  
  .hero-subtitle {
    margin: 0 auto 32px;
  }
  
  .hero-highlights {
    justify-content: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-stats {
    justify-content: center;
  }
  
  .hero-visual {
    order: 2;
    margin-top: 40px;
  }
  
  .server-card {
    transform: none;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .floating-badge {
    display: none;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card.feature-large {
    grid-column: span 1;
    display: block;
  }
  
  .steps-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .step-connector {
    display: none;
  }
  
  .step-card {
    max-width: 100%;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .australia-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .australia-content .section-title {
    text-align: center;
  }
  
  .australia-content .section-intro {
    text-align: center;
  }
  
  .australia-map-wrap {
    position: static;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 1300px) {
  .nav-menu {
    display: none;
  }
  
  .nav-actions .btn {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  /* Mobile Menu Open State */
  .nav-menu.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    padding: 16px;
    z-index: 1000;
    gap: 0;
  }
  
  .nav-menu.mobile-open > li {
    width: 100%;
  }
  
  .nav-menu.mobile-open > li > a {
    padding: 14px 16px;
    border-radius: var(--radius-sm);
  }
  
  .nav-menu.mobile-open .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--bg-secondary);
    margin: 8px 0;
    border-radius: var(--radius-md);
    padding: 8px;
  }
  
  /* Hide dropdowns by default on mobile */
  .nav-menu.mobile-open .dropdown-menu {
    display: none;
  }
  
  /* Show dropdown when parent has dropdown-open class */
  .nav-menu.mobile-open .has-dropdown.dropdown-open .dropdown-menu {
    display: block;
  }
  
  /* Dropdown arrow indicator */
  .nav-menu.mobile-open .has-dropdown > a::after {
    content: '▾';
    margin-left: 8px;
    transition: transform 0.2s ease;
  }
  
  .nav-menu.mobile-open .has-dropdown.dropdown-open > a::after {
    transform: rotate(180deg);
  }
  
  /* Mobile Menu Action Buttons */
  .mobile-menu-actions {
    display: flex !important;
    padding: 16px;
    margin-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .mobile-menu-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
    background: transparent;
    border: 2px solid #009AFF;
    color: #009AFF;
  }
  
  .mobile-menu-actions .btn:hover {
    background: #009AFF;
    color: white;
  }
  
  /* Hamburger Animation */
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-highlights {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-divider {
    width: 50px;
    height: 1px;
  }
  
  .trust-badges {
    gap: 24px;
  }
  
  .feature-stats {
    flex-direction: column;
    gap: 16px;
  }
  
  .benefit-item {
    flex-direction: column;
    text-align: center;
  }
  
  .network-stats-bar {
    flex-direction: column;
    gap: 20px;
  }
  
  .network-stats-bar .stat-divider {
    width: 50px;
    height: 1px;
  }
  
  .migration-content {
    padding: 30px 20px;
  }
  
  .migration-content h3 {
    font-size: 22px;
  }
  
  .cta-actions {
    flex-direction: column;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* =====================================================
   VPS BUILDER STEPS
   ===================================================== */

.builder-step {
  margin-bottom: 48px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
}

.step-header h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.step-description {
  width: 100%;
  margin: 8px 0 0 56px;
  color: var(--text-secondary);
  font-size: 15px;
}

/* =====================================================
   VPS CONFIG LAYOUT (Two Columns)
   ===================================================== */

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

.vps-config-main {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Power Selector Section */
.vps-power-selector {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Power Slider */
.power-slider-wrap {
  position: relative;
}

.slider-labels-top {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.power-track {
  position: relative;
  height: 12px;
  background: var(--bg-card);
  border-radius: 6px;
  border: 2px solid var(--border-color);
  overflow: visible;
}

.power-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, 
    #3b82f6 0%, 
    #06b6d4 20%, 
    #22c55e 40%, 
    #f59e0b 60%, 
    #ef4444 80%, 
    #9333ea 100%
  );
  border-radius: 4px;
  transition: width 0.3s ease;
}

.power-slider {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 30px;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  z-index: 10;
}

.power-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3), 0 0 0 3px var(--primary);
  transition: all 0.2s ease;
}

.power-slider::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.power-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid var(--primary);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.slider-prices {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-secondary);
  margin-top: 12px;
}

/* Power Plan Display - Clean Layout with Glow */
.power-plan-display {
  background: transparent;
  border: none;
  padding: 20px 0;
  position: relative;
  overflow: visible;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.power-glow {
  position: absolute;
  top: 50%;
  right: 15%;
  transform: translate(50%, -50%);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(0, 154, 255, 0.15) 0%, transparent 60%);
  border-radius: 50%;
  transition: all 0.4s ease;
  pointer-events: none;
  filter: blur(20px);
}

/* Header Row: Plan Name + Price */
.plan-header-row {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  margin-bottom: 12px;
  width: 100%;
}

.power-name {
  font-size: 36px;
  font-weight: 900;
  color: var(--text-primary);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 4px;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.power-price-display {
  display: flex;
  align-items: baseline;
  gap: 2px;
  flex-shrink: 0;
}

.price-dollar {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-secondary);
}

.price-value {
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  transition: all 0.3s ease;
}

.price-mo {
  font-size: 18px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Content Row: Two Columns */
.plan-content-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  align-items: center;
}

/* Left Side - Plan Info */
.plan-info-left {
  position: relative;
  z-index: 2;
}

.power-description {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 14px;
  line-height: 1.5;
  opacity: 0.9;
}

.power-specs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}

.spec-block {
  background: rgba(255,255,255,0.03);
  border: none;
  border-radius: var(--radius-sm);
  padding: 8px 4px;
  text-align: center;
  transition: all 0.3s ease;
}

.spec-block .spec-value {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--text-primary);
  margin-bottom: 0;
  line-height: 1.1;
  transition: all 0.3s ease;
}

.spec-block .spec-label {
  font-size: 9px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  opacity: 0.8;
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.plan-features li {
  font-size: 10px;
  color: var(--text-secondary);
  background: rgba(255,255,255,0.05);
  padding: 4px 8px;
  border-radius: 10px;
}

/* Right Side - Animated Icon */
.plan-icon-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  min-height: 220px;
}

.plan-icon-container {
  position: relative;
  width: 220px;
  height: 220px;
}

.animated-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

/* Show active icon based on data-power */
.power-plan-display[data-power="0"] .icon-starter,
.power-plan-display[data-power="1"] .icon-builder,
.power-plan-display[data-power="2"] .icon-growth,
.power-plan-display[data-power="3"] .icon-business,
.power-plan-display[data-power="4"] .icon-power,
.power-plan-display[data-power="5"] .icon-enterprise {
  opacity: 1;
}

/* ===== STARTER ICON: Server Rack to Globe (Bidirectional) ===== */
.icon-starter .server-rack {
  position: relative;
  width: 200px;
  height: 140px;
  transform: scale(1.5);
}

/* Server Rack - Left */
.icon-starter .server-unit {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 55px;
  background: linear-gradient(180deg, #4a5568, #2d3748);
  border-radius: 4px;
  border: 2px solid #1a202c;
  box-shadow: 0 8px 30px rgba(0,0,0,0.5), 0 0 15px rgba(59, 130, 246, 0.2);
  display: flex;
  flex-direction: column;
  padding: 5px;
  gap: 3px;
}

.icon-starter .server-lights,
.icon-starter .server-slots {
  width: 100%;
  height: 12px;
  background: #1a202c;
  border-radius: 2px;
  display: flex;
  align-items: center;
  padding-left: 5px;
  gap: 4px;
}

.icon-starter .led {
  width: 4px;
  height: 4px;
  border-radius: 50%;
}

.icon-starter .led-1 { 
  background: #3b82f6; 
  box-shadow: 0 0 6px #3b82f6;
  animation: led-blink 0.5s ease-in-out infinite;
}
.icon-starter .led-2 { 
  background: #48bb78; 
  box-shadow: 0 0 6px #48bb78;
  animation: led-blink 0.5s ease-in-out infinite 0.15s;
}
.icon-starter .led-3 { 
  background: #3b82f6;
  box-shadow: 0 0 6px #3b82f6;
  animation: led-blink 0.5s ease-in-out infinite 0.3s;
}

@keyframes led-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.25; }
}

.icon-starter .server-slots span {
  width: 4px;
  height: 4px;
  background: #48bb78;
  border-radius: 50%;
  box-shadow: 0 0 6px #48bb78;
  animation: led-blink 0.5s ease-in-out infinite;
}

.icon-starter .server-slots span:nth-child(2) { 
  background: #3b82f6;
  box-shadow: 0 0 6px #3b82f6;
  animation-delay: 0.2s; 
}
.icon-starter .server-slots span:nth-child(3) { animation-delay: 0.4s; }

/* Globe - Right */
.icon-starter .data-stream {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 70px;
  height: 70px;
  border: 2px solid #3b82f6;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, rgba(59, 130, 246, 0.35), rgba(30, 64, 175, 0.15) 50%, transparent 75%);
  box-shadow: 0 0 25px rgba(59, 130, 246, 0.4), inset 0 0 15px rgba(59, 130, 246, 0.1);
  animation: globe-pulse 3s ease-in-out infinite;
}

@keyframes globe-pulse {
  0%, 100% { box-shadow: 0 0 25px rgba(59, 130, 246, 0.4), inset 0 0 15px rgba(59, 130, 246, 0.1); }
  50% { box-shadow: 0 0 35px rgba(59, 130, 246, 0.6), inset 0 0 20px rgba(59, 130, 246, 0.2); }
}

/* Globe horizontal line (equator) */
.icon-starter .data-stream::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 6px;
  right: 6px;
  height: 1px;
  background: rgba(59, 130, 246, 0.6);
  transform: translateY(-50%);
}

/* Globe vertical curve (longitude) */
.icon-starter .data-stream::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 6px;
  bottom: 6px;
  width: 35px;
  border: 1px solid rgba(59, 130, 246, 0.5);
  border-radius: 50%;
  transform: translateX(-50%);
  background: transparent;
}

/* Data packets - TO globe (blue) */
.icon-starter .data-bit {
  position: absolute;
  width: 7px;
  height: 7px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 12px #3b82f6;
  top: 35%;
  animation: data-to-globe 1s linear infinite;
}

.icon-starter .data-bit:nth-child(2) {
  top: 50%;
  animation-delay: 0.33s;
  width: 6px;
  height: 6px;
}

.icon-starter .data-bit:nth-child(3) {
  top: 65%;
  animation-delay: 0.66s;
  width: 6px;
  height: 6px;
  background: #22c55e;
  box-shadow: 0 0 12px #22c55e;
  animation-name: data-from-globe;
}

@keyframes data-to-globe {
  0% { left: 60px; opacity: 0; transform: scale(0.8); }
  20% { opacity: 1; transform: scale(1); }
  80% { opacity: 1; transform: scale(1); }
  100% { left: 120px; opacity: 0; transform: scale(0.6); }
}

@keyframes data-from-globe {
  0% { left: 120px; opacity: 0; transform: scale(0.6); }
  20% { opacity: 1; transform: scale(1); }
  80% { opacity: 1; transform: scale(1); }
  100% { left: 60px; opacity: 0; transform: scale(0.8); }
}

/* ===== BUILDER ICON: Server Rack with Floating App Windows ===== */
.icon-builder .node-network {
  position: relative;
  width: 140px;
  height: 140px;
  transform: scale(1.5);
}

/* Server Rack - Center */
.icon-builder .node-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 70px;
  background: linear-gradient(180deg, #4a5568, #2d3748);
  border-radius: 4px;
  border: 2px solid #1a202c;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  z-index: 10;
}

.icon-builder .node-center::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 6px;
  right: 6px;
  height: 8px;
  background: #1a202c;
  border-radius: 2px;
}

.icon-builder .node-center::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 8px;
  width: 6px;
  height: 6px;
  background: #06b6d4;
  border-radius: 50%;
  box-shadow: 0 0 8px #06b6d4, 12px 0 0 #48bb78, 12px 0 8px #48bb78;
  animation: server-blink 0.8s ease-in-out infinite;
}

@keyframes server-blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Floating App Windows - Perspective Circle */
.icon-builder .node {
  position: absolute;
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  border: 2px solid #06b6d4;
  border-radius: 4px;
  box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
  animation: float-orbit 4s ease-in-out infinite;
}

/* Window title bar effect */
.icon-builder .node::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 4px;
  background: linear-gradient(90deg, #ef4444, #f59e0b, #22c55e);
  border-radius: 2px 2px 0 0;
}

/* Top windows - smaller (further away) */
.icon-builder .node-1 { 
  width: 22px; 
  height: 18px; 
  top: 5px; 
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.7;
  animation-delay: 0s;
}

/* Side windows - medium */
.icon-builder .node-2 { 
  width: 28px; 
  height: 22px; 
  top: 35px; 
  left: 8px;
  opacity: 0.85;
  animation-delay: 1s;
}

.icon-builder .node-3 { 
  width: 28px; 
  height: 22px; 
  top: 35px; 
  right: 8px;
  opacity: 0.85;
  animation-delay: 2s;
}

/* Bottom windows - larger (closer) */
.icon-builder .pulse-1 {
  position: absolute;
  width: 32px;
  height: 26px;
  bottom: 15px;
  left: 15px;
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  border: 2px solid #06b6d4;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
  animation: float-orbit 4s ease-in-out infinite 1.5s;
}

.icon-builder .pulse-1::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 5px;
  background: linear-gradient(90deg, #ef4444, #f59e0b, #22c55e);
  border-radius: 2px 2px 0 0;
}

.icon-builder .pulse-2 {
  position: absolute;
  width: 32px;
  height: 26px;
  bottom: 15px;
  right: 15px;
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  border: 2px solid #06b6d4;
  border-radius: 4px;
  box-shadow: 0 0 20px rgba(6, 182, 212, 0.5);
  animation: float-orbit 4s ease-in-out infinite 2.5s;
}

.icon-builder .pulse-2::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  height: 5px;
  background: linear-gradient(90deg, #ef4444, #f59e0b, #22c55e);
  border-radius: 2px 2px 0 0;
}

.icon-builder .pulse-3 {
  display: none;
}

@keyframes float-orbit {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-5px) scale(1.05); }
}

/* Pulsing glow effect */
.icon-builder .node-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border: 2px solid rgba(6, 182, 212, 0.3);
  border-radius: 50%;
  animation: builder-pulse 2s ease-out infinite;
}

@keyframes builder-pulse {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

.icon-builder .line {
  display: none;
}

/* ===== GROWTH ICON: Server Rack with Fast Data Pings ===== */
.icon-growth .growth-visual {
  position: relative;
  width: 160px;
  height: 130px;
  transform: scale(2);
}

/* Server Rack - Center */
.icon-growth .node-cluster {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 80px;
  background: linear-gradient(180deg, #4a5568, #2d3748);
  border-radius: 5px;
  border: 2px solid #1a202c;
  box-shadow: 0 10px 35px rgba(0,0,0,0.5);
  z-index: 10;
}

/* Server slots */
.icon-growth .cluster-node {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 12px;
  background: #1a202c;
  border-radius: 2px;
  border: none;
  box-shadow: none;
}

.icon-growth .n1 { top: 8px; }
.icon-growth .n2 { top: 24px; }
.icon-growth .n3 { top: 40px; }
.icon-growth .n4 { top: 56px; }
.icon-growth .n5 { display: none; }

/* LED lights on each slot */
.icon-growth .n1::before,
.icon-growth .n2::before,
.icon-growth .n3::before,
.icon-growth .n4::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 4px;
  width: 5px;
  height: 5px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e, 10px 0 0 #22c55e, 10px 0 8px #22c55e;
  animation: growth-led 0.4s ease-in-out infinite;
}

.icon-growth .n2::before { animation-delay: 0.1s; }
.icon-growth .n3::before { animation-delay: 0.2s; }
.icon-growth .n4::before { animation-delay: 0.3s; }

@keyframes growth-led {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.icon-growth .cluster-core {
  display: none;
}

/* Fast Data Pings - shooting out in all directions */
.icon-growth .growth-chart {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Data ping particles */
.icon-growth .chart-bar {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 12px #22c55e, 0 0 25px rgba(34, 197, 94, 0.5);
}

.icon-growth .b1 {
  top: 50%;
  left: 50%;
  animation: ping-right 0.8s ease-out infinite;
}

.icon-growth .b2 {
  top: 50%;
  left: 50%;
  animation: ping-left 0.8s ease-out infinite 0.2s;
}

.icon-growth .b3 {
  top: 50%;
  left: 50%;
  animation: ping-up 0.8s ease-out infinite 0.4s;
}

.icon-growth .b4 {
  top: 50%;
  left: 50%;
  animation: ping-down 0.8s ease-out infinite 0.6s;
}

@keyframes ping-right {
  0% { transform: translate(25px, -50%) scale(1); opacity: 1; }
  100% { transform: translate(75px, -50%) scale(0.3); opacity: 0; }
}

@keyframes ping-left {
  0% { transform: translate(-25px, -50%) scale(1); opacity: 1; }
  100% { transform: translate(-75px, -50%) scale(0.3); opacity: 0; }
}

@keyframes ping-up {
  0% { transform: translate(-50%, -35px) scale(1); opacity: 1; }
  100% { transform: translate(-50%, -70px) scale(0.3); opacity: 0; }
}

@keyframes ping-down {
  0% { transform: translate(-50%, 15px) scale(1); opacity: 1; }
  100% { transform: translate(-50%, 50px) scale(0.3); opacity: 0; }
}

/* Additional diagonal pings */
.icon-growth .chart-arrow-up {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 10px #4ade80;
  animation: ping-diagonal1 0.8s ease-out infinite 0.1s;
}

.icon-growth .chart-arrow-up::before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ade80;
  animation: ping-diagonal2 0.8s ease-out infinite 0.3s;
}

.icon-growth .chart-arrow-up::after {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #86efac;
  border-radius: 50%;
  box-shadow: 0 0 10px #86efac;
  animation: ping-diagonal3 0.8s ease-out infinite 0.5s;
}

@keyframes ping-diagonal1 {
  0% { transform: translate(20px, -30px) scale(1); opacity: 1; }
  100% { transform: translate(55px, -55px) scale(0.3); opacity: 0; }
}

@keyframes ping-diagonal2 {
  0% { transform: translate(-20px, -30px) scale(1); opacity: 1; }
  100% { transform: translate(-55px, -55px) scale(0.3); opacity: 0; }
}

@keyframes ping-diagonal3 {
  0% { transform: translate(20px, 10px) scale(1); opacity: 1; }
  100% { transform: translate(55px, 35px) scale(0.3); opacity: 0; }
}

/* ===== BUSINESS ICON: Laptop connected to Server Rack ===== */
.icon-business .datacenter {
  position: relative;
  width: 180px;
  height: 140px;
  transform: scale(2);
}

/* Server Rack - Right Side */
.icon-business .dc-building {
  position: absolute;
  right: 0;
  top: 10px;
}

.icon-business .dc-roof {
  display: none;
}

.icon-business .dc-body {
  width: 55px;
  height: 90px;
  background: linear-gradient(180deg, #4a5568, #2d3748);
  border-radius: 4px;
  padding: 8px 6px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid #1a202c;
}

.icon-business .dc-window-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a202c;
  border-radius: 2px;
  padding: 4px 6px;
  margin-bottom: 6px;
}

.icon-business .dc-window-row span {
  width: 6px;
  height: 6px;
  background: #48bb78;
  border-radius: 50%;
  animation: server-led 0.8s ease-in-out infinite;
  box-shadow: 0 0 6px #48bb78;
}

.icon-business .dc-window-row span:nth-child(2) { 
  background: #4299e1; 
  animation-delay: 0.2s;
  box-shadow: 0 0 6px #4299e1;
}
.icon-business .dc-window-row span:nth-child(3) { 
  background: #48bb78;
  animation-delay: 0.4s; 
  box-shadow: 0 0 6px #48bb78;
}

@keyframes server-led {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Laptop - Left Side */
.icon-business .dc-servers {
  position: absolute;
  left: 0;
  bottom: 10px;
}

.icon-business .mini-server {
  display: none;
}

.icon-business .mini-server.s1 {
  display: block;
  width: 60px;
  height: 40px;
  background: linear-gradient(180deg, #374151, #1f2937);
  border-radius: 4px 4px 0 0;
  position: relative;
  border: 2px solid #4b5563;
  border-bottom: none;
}

/* Laptop screen */
.icon-business .mini-server.s1::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 4px;
  background: linear-gradient(135deg, #1e3a5f, #0f172a);
  border-radius: 2px;
  box-shadow: inset 0 0 10px rgba(66, 153, 225, 0.3);
}

/* Laptop base/keyboard */
.icon-business .mini-server.s1::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: -4px;
  width: 68px;
  height: 8px;
  background: linear-gradient(180deg, #4b5563, #374151);
  border-radius: 0 0 4px 4px;
  border: 2px solid #4b5563;
  border-top: 1px solid #6b7280;
}

.icon-business .s2, .icon-business .s3 {
  display: none;
}

/* Data Flow Lines */
.icon-business .dc-signal {
  position: absolute;
  top: 50%;
  left: 65px;
  transform: translateY(-50%);
  width: 50px;
  height: 40px;
}

.icon-business .signal-ring {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #f59e0b;
  border-radius: 50%;
  border: none;
  box-shadow: 0 0 10px #f59e0b, 0 0 20px rgba(245, 158, 11, 0.5);
  animation: data-packet 1.5s ease-in-out infinite;
}

.icon-business .r1 {
  top: 5px;
  animation-delay: 0s;
}

.icon-business .r2 { 
  top: 15px;
  animation-delay: 0.5s; 
}

.icon-business .r3 { 
  top: 25px;
  animation-delay: 1s; 
}

@keyframes data-packet {
  0% { left: 0; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 42px; opacity: 0; }
}

/* Connection line */
.icon-business::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 60px;
  width: 55px;
  height: 2px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0.3), rgba(245, 158, 11, 0.6), rgba(245, 158, 11, 0.3));
  transform: translateY(-50%);
}

/* ===== POWER ICON: Mega Lightning Bolt ===== */
.icon-power .mega-bolt {
  position: relative;
  width: 200px;
  height: 220px;
}

.icon-power .bolt-shape {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 140px;
  animation: mega-shake 0.08s ease-in-out infinite;
}

.icon-power .bolt-shape::before {
  content: '⚡';
  filter: drop-shadow(0 0 30px #fbbf24) drop-shadow(0 0 60px #f59e0b);
}

@keyframes mega-shake {
  0%, 100% { transform: translate(-50%, -50%) rotate(-2deg) scale(1); }
  25% { transform: translate(-48%, -52%) rotate(2deg) scale(1.02); }
  50% { transform: translate(-52%, -48%) rotate(-1deg) scale(0.98); }
  75% { transform: translate(-50%, -50%) rotate(1deg) scale(1.01); }
}

.icon-power .bolt-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.4) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 0.5s ease-in-out infinite alternate;
}

@keyframes glow-pulse {
  0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  100% { transform: translate(-50%, -50%) scale(1.3); opacity: 1; }
}

.icon-power .energy-wave {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 4px solid rgba(251, 191, 36, 0.6);
  border-radius: 50%;
  animation: wave-expand 1.2s ease-out infinite;
}

.icon-power .w1 { width: 80px; height: 80px; }
.icon-power .w2 { width: 120px; height: 120px; animation-delay: 0.3s; }
.icon-power .w3 { width: 160px; height: 160px; animation-delay: 0.6s; }

@keyframes wave-expand {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1.5); opacity: 0; }
}

.icon-power .spark {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #fbbf24;
  border-radius: 50%;
  animation: spark-burst 0.6s ease-out infinite;
}

.icon-power .s1 { top: 15%; left: 25%; }
.icon-power .s2 { top: 25%; right: 20%; animation-delay: 0.1s; }
.icon-power .s3 { bottom: 30%; left: 15%; animation-delay: 0.2s; }
.icon-power .s4 { bottom: 20%; right: 25%; animation-delay: 0.3s; }
.icon-power .s5 { top: 40%; left: 10%; animation-delay: 0.4s; }

@keyframes spark-burst {
  0% { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(0) translateY(-30px); }
}

/* ===== ENTERPRISE ICON: Giant Rocket ===== */
.icon-enterprise .mega-rocket {
  position: relative;
  width: 160px;
  height: 260px;
  transform: rotate(15deg) scale(1.2);
  animation: rocket-rumble 0.06s ease-in-out infinite;
}

/* Intense background glow for Enterprise */
.icon-enterprise::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(147, 51, 234, 0.4) 0%, rgba(239, 68, 68, 0.2) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(30px);
  animation: enterprise-glow 1.5s ease-in-out infinite alternate;
}

@keyframes enterprise-glow {
  0% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

@keyframes rocket-rumble {
  0%, 100% { transform: rotate(15deg) scale(1.2) translate(0, 0); }
  25% { transform: rotate(15deg) scale(1.2) translate(-3px, 2px); }
  50% { transform: rotate(15deg) scale(1.2) translate(2px, -2px); }
  75% { transform: rotate(15deg) scale(1.2) translate(3px, 1px); }
}

.icon-enterprise .rocket-body {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.icon-enterprise .rocket-nose {
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-bottom: 50px solid #e53e3e;
  margin-left: 10px;
  filter: drop-shadow(0 -10px 20px rgba(229, 62, 62, 0.5));
}

.icon-enterprise .rocket-main {
  width: 80px;
  height: 100px;
  background: linear-gradient(180deg, #e53e3e 0%, #c53030 50%, #9b2c2c 100%);
  border-radius: 0 0 20px 20px;
  position: relative;
  box-shadow: 0 0 50px rgba(229, 62, 62, 0.8);
}

.icon-enterprise .rocket-stripe {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 8px;
  background: white;
  border-radius: 4px;
}

.icon-enterprise .rocket-window {
  position: absolute;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  background: linear-gradient(135deg, #90cdf4, #4299e1);
  border-radius: 50%;
  border: 4px solid #2b6cb0;
  box-shadow: inset 0 0 15px rgba(255,255,255,0.3);
}

.icon-enterprise .rocket-fins {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
}

.icon-enterprise .fin {
  position: absolute;
  width: 0;
  height: 0;
}

.icon-enterprise .fin-l {
  left: 0;
  border-top: 35px solid transparent;
  border-right: 25px solid #9b2c2c;
  border-bottom: 15px solid #9b2c2c;
}

.icon-enterprise .fin-r {
  right: 0;
  border-top: 35px solid transparent;
  border-left: 25px solid #9b2c2c;
  border-bottom: 15px solid #9b2c2c;
}

/* Flames - positioned at BOTTOM of rocket */
.icon-enterprise .rocket-exhaust {
  position: absolute;
  top: 150px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  align-items: flex-start;
}

.icon-enterprise .flame {
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 30%, #ea580c 60%, #dc2626 100%);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  animation: flame-dance 0.08s ease-in-out infinite alternate;
}

.icon-enterprise .f1 { width: 20px; height: 70px; }
.icon-enterprise .f2 { width: 28px; height: 100px; animation-delay: 0.03s; }
.icon-enterprise .f3 { width: 20px; height: 70px; animation-delay: 0.06s; }

.icon-enterprise .flame-core {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 10px;
  width: 18px;
  height: 60px;
  background: linear-gradient(180deg, #fff 0%, #fef3c7 50%, #fbbf24 100%);
  border-radius: 50% 50% 50% 50% / 30% 30% 70% 70%;
  animation: flame-dance 0.05s ease-in-out infinite alternate;
}

@keyframes flame-dance {
  0% { transform: scaleY(0.9) scaleX(0.95); }
  100% { transform: scaleY(1.15) scaleX(1.08); }
}

/* Smoke - below flames */
.icon-enterprise .smoke-trail {
  position: absolute;
  top: 220px;
  left: 50%;
  transform: translateX(-50%);
}

.icon-enterprise .smoke {
  position: absolute;
  background: rgba(160, 174, 192, 0.7);
  border-radius: 50%;
  animation: smoke-billow 1.2s ease-out infinite;
}

.icon-enterprise .sm1 { width: 40px; height: 40px; left: -30px; animation-delay: 0s; }
.icon-enterprise .sm2 { width: 50px; height: 50px; left: 10px; animation-delay: 0.2s; }
.icon-enterprise .sm3 { width: 35px; height: 35px; left: 50px; animation-delay: 0.4s; }
.icon-enterprise .sm4 { width: 45px; height: 45px; left: -10px; animation-delay: 0.6s; }
.icon-enterprise .sm5 { width: 30px; height: 30px; left: 70px; animation-delay: 0.8s; }

@keyframes smoke-billow {
  0% { transform: translateY(0) scale(0.3); opacity: 0.9; }
  100% { transform: translateY(80px) scale(2.5); opacity: 0; }
}

.icon-enterprise .stars {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.icon-enterprise .star {
  position: absolute;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
  animation: star-twinkle 1s ease-in-out infinite;
}

.icon-enterprise .st1 { top: 10%; left: 10%; }
.icon-enterprise .st2 { top: 30%; right: 5%; animation-delay: 0.3s; }
.icon-enterprise .st3 { bottom: 40%; left: 5%; animation-delay: 0.6s; }

@keyframes star-twinkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Power Levels - Visual Scaling with Glows */
.power-plan-display[data-power="0"] {
  transform: scale(0.96);
}
.power-plan-display[data-power="0"] .power-glow { 
  width: 180px; 
  height: 180px; 
  background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 60%);
  filter: blur(25px);
}
.power-plan-display[data-power="0"] .price-value { color: #3b82f6; }
.power-plan-display[data-power="0"] .power-name { color: #3b82f6; }
.power-plan-display[data-power="0"] .spec-block .spec-value { color: #3b82f6; }

.power-plan-display[data-power="1"] {
  transform: scale(0.98);
}
.power-plan-display[data-power="1"] .power-glow { 
  width: 220px; 
  height: 220px; 
  background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 60%);
  filter: blur(30px);
}
.power-plan-display[data-power="1"] .price-value { color: #06b6d4; }
.power-plan-display[data-power="1"] .power-name { color: #06b6d4; }
.power-plan-display[data-power="1"] .spec-block .spec-value { color: #06b6d4; }

.power-plan-display[data-power="2"] {
  transform: scale(1);
}
.power-plan-display[data-power="2"] .power-glow { 
  width: 260px; 
  height: 260px; 
  background: radial-gradient(circle, rgba(34, 197, 94, 0.35) 0%, transparent 60%);
  filter: blur(35px);
}
.power-plan-display[data-power="2"] .price-value { color: #22c55e; }
.power-plan-display[data-power="2"] .power-name { color: #22c55e; }
.power-plan-display[data-power="2"] .spec-block .spec-value { color: #22c55e; }

.power-plan-display[data-power="3"] {
  transform: scale(1.01);
}
.power-plan-display[data-power="3"] .power-glow { 
  width: 300px; 
  height: 300px; 
  background: radial-gradient(circle, rgba(245, 158, 11, 0.4) 0%, transparent 60%);
  filter: blur(40px);
}
.power-plan-display[data-power="3"] .price-value { color: #f59e0b; }
.power-plan-display[data-power="3"] .power-name { color: #f59e0b; font-size: 34px; }
.power-plan-display[data-power="3"] .spec-block .spec-value { color: #f59e0b; font-size: 30px; }

.power-plan-display[data-power="4"] {
  transform: scale(1.02);
}
.power-plan-display[data-power="4"] .power-glow { 
  width: 350px; 
  height: 350px; 
  background: radial-gradient(circle, rgba(239, 68, 68, 0.5) 0%, transparent 60%);
  filter: blur(45px);
}
.power-plan-display[data-power="4"] .price-value { color: #ef4444; font-size: 54px; }
.power-plan-display[data-power="4"] .power-name { color: #ef4444; font-size: 36px; }
.power-plan-display[data-power="4"] .spec-block .spec-value { color: #ef4444; font-size: 32px; }

.power-plan-display[data-power="5"] {
  transform: scale(1.03);
}
.power-plan-display[data-power="5"] .power-glow { 
  width: 400px; 
  height: 400px; 
  background: radial-gradient(circle, rgba(147, 51, 234, 0.6) 0%, transparent 55%);
  filter: blur(50px);
  animation: pulse-glow 2s ease-in-out infinite;
}
.power-plan-display[data-power="5"] .price-value { color: #9333ea; font-size: 58px; }
.power-plan-display[data-power="5"] .power-name { color: #9333ea; font-size: 38px; }
.power-plan-display[data-power="5"] .spec-block .spec-value { color: #9333ea; font-size: 34px; }

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: translate(50%, -50%) scale(1); }
  50% { opacity: 0.8; transform: translate(50%, -50%) scale(1.2); }
}

/* VPS Config Sidebar - Sticky */
.vps-config-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.summary-card {
  background: var(--bg-card);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all 0.3s ease;
}

/* Summary Plan Header */
.summary-plan-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

.summary-plan-icon {
  font-size: 32px;
}

.summary-plan-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  margin: 0 0 4px;
}

.summary-plan-specs {
  font-size: 12px;
  color: var(--text-secondary);
}

/* Add-ons Section */
.summary-addons {
  margin-bottom: 16px;
}

.summary-addons h4 {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}

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

.addon-item {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
}

.addon-item span:last-child {
  font-weight: 600;
  color: var(--text-primary);
}

/* Summary Breakdown */
.summary-breakdown {
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.breakdown-item:last-child {
  border-bottom: none;
}

.breakdown-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.breakdown-name {
  color: var(--text-secondary);
  font-size: 13px;
}

.breakdown-selection {
  font-size: 10px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breakdown-price {
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
}

/* Summary Total */
.summary-total {
  text-align: center;
  padding: 20px 0;
  border-top: 2px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 16px;
}

.total-label {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.total-price {
  font-size: 42px;
  font-weight: 900;
  color: var(--text-primary);
  line-height: 1;
}

.total-price sup {
  font-size: 20px;
  vertical-align: top;
  margin-right: 2px;
}

.total-price sub {
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}

.total-note {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 8px;
}

/* Summary Actions */
.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.summary-actions .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Guarantee */
.summary-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: var(--success);
}

.summary-guarantee svg {
  width: 16px;
  height: 16px;
}

@media (max-width: 1100px) {
  .vps-config-layout {
    grid-template-columns: 1fr;
  }
  
  .builder-summary {
    position: relative;
    top: 0;
  }
  
  .power-plan-display[data-power="0"],
  .power-plan-display[data-power="1"],
  .power-plan-display[data-power="2"],
  .power-plan-display[data-power="3"],
  .power-plan-display[data-power="4"],
  .power-plan-display[data-power="5"] {
    transform: scale(1);
  }
}

@media (max-width: 768px) {
  .power-plan-display {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .plan-info-left {
    order: 2;
  }
  
  .plan-icon-right {
    order: 1;
    min-height: 150px;
  }
  
  .power-glow {
    right: 50%;
    transform: translate(50%, -50%);
  }
  
  .power-price-display {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .slider-labels-top {
    font-size: 9px;
  }
  
  .slider-labels-top span:nth-child(2),
  .slider-labels-top span:nth-child(4) {
    display: none;
  }
  
  .slider-prices span:nth-child(2),
  .slider-prices span:nth-child(4) {
    display: none;
  }
  
  .power-specs-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  
  .spec-block {
    padding: 10px;
  }
  
  .spec-block .spec-value {
    font-size: 18px;
  }
  
  .price-value {
    font-size: 36px;
  }
  
  .power-name {
    font-size: 24px !important;
  }
  
  .plan-icon-container {
    transform: scale(0.8);
  }
}


/* =====================================================
   VPS BUILDER SECTION
   ===================================================== */

.vps-builder-section {
  padding: 100px 0;
  background: var(--bg-secondary);
}

.vps-builder-card {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.builder-options {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.builder-option {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-normal);
}

.builder-option:hover {
  border-color: var(--border-hover);
}

.builder-option.highlight {
  border-color: var(--primary);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(124, 58, 237, 0.05) 100%);
}

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

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

.option-icon svg {
  width: 24px;
  height: 24px;
  stroke: white;
}

.option-label {
  flex: 1;
}

.option-label h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
}

.option-value {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
}

.option-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--success);
  white-space: nowrap;
}

.recommended-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  margin-left: 8px;
  text-transform: uppercase;
}

/* Builder Slider */
.builder-slider {
  width: 100%;
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  margin: 12px 0;
}

.builder-slider::-webkit-slider-runnable-track {
  height: 10px;
  border-radius: 5px;
}

.builder-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient-primary);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: var(--transition-fast);
  border: 3px solid var(--bg-primary);
  margin-top: -8px;
}

.builder-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

.builder-slider::-moz-range-track {
  height: 10px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.builder-slider::-moz-range-thumb {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gradient-primary);
  cursor: pointer;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.builder-slider::-moz-range-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.5);
}

/* Light theme slider adjustments */
[data-theme="light"] .builder-slider {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .builder-slider::-webkit-slider-thumb {
  border-color: var(--bg-secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .builder-slider::-moz-range-thumb {
  border-color: var(--bg-secondary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Option Buttons */
.option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-btn {
  padding: 10px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-fast);
}

.option-btn:hover {
  border-color: var(--primary);
  color: var(--text-primary);
}

.option-btn.active {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
}

/* Checkbox Options */
.option-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checkbox-option {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  grid-template-rows: auto auto;
  gap: 4px 12px;
  align-items: center;
  cursor: pointer;
  padding: 12px;
  border-radius: var(--radius-md);
  background: var(--bg-tertiary);
  transition: var(--transition-fast);
}

.checkbox-option:hover {
  background: var(--bg-card-hover);
}

.checkbox-option input {
  display: none;
}

.checkbox-custom {
  grid-row: span 2;
  width: 24px;
  height: 24px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.checkbox-option input:checked + .checkbox-custom {
  background: var(--gradient-primary);
  border-color: transparent;
}

.checkbox-option input:checked + .checkbox-custom::after {
  content: '✓';
  color: white;
  font-weight: bold;
  font-size: 14px;
}

.checkbox-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-primary);
}

.addon-price {
  color: var(--success);
  font-weight: 600;
  margin-left: 8px;
}

.checkbox-desc {
  grid-column: 2;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.option-details p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 8px 0 0 0;
  padding: 8px 12px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
}

.backup-pricing-note {
  margin-top: 12px;
  padding: 10px 14px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-family: 'Fira Code', monospace;
  border-left: 3px solid var(--primary);
}

.managed-details p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin: 12px 0 0 0;
  padding: 12px;
  background: var(--bg-tertiary);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--primary);
}

.managed-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.managed-disclaimer svg {
  flex-shrink: 0;
  stroke: var(--accent);
  margin-top: 2px;
}

.managed-disclaimer strong {
  color: var(--accent);
}

[data-theme="light"] .managed-disclaimer {
  background: rgba(255, 107, 107, 0.08);
}

/* =====================================================
   WORDPRESS HERO - FLOATING UI PANELS
   ===================================================== */

.wp-hero-container {
  position: relative;
  width: 600px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wp-main-logo {
  width: 360px;
  height: 360px;
  object-fit: contain;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 20px 50px rgba(33, 117, 155, 0.4));
  animation: wpLogoFloat 4s ease-in-out infinite;
}

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

/* Pulse Rings */
.wp-pulse-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(33, 117, 155, 0.3);
  pointer-events: none;
  transition: transform 0.2s ease-out;
}

.wp-pulse-ring.ring-1 {
  width: 400px;
  height: 400px;
  animation: wpRingPulse 3s ease-out infinite;
}

.wp-pulse-ring.ring-2 {
  width: 480px;
  height: 480px;
  animation: wpRingPulse 3s ease-out infinite 1s;
}

@keyframes wpRingPulse {
  0% { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* Floating Panels */
.wp-float-panel {
  position: absolute;
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 12px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  z-index: 20;
  min-width: 180px;
  transition: transform 0.15s ease-out;
}

.wp-manager-panel {
  top: 0;
  right: -20px;
  animation: floatPanel 4s ease-in-out infinite;
  min-width: 220px;
}

.wp-security-panel {
  bottom: 20px;
  left: -30px;
  animation: floatPanel 4.5s ease-in-out infinite 0.5s;
}

.wp-perf-panel {
  top: 20px;
  left: -20px;
  animation: floatPanel 3.5s ease-in-out infinite 1s;
  min-width: 140px;
}

.wp-backup-panel {
  bottom: 0;
  right: -10px;
  animation: floatPanel 4s ease-in-out infinite 1.5s;
  min-width: 160px;
}

.wp-updates-panel {
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  animation: floatPanel 3.8s ease-in-out infinite 0.8s;
  min-width: 170px;
}

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

.panel-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.panel-dot.green { background: #10b981; box-shadow: 0 0 8px #10b981; }
.panel-dot.purple { background: #a78bfa; box-shadow: 0 0 8px #a78bfa; }
.panel-dot.cyan { background: #00d4ff; box-shadow: 0 0 8px #00d4ff; }
.panel-dot.orange { background: #f59e0b; box-shadow: 0 0 8px #f59e0b; }

.panel-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.panel-content {
  font-size: 0.8rem;
}

/* WP Manager Panel Styles */
.wp-site-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.site-icon { font-size: 14px; }
.site-name { color: var(--text-primary); font-weight: 500; flex: 1; }
.site-status {
  font-size: 0.65rem;
  padding: 2px 6px;
  border-radius: 10px;
  font-weight: 600;
}
.site-status.online {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

.wp-action-row {
  margin-bottom: 8px;
}

.action-text {
  color: #00d4ff;
  font-size: 0.7rem;
}

.typing-animation {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 3s steps(30) infinite;
}

@keyframes typing {
  0%, 100% { width: 0; }
  50%, 90% { width: 100%; }
}

/* WP Manager Tasks List */
.wp-tasks-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 10px;
}

.wp-task-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  color: var(--text-secondary);
  padding: 4px 0;
}

.wp-task-item .task-icon {
  width: 14px;
  text-align: center;
  color: #f59e0b;
}

.wp-task-item .task-icon.spinning {
  animation: spin 1.5s linear infinite;
  display: inline-block;
}

.wp-task-item.done .task-icon {
  color: #10b981;
  animation: none;
}

.wp-task-item.done .task-text {
  color: #10b981;
}

.wp-task-item .task-text {
  flex: 1;
}

.wp-task-item .task-count {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 10px;
}

.wp-task-item.done .task-count {
  display: none;
}

.wp-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.wp-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #7c3aed);
  border-radius: 2px;
  animation: progressFill 2s ease-in-out infinite;
}

@keyframes progressFill {
  0% { width: 0%; }
  50% { width: 80%; }
  100% { width: 100%; }
}

/* Security Panel Styles */
.security-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.status-text {
  color: #10b981;
  font-weight: 600;
}

.scan-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.scan-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.scan-item .check {
  color: #10b981;
  font-weight: bold;
}

.scan-item.scanning {
  color: #f59e0b;
}

.spinner {
  width: 10px;
  height: 10px;
  border: 2px solid rgba(245, 158, 11, 0.3);
  border-top-color: #f59e0b;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Performance Panel Styles */
.perf-metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.75rem;
}

.metric-value {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.8rem;
}

.metric-value.green {
  color: #10b981;
}

/* Backup Panel Styles */
.backup-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.backup-icon.rotating {
  animation: spin 1.5s linear infinite;
}

.backup-text {
  color: #00d4ff;
  font-size: 0.75rem;
  font-weight: 500;
}

.backup-file {
  font-family: 'Fira Code', monospace;
  font-size: 0.65rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.3);
  padding: 4px 8px;
  border-radius: 4px;
  overflow: hidden;
  white-space: nowrap;
}

/* Plugin Updates Panel Styles */
.update-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.update-icon.rotating {
  animation: spin 2s linear infinite;
}

.update-text {
  color: #f59e0b;
  font-size: 0.7rem;
  font-weight: 500;
}

.plugin-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.plugin-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  padding: 4px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.plugin-item:last-child {
  border-bottom: none;
}

.plugin-name {
  color: var(--text-secondary);
}

.plugin-badge {
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 8px;
  font-weight: 600;
}

.plugin-badge.new {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
}

.plugin-badge.ok {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
}

/* Light Theme */
[data-theme="light"] .wp-float-panel {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

[data-theme="light"] .wp-pulse-ring {
  border-color: rgba(33, 117, 155, 0.2);
}

[data-theme="light"] .backup-file {
  background: rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
  .wp-hero-container {
    width: 100%;
    height: 350px;
  }
  
  .wp-main-logo {
    width: 120px;
    height: 120px;
  }
  
  .wp-float-panel {
    display: none;
  }
  
  .wp-pulse-ring.ring-1 {
    width: 160px;
    height: 160px;
  }
  
  .wp-pulse-ring.ring-2 {
    width: 200px;
    height: 200px;
  }
}

/* Builder Summary */
.builder-summary {
  position: sticky;
  top: 100px;
}

.summary-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
}

.summary-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0 0 24px 0;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
}

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

.spec-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.spec-label {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.spec-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
}

.summary-breakdown {
  background: var(--bg-tertiary);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 24px;
}

.summary-breakdown h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
}

.breakdown-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
}

.breakdown-item:last-child {
  border-bottom: none;
}

.breakdown-item span:first-child {
  color: var(--text-secondary);
}

.breakdown-item span:last-child {
  color: var(--text-primary);
  font-weight: 500;
}

.summary-total {
  text-align: center;
  padding: 24px 0;
  border-top: 2px solid var(--primary);
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.total-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.total-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1;
}

.total-price sup {
  font-size: 1.5rem;
  vertical-align: super;
  margin-right: 4px;
}

.total-price sub {
  font-size: 1rem;
  color: var(--text-muted);
  font-weight: 400;
}

.total-note {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.summary-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.summary-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--success);
}

.summary-guarantee svg {
  width: 18px;
  height: 18px;
  stroke: var(--success);
}

/* Responsive VPS Builder */
@media (max-width: 1024px) {
  .vps-builder-card {
    grid-template-columns: 1fr;
  }
  
  .builder-summary {
    position: static;
  }
}

@media (max-width: 640px) {
  .option-header {
    flex-wrap: wrap;
  }
  
  .option-price {
    width: 100%;
    margin-top: 8px;
  }
  
  .option-buttons {
    flex-direction: column;
  }
  
  .option-btn {
    width: 100%;
    text-align: center;
  }
}

/* =====================================================
   LEGAL PAGE STYLES
   ===================================================== */

.legal-section {
  padding: 60px 0 100px;
}

.legal-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 50px;
  padding: 8px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
}

.legal-nav-item {
  flex: 1;
  min-width: 140px;
  padding: 14px 24px;
  text-align: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-secondary);
  text-decoration: none;
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.legal-nav-item:hover {
  color: var(--text-primary);
  background: var(--bg-tertiary);
}

.legal-nav-item.active {
  color: white;
  background: var(--gradient-primary);
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-document {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 50px;
  margin-bottom: 40px;
  scroll-margin-top: 120px;
}

.legal-document h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border-color);
}

.legal-document .last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-document .last-updated::before {
  content: '📅';
}

.legal-document h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-top: 35px;
  margin-bottom: 15px;
  padding-left: 16px;
  border-left: 3px solid var(--primary);
}

.legal-document p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.legal-document ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.legal-document ul li {
  position: relative;
  padding: 12px 0 12px 32px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.legal-document ul li:last-child {
  border-bottom: none;
}

.legal-document ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 12px;
  width: 20px;
  height: 20px;
  background: rgba(0, 212, 255, 0.1);
  color: var(--primary);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* Light Theme Legal Adjustments */
[data-theme="light"] .legal-document {
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .legal-nav {
  background: #f8fafc;
}

[data-theme="light"] .legal-nav-item.active {
  box-shadow: 0 4px 15px rgba(8, 145, 178, 0.25);
}

/* Legal Page Responsive */
@media (max-width: 768px) {
  .legal-nav {
    flex-direction: column;
  }
  
  .legal-nav-item {
    min-width: auto;
  }
  
  .legal-document {
    padding: 30px 24px;
  }
  
  .legal-document h2 {
    font-size: 1.5rem;
  }
  
  .legal-document h3 {
    font-size: 1.1rem;
  }
}

