﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿﻿/* ========================================
   Unified Products Page - Theme System
   Supports: Baremetal, Host, SSL, SQL, Mail, Site
   ======================================== */

/* ========================================
   Common Container Styles
   ======================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}

/* ========================================
   Section Common Styles
   ======================================== */
.section {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

/* ========================================
   CSS Variables (Theme System)
   ======================================== */
:root {
  /* Default Blue Theme */
  --theme-primary: #8b5cf6;
  --theme-secondary: #22d3ee;
  --theme-primary-rgb: 139, 92, 246;
  --theme-secondary-rgb: 34, 211, 238;
  --theme-glow: rgba(139, 92, 246, 0.4);

  /* Common Colors */
  --bg-dark: #0f172a;
  --bg-card: rgba(255,255,255,0.04);
  --border-color: rgba(255,255,255,0.08);
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
}

/* ========================================
   Theme Variations
   ======================================== */

/* Baremetal - Purple/Cyan (Power & Metal) */
.theme-baremetal {
  --theme-primary: #8b5cf6;
  --theme-secondary: #22d3ee;
  --theme-primary-rgb: 139, 92, 246;
  --theme-secondary-rgb: 34, 211, 238;
  --theme-glow: rgba(139, 92, 246, 0.4);
}



/* SSL - Emerald Green (Security & Trust) */
.theme-ssl {
  --theme-primary: #10b981;
  --theme-secondary: #059669;
  --theme-primary-rgb: 16, 185, 129;
  --theme-secondary-rgb: 5, 150, 105;
  --theme-glow: rgba(16, 185, 129, 0.4);
}

/* SQL - Indigo (Data & Tech) */
.theme-sql {
  --theme-primary: #6366f1;
  --theme-secondary: #4f46e5;
  --theme-primary-rgb: 99, 102, 241;
  --theme-secondary-rgb: 79, 70, 229;
  --theme-glow: rgba(99, 102, 241, 0.4);
}

/* Mail - Fuchsia (Communication & Business) */
.theme-mail {
  --theme-primary: #d946ef;
  --theme-secondary: #a855f7;
  --theme-primary-rgb: 217, 70, 239;
  --theme-secondary-rgb: 168, 85, 247;
  --theme-glow: rgba(217, 70, 239, 0.4);
}

/* Site - Rose (Creative & Design) */
.theme-site {
  --theme-primary: #f43f5e;
  --theme-secondary: #e11d48;
  --theme-primary-rgb: 244, 63, 94;
  --theme-secondary-rgb: 225, 29, 72;
  --theme-glow: rgba(244, 63, 94, 0.4);
}

/* ========================================
   Page Container
   ======================================== */
.product-page {
  background: linear-gradient(135deg, #13131f 0%, #1a1a2e 50%, #16162a 100%);
  min-height: 100vh;
  position: relative;
}

.product-page::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--theme-primary-rgb), 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 50%, rgba(var(--theme-secondary-rgb), 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 0% 80%, rgba(139,92,246,0.06) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

/* ========================================   Hero Section - Left Text, Right Image Layout   ======================================== */
.product-hero,
.about-hero,
.article-hero {
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 100%) !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 60px;
  width: 100%;
  box-sizing: border-box;
}

/* Hero International Background Effects */
.product-hero::before,
.article-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(139,92,246,0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(34,211,238,0.06) 0%, transparent 50%),
              linear-gradient(90deg, transparent 0%, rgba(139,92,246,0.02) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundShift 15s ease infinite;
}

@keyframes backgroundShift {
  0% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0% 0%;
  }
}

/* Hero Technical Texture */
.product-hero::after,
.about-hero::after,
.article-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

.product-hero-content {
  flex: 1;
  max-width: 550px;
  text-align: left;
  animation: slideInLeft 0.8s ease-out forwards;
  opacity: 0;
}

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

.product-hero-image {
  flex: 1;
  max-width: 500px;
  animation: slideInRight 0.8s ease-out 0.2s forwards;
  opacity: 0;
}

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

.product-hero-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
  transition: transform 0.4s ease;
}

.product-hero-image img:hover {
  transform: scale(1.02) translateY(-5px);
}

.product-hero h1 {
  font-size: 42px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.product-hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary), var(--theme-primary));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.product-hero p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.product-hero-icon {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.2), rgba(var(--theme-secondary-rgb), 0.2));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--theme-primary-rgb), 0.3);
}

.product-hero-icon svg {
  width: 36px;
  height: 36px;
  color: var(--theme-primary);
}

.product-hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.product-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: rgba(var(--theme-primary-rgb), 0.1);
  border: 1px solid rgba(var(--theme-primary-rgb), 0.2);
  border-radius: 20px;
  color: var(--theme-primary);
  font-size: 13px;
}

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

.product-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive Hero */
@media (max-width: 968px) {
  .product-hero-wrapper {
    flex-direction: column-reverse;
    text-align: center;
    gap: 40px;
  }

  .product-hero-content {
    max-width: 100%;
    text-align: center;
  }

  .product-hero-image {
    max-width: 350px;
  }

  .product-hero h1 {
    font-size: 32px;
  }

  .product-hero-badges {
    justify-content: center;
  }

  .product-hero-actions {
    justify-content: center;
  }

  .product-hero-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 480px) {
  .product-hero {
    padding: 60px 15px;
  }

  .product-hero h1 {
    font-size: 28px;
  }

  .product-hero-image {
    max-width: 280px;
  }
}

/* ========================================
   Buttons
   ======================================== */
.product-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(139,92,246,0.25);
  white-space: nowrap;
}

.product-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.product-btn-primary:hover::before {
  left: 100%;
}

.product-btn-primary:hover {
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(var(--theme-primary-rgb), 0.35);
  color: #ffffff;
}

.product-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: rgba(255,255,255,0.03);
  color: var(--text-primary);
  font-size: 16px;
  font-weight: 600;
  border: 1px solid rgba(var(--theme-primary-rgb), 0.3);
  border-radius: 28px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  backdrop-filter: blur(10px);
}

.product-btn-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(var(--theme-primary-rgb), 0.5);
  color: var(--text-primary);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(var(--theme-primary-rgb), 0.15);
}

.product-btn-primary:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--theme-primary-rgb), 0.3);
}

.product-btn-primary:focus {
  outline: none;
  color: var(--text-primary);
  box-shadow: 0 8px 24px rgba(var(--theme-primary-rgb), 0.3), 0 0 0 3px rgba(var(--theme-primary-rgb), 0.4);
}

.product-btn-secondary:active {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--theme-primary-rgb), 0.15);
}

.product-btn-secondary:focus {
  outline: none;
  color: var(--text-secondary);
  box-shadow: 0 8px 24px rgba(var(--theme-primary-rgb), 0.15), 0 0 0 3px rgba(var(--theme-primary-rgb), 0.3);
}

.product-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
  font-size: 18px;
}

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

.product-feature svg {
  width: 14px;
  height: 14px;
  color: var(--success);
  flex-shrink: 0;
}

/* ========================================
   Features Section
   ======================================== */
.product-features-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.05) 0%, rgba(var(--theme-secondary-rgb), 0.05) 100%);
  position: relative;
  overflow: hidden;
}

.product-features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(var(--theme-primary-rgb), 0.04) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(var(--theme-secondary-rgb), 0.04) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.product-features-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.product-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.product-feature-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.product-feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--theme-primary-rgb), 0.05), transparent);
  transition: left 0.6s ease;
  z-index: 0;
}

.product-feature-card:hover::before {
  left: 100%;
}

.product-feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(var(--theme-primary-rgb), 0.3);
  box-shadow: 0 12px 32px rgba(var(--theme-primary-rgb), 0.15), 0 4px 16px rgba(var(--theme-secondary-rgb), 0.1);
}

.product-feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.2), rgba(var(--theme-secondary-rgb), 0.2));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--theme-primary-rgb), 0.3);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.product-feature-card:hover .product-feature-icon {
  transform: scale(1.1);
  box-shadow: 0 8px 24px rgba(var(--theme-primary-rgb), 0.2);
}

.product-feature-icon svg {
  width: 36px;
  height: 36px;
  color: var(--theme-primary);
  background: linear-gradient(135deg, var(--theme-primary), var(--theme-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.4s ease;
}

.product-feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--text-primary), var(--text-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.product-feature-card p {
  color: var(--text-secondary);
  font-size: 15px;
  line-height: 1.7;
  transition: color 0.4s ease;
  position: relative;
  z-index: 1;
}

.product-feature-card:hover p {
  color: var(--text-primary);
}

/* ========================================
   Theme-Specific Hero Glow Effects
   ======================================== */

/* Theme-specific styles are now handled by the unified product-hero styles above */



/* SSL - Emerald Green Glow */
.theme-ssl .product-hero::before {
  background:
    radial-gradient(ellipse 600px 400px at 25% 35%, rgba(16, 185, 129, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 75% 65%, rgba(5, 150, 105, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 350px 250px at 50% 15%, rgba(52, 211, 153, 0.1) 0%, transparent 60%);
}

.theme-ssl .product-hero::after {
  background-image:
    repeating-linear-gradient(45deg, rgba(16, 185, 129, 0.03) 0%, rgba(16, 185, 129, 0.03) 1px, transparent 1px, transparent 20px),
    repeating-linear-gradient(-45deg, rgba(5, 150, 105, 0.03) 0%, rgba(5, 150, 105, 0.03) 1px, transparent 1px, transparent 20px);
}

/* SQL - Indigo Glow */
.theme-sql .product-hero::before {
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(99, 102, 241, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 80% 70%, rgba(79, 70, 229, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 400px 300px at 55% 20%, rgba(129, 140, 248, 0.1) 0%, transparent 60%);
}

.theme-sql .product-hero::after {
  background-image:
    linear-gradient(0deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
  background-size: 20px 20px;
  animation: dataFlow 10s linear infinite;
}

@keyframes dataFlow {
  0% { background-position: 0 0; }
  100% { background-position: 20px 20px; }
}

/* Mail - Fuchsia Glow */
.theme-mail .product-hero::before {
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(217, 70, 239, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 80% 70%, rgba(168, 85, 247, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 350px 250px at 45% 15%, rgba(232, 121, 249, 0.1) 0%, transparent 60%);
}

.theme-mail .product-hero::after {
  background-image:
    linear-gradient(135deg, rgba(217, 70, 239, 0.04) 25%, transparent 25%),
    linear-gradient(225deg, rgba(168, 85, 247, 0.04) 25%, transparent 25%),
    linear-gradient(45deg, rgba(217, 70, 239, 0.04) 25%, transparent 25%),
    linear-gradient(315deg, rgba(168, 85, 247, 0.04) 25%, transparent 25%);
  background-size: 60px 60px;
  background-position: 0 0, 30px 0, 30px -30px, 0 30px;
}

/* Site - Rose Glow */
.theme-site .product-hero::before {
  background:
    radial-gradient(ellipse 600px 400px at 20% 30%, rgba(244, 63, 94, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 500px 350px at 80% 70%, rgba(225, 29, 72, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 350px 250px at 50% 15%, rgba(251, 113, 133, 0.1) 0%, transparent 60%);
}

.theme-site .product-hero::after {
  background-image:
    linear-gradient(30deg, rgba(244, 63, 94, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(244, 63, 94, 0.05) 87.5%),
    linear-gradient(150deg, rgba(225, 29, 72, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(225, 29, 72, 0.05) 87.5%),
    linear-gradient(30deg, rgba(244, 63, 94, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(244, 63, 94, 0.05) 87.5%),
    linear-gradient(150deg, rgba(225, 29, 72, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(225, 29, 72, 0.05) 87.5%);
  background-size: 80px 140px;
  background-position: 0 0, 0 0, 40px 70px, 40px 70px;
}

/* ========================================
   SSL Certificate Specific Styles
   ======================================== */
.ssl-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(var(--theme-primary-rgb), 0.1);
  border: 1px solid rgba(var(--theme-primary-rgb), 0.2);
  border-radius: 6px;
  color: var(--theme-primary);
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 12px;
}

.ssl-type-dv { background: rgba(139,92,246,0.1); border-color: rgba(139,92,246,0.2); color: #8b5cf6; }
.ssl-type-ov { background: rgba(16,185,129,0.1); border-color: rgba(16,185,129,0.2); color: #10b981; }
.ssl-type-ev { background: rgba(249,115,22,0.1); border-color: rgba(249,115,22,0.2); color: #f97316; }

.ssl-domains-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ssl-domain-row {
  display: flex;
  gap: 8px;
}

.ssl-domain-row input {
  flex: 1;
}

.ssl-add-domain-btn {
  padding: 8px 16px;
  background: rgba(var(--theme-primary-rgb), 0.1);
  border: 1px dashed rgba(var(--theme-primary-rgb), 0.3);
  border-radius: 8px;
  color: var(--theme-primary);
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.ssl-add-domain-btn:hover {
  background: rgba(var(--theme-primary-rgb), 0.2);
}


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

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

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


.product-section-title {
    text-align: center;
    margin-bottom: 48px;
}
.product-section-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.product-section-title p {
    color: var(--text-muted);
    font-size: 16px;
}
.product-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
  position: relative;
  overflow: hidden;
}

.product-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(var(--theme-primary-rgb), 0.08) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(var(--theme-secondary-rgb), 0.06) 0%, transparent 50%),
              linear-gradient(90deg, transparent 0%, rgba(var(--theme-primary-rgb), 0.02) 50%, transparent 100%);
  pointer-events: none;
  z-index: 0;
  animation: backgroundShift 15s ease infinite;
}

.product-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: 0;
}

.product-section .product-section-title,
.product-section .product-features-grid {
  position: relative;
  z-index: 1;
}

.product-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
/* ========================================
   Server Compare Table
   ======================================== */
.server-compare-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.1);
}

.server-compare-header {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.1), rgba(var(--theme-secondary-rgb), 0.1));
  padding: 20px;
  border-bottom: 1px solid rgba(var(--theme-primary-rgb), 0.2);
}

.server-compare-header > div {
  text-align: center;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 14px;
}

.server-compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.3s ease;
}

.server-compare-row:hover {
  background: rgba(139,92,246,0.03);
}

.server-compare-row > div {
  text-align: center;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.4;
}

.server-compare-row > div:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-primary);
}

.server-compare-row .good {
  color: var(--success);
  font-weight: 500;
}

.server-compare-row .bad {
  color: var(--danger);
  font-weight: 500;
}

/* ========================================
   Server Tech Tabs
   ========================================
 */

/* Tech Stack Section - International Style */
.server-tech-section {
  padding: 100px 20px;
  background: linear-gradient(135deg, rgba(139,92,246,0.05) 0%, rgba(34,211,238,0.05) 100%);
  position: relative;
  overflow: hidden;
}

/* Tech Section Background Effects */
.server-tech-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(139,92,246,0.04) 0%, transparent 60%),
              radial-gradient(circle at 80% 70%, rgba(34,211,238,0.04) 0%, transparent 60%),
              linear-gradient(90deg, transparent 0%, rgba(139,92,246,0.01) 50%, transparent 100%);
  pointer-events: none;
}

/* Tech Section Technical Texture */
.server-tech-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255,255,255,0.03) 1px, transparent 0);
  background-size: 20px 20px;
  pointer-events: none;
}

.server-tech-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* International Style Tech Tabs */
.server-tech-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 80px;
  flex-wrap: wrap;
}

.server-tech-tab {
  padding: 18px 36px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(var(--theme-primary-rgb), 0.2);
  border-radius: 24px;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.server-tech-tab::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--theme-primary-rgb), 0.1), transparent);
  transition: left 0.6s ease;
}

.server-tech-tab:hover::before {
  left: 100%;
}

.server-tech-tab:hover {
  background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.15), rgba(var(--theme-secondary-rgb), 0.15));
  border-color: rgba(var(--theme-primary-rgb), 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(var(--theme-primary-rgb), 0.15);
}

.server-tech-tab.active {
  background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.2), rgba(var(--theme-secondary-rgb), 0.2));
  border-color: rgba(var(--theme-primary-rgb), 0.5);
  color: var(--text-primary);
  box-shadow: 0 12px 32px rgba(var(--theme-primary-rgb), 0.2);
}

/* Tech Content with International Animation */
.server-tech-content {
  display: none;
  animation: slideInRight 0.6s ease;
}

.server-tech-content.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

/* Tech Info with International Typography */
.server-tech-info {
  position: relative;
}

.server-tech-info::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(var(--theme-primary-rgb), 0.1), rgba(var(--theme-secondary-rgb), 0.1));
  border-radius: 50%;
  pointer-events: none;
}

.server-tech-info h3 {
  font-size: 40px;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.server-tech-info p {
  color: #94a3b8;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Tech Partners with International Layout */
.server-tech-partners {
  position: relative;
  background: rgba(255,255,255,0.02);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(var(--theme-primary-rgb), 0.1);
  backdrop-filter: blur(10px);
}

.server-tech-partners h4 {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  font-weight: 600;
}

/* Modern Partner Logos Grid */
.server-tech-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.server-tech-logo {
  width: 100%;
  height: 100px;
  background: rgba(255,255,255,0.05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(var(--theme-primary-rgb), 0.2);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.server-tech-logo::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(var(--theme-primary-rgb), 0.1), transparent);
  transition: left 0.6s ease;
}

.server-tech-logo:hover::before {
  left: 100%;
}

.server-tech-logo:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  border-color: rgba(var(--theme-primary-rgb), 0.4);
  box-shadow: 0 16px 40px rgba(var(--theme-primary-rgb), 0.15);
}

.server-tech-logo img {
  max-width: 70px;
  max-height: 70px;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.server-tech-logo:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.15);
}

/* Responsive International Design */
@media (max-width: 992px) {
  .server-tech-content.active {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .server-tech-info::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .server-tech-section {
    padding: 80px 16px;
  }
  
  .server-tech-tabs {
    gap: 8px;
    margin-bottom: 40px;
    flex-direction: column;
    align-items: center;
  }
  
  .server-tech-tab {
    padding: 12px 24px;
    font-size: 14px;
    border-radius: 20px;
    min-width: 200px;
    text-align: center;
  }
  
  .server-tech-info h3 {
    font-size: 28px;
    margin-bottom: 24px;
  }
  
  .server-tech-info p {
    font-size: 16px;
    margin-bottom: 24px;
  }
  
  .server-tech-partners {
    padding: 24px 16px;
    margin-top: 40px;
  }
  
  .server-tech-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .server-tech-logo {
    height: 70px;
    border-radius: 12px;
  }
  
  .server-tech-logo img {
    max-width: 40px;
    max-height: 40px;
  }
  
  .server-tech-content.active {
    gap: 40px;
  }
}



/* ========================================
   Responsive
   ======================================== */
@media (max-width: 768px) {
  .product-hero {
    padding: 80px 16px 60px;
  }

  .product-hero h1 {
    font-size: 32px;
  }

  .product-hero p {
    font-size: 15px;
  }

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

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

  .product-buy-btn {
    width: 100%;
    justify-content: center;
  }

  .product-buy-container {
    padding: 20px 16px;
  }

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

  .product-buy-duration-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .product-buy-price-section {
    flex-direction: column;
    text-align: center;
  }
}

/* iPad Pro (1025px - 1366px) 专用优化 */
@media screen and (min-width: 1025px) and (max-width: 1366px) {
  /* 修复iPad Pro下产品页面模糊问题 - 全面优化 */
  
  /* 1. 移除所有backdrop-filter效果 */
  .product-btn-secondary,
  .server-tech-tab,
  .server-tech-partners {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  
  /* 2. 使用实色背景替代半透明背景 */
  .product-btn-secondary {
    background: #0f172a !important;
    border: 1px solid rgba(139,92,246,0.3) !important;
  }
  
  .server-tech-tab {
    background: #0f172a !important;
    border: 1px solid rgba(139,92,246,0.3) !important;
  }
  
  .server-tech-partners {
    background: #0f172a !important;
    border: 1px solid rgba(139,92,246,0.2) !important;
  }
  
  .product-feature-card {
    background: #0f172a !important;
    border: 1px solid rgba(139,92,246,0.2) !important;
  }
  
  .server-compare-table {
    background: #0f172a !important;
    border: 1px solid rgba(139,92,246,0.2) !important;
  }
  
  /* 3. 简化背景效果，移除可能导致模糊的渐变和纹理 */
  .product-hero::before,
  .product-section::before,
  .server-tech-section::before {
    display: none !important;
  }
  
  .product-hero::after,
  .product-section::after,
  .server-tech-section::after {
    display: none !important;
  }
  
  /* 4. 优化产品英雄区域背景 */
  .product-hero {
    background: #0f172a !important;
  }
  
  .product-section {
    background: #0f172a !important;
  }
  
  .server-tech-section {
    background: #0f172a !important;
  }
  
  .product-features-section {
    background: #0f172a !important;
  }
  
  /* 5. 确保所有元素边缘清晰 */
  * {
    -webkit-font-smoothing: antialiased !important;
    -moz-osx-font-smoothing: grayscale !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }
  
  /* 6. 简化边框和阴影效果 */
  .product-btn-primary,
  .product-btn-secondary,
  .product-feature-card,
  .server-tech-tab,
  .server-tech-partners,
  .server-compare-table {
    box-shadow: none !important;
    border: 1px solid rgba(139,92,246,0.2) !important;
  }
  
  /* 7. 优化图片显示 */
  .product-hero-image img {
    filter: none !important;
    transform: none !important;
  }
  
  /* 8. 简化主题特定的背景效果 */

  .theme-ssl .product-hero::before,
  .theme-ssl .product-hero::after,
  .theme-sql .product-hero::before,
  .theme-sql .product-hero::after,
  .theme-mail .product-hero::before,
  .theme-mail .product-hero::after,
  .theme-site .product-hero::before,
  .theme-site .product-hero::after {
    display: none !important;
  }
}
