/* ==========================================================================
   VIPHost - Elite Enterprise Web Hosting, Domain & SSL Cloud Platform
   Master Design System & Custom UI Framework
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400;500;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Brand Primary Palette (Electric Royal Blue) */
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-dark: #1e3a8a;
  --primary-deep: #0f172a;
  --primary-light: #3b82f6;
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-glow: rgba(37, 99, 235, 0.28);
  --primary-glow-lg: 0 0 50px rgba(37, 99, 235, 0.35);

  /* Vibrant Accents */
  --accent-cyan: #06b6d4;
  --accent-cyan-light: #22d3ee;
  --accent-cyan-glow: rgba(6, 182, 212, 0.3);
  --accent-indigo: #6366f1;
  --accent-purple: #8b5cf6;
  
  /* Status Colors */
  --success: #10b981;
  --success-dark: #059669;
  --success-bg: #ecfdf5;
  --success-border: #a7f3d0;
  --success-glow: rgba(16, 185, 129, 0.25);
  
  --warning: #f59e0b;
  --warning-bg: #fffbeb;
  --warning-border: #fde68a;
  
  --danger: #ef4444;
  --danger-bg: #fef2f2;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #1d4ed8 0%, #2563eb 50%, #06b6d4 100%);
  --gradient-primary-hover: linear-gradient(135deg, #1e40af 0%, #1d4ed8 50%, #0891b2 100%);
  --gradient-accent: linear-gradient(135deg, #6366f1 0%, #2563eb 50%, #06b6d4 100%);
  --gradient-dark-card: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.9) 100%);
  --gradient-mesh: radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.15) 0px, transparent 50%),
                   radial-gradient(at 100% 0%, rgba(6, 182, 212, 0.12) 0px, transparent 50%),
                   radial-gradient(at 50% 100%, rgba(99, 102, 241, 0.1) 0px, transparent 50%);
  --gradient-shimmer: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);

  /* Light Theme Surfaces */
  --bg-main: #f8fafc;
  --bg-surface: #ffffff;
  --bg-surface-alt: #f1f5f9;
  --bg-surface-muted: #e2e8f0;
  --bg-glass: rgba(255, 255, 255, 0.82);

  /* Typography Colors */
  --text-main: #090d16;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;

  /* Borders */
  --border-color: #e2e8f0;
  --border-light: #f1f5f9;
  --border-glow: rgba(37, 99, 235, 0.3);

  /* Dark Theme Surfaces (Deep Obsidian Navy) */
  --bg-dark-root: #060911;
  --bg-dark-surface: #0a0f1d;
  --bg-dark-card: #0f172a;
  --bg-dark-card-hover: #162038;
  --border-dark: #1e293b;
  --border-dark-light: #334155;
  --text-dark-main: #f8fafc;
  --text-dark-body: #cbd5e1;
  --text-dark-muted: #94a3b8;

  /* Typography */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows */
  --shadow-xs: 0 1px 2px 0 rgba(15, 23, 42, 0.05);
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 25px -3px rgba(15, 23, 42, 0.09), 0 4px 10px -4px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 20px 35px -5px rgba(15, 23, 42, 0.12), 0 8px 16px -6px rgba(15, 23, 42, 0.06);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.18);
  --shadow-card-hover: 0 22px 40px -8px rgba(37, 99, 235, 0.15), 0 10px 20px -6px rgba(15, 23, 42, 0.08);

  /* Border Radii */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 0.18s ease;
  --transition-normal: 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.45s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-max: 1260px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-body);
  background-color: var(--bg-main);
  overflow-x: clip;
  max-width: 100vw;
  width: 100%;
  position: relative;
}

::selection {
  background: var(--primary);
  color: #ffffff;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

h1 { font-size: clamp(2.6rem, 5.2vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(2rem, 3.8vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.6vw, 1.75rem); }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1.1rem; font-weight: 700; }

p {
  margin-bottom: 1rem;
  line-height: 1.68;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}
a:hover {
  color: var(--primary-hover);
}

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
}

/* ==========================================================================
   LAYOUT & CONTAINER UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.section-padding {
  padding: 6.5rem 0;
  position: relative;
}

.section-padding-sm {
  padding: 4.5rem 0;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.section-header {
  max-width: 740px;
  margin: 0 auto 3.75rem auto;
  text-align: center;
}

.section-header.text-left {
  margin-left: 0;
  text-align: left;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  margin-bottom: 1.15rem;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.08);
}

.section-badge.badge-cyan {
  color: #0891b2;
  background: #ecfeff;
  border-color: #a5f3fc;
}

.section-badge.badge-dark {
  color: #38bdf8;
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(56, 189, 248, 0.25);
}

.section-title {
  margin-bottom: 1.1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}

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

.gradient-text-cyan {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.85rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 18px 0 rgba(37, 99, 235, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
  background: var(--gradient-primary-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px 0 rgba(37, 99, 235, 0.52);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1.5px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background: var(--bg-surface-alt);
  color: var(--primary);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-outline-white {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(8px);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-white {
  background: #ffffff;
  color: var(--primary-dark);
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.btn-white:hover {
  background: #f8fafc;
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}

.btn-sm {
  padding: 0.55rem 1.15rem;
  font-size: 0.875rem;
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 1.05rem 2.4rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* ==========================================================================
   1. TOP NOTICE & NAVBAR
   ========================================================================== */
.top-notice-bar {
  background: #0b1120;
  color: #94a3b8;
  font-size: 0.8125rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-notice-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.notice-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
}

.status-pulse {
  width: 9px;
  height: 9px;
  background-color: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8); }
  70% { box-shadow: 0 0 0 9px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.top-notice-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-notice-links a {
  color: #cbd5e1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 500;
}

.top-notice-links a:hover {
  color: #38bdf8;
}

/* Top Notice Bar & Container Full Width */
.top-notice-bar .container,
.site-header .container {
  max-width: 100% !important;
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

@media (max-width: 1200px) {
  .top-notice-bar .container,
  .site-header .container {
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .top-notice-bar .container,
  .site-header .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* Main Navbar (Fixed/Sticky at Top on Scroll) */
.site-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: all var(--transition-normal);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px -2px rgba(15, 23, 42, 0.1);
  border-bottom-color: rgba(203, 213, 225, 0.9);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  width: 100%;
  transition: height var(--transition-normal);
}

.site-header.is-scrolled .navbar {
  height: 70px;
}

/* Brand Logo */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-main);
  letter-spacing: -0.035em;
}

.logo-icon-box {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.3rem;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.35);
}

.logo-text span {
  color: var(--primary);
}

.logo-badge {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  background: #eff6ff;
  color: var(--primary);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid #bfdbfe;
  vertical-align: middle;
  margin-left: 0.35rem;
}

/* Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(0.65rem, 1.15vw, 1.75rem);
}

.nav-link {
  font-size: clamp(0.81rem, 0.86vw, 0.95rem);
  font-weight: 600;
  color: var(--text-body);
  position: relative;
  padding: 0.5rem 0;
  white-space: nowrap;
  transition: color var(--transition-fast);
}

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

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

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

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.btn-login {
  color: var(--text-body);
  font-weight: 700;
  padding: 0.6rem 1.15rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.925rem;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  background: transparent;
  cursor: pointer;
}

.btn-login:hover {
  background: var(--bg-surface-alt);
  color: var(--primary);
}

/* Mobile Hamburger */
.mobile-toggle {
  display: none;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0.55rem 0.75rem;
  color: var(--text-main);
  font-size: 1.35rem;
}

/* Mobile Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  padding: 2.25rem;
  transition: right var(--transition-normal);
  overflow-y: auto;
}

.mobile-drawer.is-open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
}

.drawer-close-btn {
  background: var(--bg-surface-alt);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--text-muted);
  cursor: pointer;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  margin-bottom: 2.5rem;
}

.drawer-nav .nav-link {
  font-size: 1.1rem;
}

.drawer-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: auto;
}

.drawer-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(6px);
  z-index: 1040;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================================================
   DEDICATED PAGE HERO & BREADCRUMB
   ========================================================================== */
.page-hero {
  position: relative;
  padding: 4.5rem 0 4rem 0;
  background: radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 45%),
              var(--bg-main);
  border-bottom: 1.5px solid var(--border-color);
  text-align: center;
  overflow: hidden;
}

.page-hero .hero-bg-grid {
  opacity: 0.35;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
  background: var(--bg-surface);
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-xs);
}

.breadcrumb-nav a {
  color: var(--text-muted);
}
.breadcrumb-nav a:hover {
  color: var(--primary);
}

.breadcrumb-separator {
  color: var(--text-light);
  font-size: 0.75rem;
}

.breadcrumb-current {
  color: var(--primary);
  font-weight: 700;
}

.page-hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--text-main);
}

.page-hero-subtitle {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.hero-section {
  position: relative;
  padding: 5rem 0 8.5rem 0;
  background: radial-gradient(circle at 85% 25%, rgba(37, 99, 235, 0.12) 0%, transparent 55%),
              radial-gradient(circle at 10% 70%, rgba(6, 182, 212, 0.09) 0%, transparent 45%),
              var(--bg-main);
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right, rgba(203, 213, 225, 0.5) 1px, transparent 1px),
                    linear-gradient(to bottom, rgba(203, 213, 225, 0.5) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 35%, transparent 75%);
  pointer-events: none;
  opacity: 0.5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 650px;
}

.hero-headline {
  margin-bottom: 1.4rem;
  color: var(--text-main);
  line-height: 1.15;
}

.hero-subheadline {
  font-size: 1.22rem;
  color: var(--text-body);
  line-height: 1.68;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  margin-bottom: 3.25rem;
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 2.25rem;
  border-top: 1.5px solid var(--border-color);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.trust-icon-box {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-xs);
  border: 1px solid #bfdbfe;
}

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

.trust-title {
  font-size: 0.925rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.trust-desc {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Hero Cyber Server Graphic */
.hero-visual {
  position: relative;
}

.server-mockup-card {
  background: #0a0f1d;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--text-white);
  box-shadow: 0 30px 60px -15px rgba(10, 15, 29, 0.4), var(--primary-glow-lg);
  position: relative;
  overflow: hidden;
}

.server-mockup-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.server-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.server-header-left {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.server-traffic-light {
  display: flex;
  gap: 7px;
}

.traffic-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}
.traffic-dot.red { background: #ef4444; }
.traffic-dot.yellow { background: #f59e0b; }
.traffic-dot.green { background: #10b981; }

.server-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
  font-family: var(--font-mono);
}

.server-node-tag {
  background: rgba(16, 185, 129, 0.18);
  color: #34d399;
  border: 1px solid rgba(16, 185, 129, 0.35);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Rack visual */
.server-racks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.server-rack-unit {
  background: #131d33;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition-fast);
}

.server-rack-unit:hover {
  background: #1a2845;
  border-color: rgba(59, 130, 246, 0.45);
  transform: translateX(4px);
}

.rack-unit-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.rack-icon {
  color: var(--accent-cyan-light);
  font-size: 1.25rem;
}

.rack-name {
  font-size: 0.925rem;
  font-weight: 700;
  color: #ffffff;
}

.rack-sub {
  font-size: 0.775rem;
  color: #94a3b8;
  margin-top: 0.15rem;
}

.rack-stats {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.rack-stat-badge {
  font-size: 0.75rem;
  font-family: var(--font-mono);
  background: rgba(0, 0, 0, 0.4);
  padding: 0.3rem 0.6rem;
  border-radius: var(--radius-sm);
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.2);
}

.activity-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 20px;
}

.bar {
  width: 4px;
  background: #3b82f6;
  border-radius: 2px;
  animation: equalize 1.4s infinite alternate ease-in-out;
}

.bar:nth-child(1) { height: 45%; animation-delay: 0.1s; background: #38bdf8; }
.bar:nth-child(2) { height: 80%; animation-delay: 0.35s; background: #2563eb; }
.bar:nth-child(3) { height: 95%; animation-delay: 0.5s; background: #60a5fa; }
.bar:nth-child(4) { height: 60%; animation-delay: 0.2s; background: #06b6d4; }
.bar:nth-child(5) { height: 85%; animation-delay: 0.45s; background: #3b82f6; }

@keyframes equalize {
  0% { transform: scaleY(0.25); }
  100% { transform: scaleY(1); }
}

/* Server Terminal Stream (Mobile Responsive & Monospace) */
.server-terminal-stream {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.15rem;
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.775rem;
  line-height: 1.6;
  overflow: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

.terminal-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  color: #94a3b8;
  word-break: break-word;
  overflow-wrap: anywhere;
  max-width: 100%;
}

.term-prefix {
  color: var(--accent-cyan-light);
  font-weight: 700;
  flex-shrink: 0;
}

.term-cmd {
  color: #38bdf8;
  font-weight: 600;
}

.term-ok {
  color: #34d399;
  font-weight: 700;
}

.term-text {
  color: #cbd5e1;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.term-dynamic {
  color: #f1f5f9;
  font-weight: 600;
  word-break: break-word;
  overflow-wrap: anywhere;
}

.term-cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: var(--accent-cyan);
  vertical-align: middle;
  margin-left: 3px;
  animation: blink-cursor 0.9s infinite;
  flex-shrink: 0;
}

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

@media (max-width: 768px) {
  .server-mockup-card {
    padding: 1.5rem 1.15rem;
  }
}

@media (max-width: 576px) {
  .server-terminal-stream {
    font-size: 0.72rem;
    padding: 0.65rem 0.85rem;
  }
  .server-rack-unit {
    padding: 0.75rem 0.85rem;
  }
  .rack-stats {
    gap: 0.5rem;
  }
  .activity-bars {
    display: none;
  }
}

/* Floating status pills */
.floating-stat-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  border: 1.5px solid var(--border-color);
  padding: 0.95rem 1.35rem;
  border-radius: var(--radius-lg);
  box-shadow: 0 16px 36px -6px rgba(15, 23, 42, 0.18);
  display: flex;
  align-items: center;
  gap: 0.95rem;
  animation: float 4.5s ease-in-out infinite;
  z-index: 3;
}

.floating-stat-card.top-right {
  top: -24px;
  right: -24px;
  animation-delay: 0s;
}

.floating-stat-card.bottom-left {
  bottom: -24px;
  left: -24px;
  animation-delay: 2.25s;
}

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

.float-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.float-icon.shield { background: #ecfdf5; color: #10b981; border: 1px solid #a7f3d0; }
.float-icon.speed { background: #eff6ff; color: #2563eb; border: 1px solid #bfdbfe; }

.float-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-main);
}

.float-val {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ==========================================================================
   3. DOMAIN SEARCH SECTION (Interactive)
   ========================================================================== */
.domain-search-wrapper {
  position: relative;
  margin-top: -4.5rem;
  z-index: 10;
  margin-bottom: 2.5rem;
}

.domain-search-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  padding: 3rem 2.75rem;
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.12), 0 0 0 1px var(--border-color);
  position: relative;
  overflow: hidden;
}

.domain-search-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
}

.domain-search-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 2.25rem auto;
}

.domain-form {
  display: flex;
  align-items: center;
  background: var(--bg-surface-alt);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  transition: all var(--transition-fast);
  box-shadow: inset 0 2px 4px rgba(15, 23, 42, 0.04);
}

.domain-form:focus-within {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 5px var(--primary-glow);
}

.domain-input-icon {
  padding-left: 1.35rem;
  color: var(--text-muted);
  font-size: 1.3rem;
}

.domain-input {
  flex: 1;
  background: transparent;
  padding: 1rem 1.25rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.domain-input::placeholder {
  color: var(--text-light);
  font-weight: 400;
}

.domain-tld-select {
  background: #ffffff;
  border: 1.5px solid var(--border-color);
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  margin-right: 0.65rem;
  transition: border-color var(--transition-fast);
}

.domain-tld-select:focus {
  border-color: var(--primary);
}

.domain-submit-btn {
  padding: 1.05rem 2.25rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

/* Extension Pills */
.domain-extensions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.tld-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-color);
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  user-select: none;
}

.tld-pill:hover {
  background: #ffffff;
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.tld-name {
  font-weight: 800;
  color: var(--text-main);
}

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

.tld-pill.tld-bd .tld-price {
  color: #d97706;
}

/* Results Box */
.domain-results-box {
  margin-top: 2.25rem;
  display: none;
  border-top: 1.5px solid var(--border-color);
  padding-top: 2rem;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.domain-results-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.domain-result-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border-color);
  background: var(--bg-surface);
  transition: all var(--transition-fast);
}

.domain-result-card.is-available {
  border-color: var(--success-border);
  background: var(--success-bg);
}

.domain-result-card.is-unavailable {
  border-color: #fed7aa;
  background: #fffaf5;
}

.result-left {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

.result-status-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.1rem;
}

.is-available .result-status-icon {
  background: #d1fae5;
  color: var(--success-dark);
}

.is-unavailable .result-status-icon {
  background: #fee2e2;
  color: var(--danger);
}

.result-domain-name {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.result-domain-status {
  font-size: 0.85rem;
  font-weight: 700;
}
.is-available .result-domain-status { color: var(--success-dark); }
.is-unavailable .result-domain-status { color: var(--text-muted); }

.result-right {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.result-price-tag {
  text-align: right;
}

.result-price-num {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--text-main);
  font-family: var(--font-heading);
}

.result-price-period {
  font-size: 0.775rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   4. SERVICES SECTION
   ========================================================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

.service-icon-wrap {
  width: 68px;
  height: 68px;
  border-radius: var(--radius-lg);
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.85rem;
  margin-bottom: 1.65rem;
  transition: all var(--transition-fast);
  border: 1px solid #bfdbfe;
}

.service-card:hover .service-icon-wrap {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.06);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.35);
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 0.95rem;
  color: var(--text-main);
}

.service-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 1.85rem;
  flex-grow: 1;
}

.service-features-list {
  margin-bottom: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.service-features-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: var(--text-body);
  font-weight: 600;
}

.service-features-list li i {
  color: var(--success);
  font-size: 0.9rem;
}

.service-btn {
  margin-top: auto;
}

/* ==========================================================================
   5. WEB HOSTING PLANS SECTION
   ========================================================================== */
.pricing-billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 3.75rem;
}

.toggle-label {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
  transition: color var(--transition-fast);
}

.toggle-label.active {
  color: var(--text-main);
  font-weight: 800;
}

.switch-control {
  position: relative;
  display: inline-block;
  width: 62px;
  height: 34px;
}

.switch-control input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider-round {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: .35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 34px;
}

.slider-round:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .35s cubic-bezier(0.16, 1, 0.3, 1);
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

input:checked + .slider-round {
  background: var(--gradient-primary);
}

input:checked + .slider-round:before {
  transform: translateX(28px);
}

.discount-tag {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.15);
}

.pricing-cards-grid,
.pricing-cards-grid-5 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.pricing-cards-grid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 1024px) {
  .pricing-cards-grid,
  .pricing-cards-grid-5,
  .pricing-cards-grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 640px) {
  .pricing-cards-grid,
  .pricing-cards-grid-5,
  .pricing-cards-grid-6 {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.pricing-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.65rem 1.85rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
  overflow: hidden;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #cbd5e1, #94a3b8);
  opacity: 0.5;
  transition: all var(--transition-normal);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.12);
  border-color: var(--primary-light);
}

.pricing-card:hover::before {
  background: var(--gradient-primary);
  opacity: 1;
  height: 5px;
}

.pricing-card.is-popular {
  border: 2px solid var(--primary);
  box-shadow: 0 22px 50px -10px rgba(37, 99, 235, 0.25);
  background: linear-gradient(180deg, #ffffff 0%, #f0f7ff 100%);
  transform: translateY(-4px);
}

.pricing-card.is-popular::before {
  height: 6px;
  background: var(--gradient-primary);
  opacity: 1;
}

.pricing-card.is-popular:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px -10px rgba(37, 99, 235, 0.35);
}

.popular-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--gradient-primary);
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.plan-header {
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #f1f5f9;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  margin-bottom: 0.35rem;
  color: var(--text-main);
  letter-spacing: -0.01em;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  min-height: 36px;
  line-height: 1.45;
}

.plan-storage-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  color: var(--primary-dark);
  border: 1px solid #bfdbfe;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.8);
}

.pricing-card.is-popular .plan-storage-badge {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: #1e40af;
  border-color: #93c5fd;
}

.plan-price-wrap {
  margin-bottom: 1.5rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-currency {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-main);
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.45rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

.price-period {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 600;
  margin-left: 0.15rem;
}

.plan-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-body);
}

.feature-check-icon {
  color: var(--success);
  font-size: 0.875rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.feature-bold {
  font-weight: 800;
  color: var(--text-main);
}

.plan-cta-wrap {
  margin-top: auto;
}

/* ==========================================================================
   6. DEDICATED HOSTING SECTION
   ========================================================================== */
.dedicated-table-wrapper {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow-x: auto;
  margin-bottom: 2rem;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

/* TLD Modern Pricing Table (Exact Design as Requested) */
.tld-table-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid #e2e8f0;
  width: 100%;
}

.tld-modern-table {
  width: 100%;
  border-collapse: collapse;
}

.tld-modern-table thead {
  background: #020638;
}

.tld-modern-table th {
  padding: 1.25rem 2rem;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.tld-modern-table th:nth-child(2),
.tld-modern-table th:nth-child(3),
.tld-modern-table th:nth-child(4) {
  text-align: center;
}

.tld-modern-table td {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid #f1f5f9;
  vertical-align: middle;
}

.tld-modern-table tbody tr {
  transition: background-color 0.2s ease;
}

.tld-modern-table tbody tr:hover {
  background-color: #f8fafc;
}

.tld-cell-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.tld-name-text {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  color: #0f172a;
}

.tld-sale-badge {
  font-size: 0.725rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: #8b80f9;
  color: #ffffff;
  line-height: 1;
}

.tld-hot-badge {
  font-size: 0.725rem;
  font-weight: 800;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background: #fca5a5;
  color: #dc2626;
  line-height: 1;
}

.tld-price-block {
  text-align: center;
}

.tld-price-amount {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 800;
  color: #1e293b;
  display: block;
}

.tld-price-sub {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
  display: block;
  margin-top: 0.15rem;
}

/* Tablet & Mobile Responsiveness for TLD Table */
@media (max-width: 768px) {
  .tld-table-card {
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
  }

  .tld-modern-table, 
  .tld-modern-table thead, 
  .tld-modern-table tbody, 
  .tld-modern-table th, 
  .tld-modern-table td, 
  .tld-modern-table tr {
    display: block;
  }

  .tld-modern-table thead {
    display: none; /* Hide header row on mobile */
  }

  .tld-modern-table tbody tr {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
    padding: 1.25rem 1.15rem;
    box-shadow: var(--shadow-sm);
  }

  .tld-modern-table tbody tr:hover {
    border-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
  }

  .tld-modern-table td {
    padding: 0.45rem 0;
    border-bottom: none;
  }

  .tld-modern-table td:first-child {
    padding: 0 0 0.75rem 0;
    border-bottom: 1.5px solid #f1f5f9;
    margin-bottom: 0.65rem;
  }

  .tld-modern-table td:not(:first-child) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: right;
  }

  .tld-modern-table td:nth-child(2)::before {
    content: "New Price:";
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-muted);
  }

  .tld-modern-table td:nth-child(3)::before {
    content: "Transfer:";
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-muted);
  }

  .tld-modern-table td:nth-child(4)::before {
    content: "Renewal:";
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--text-muted);
  }

  .tld-price-block {
    text-align: right;
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
  }

  .tld-price-amount {
    font-size: 1.05rem;
  }

  .tld-price-sub {
    font-size: 0.8rem;
    margin-top: 0;
  }
}

.dedicated-table-wrapper {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow-x: auto;
  margin-bottom: 2rem;
  position: relative;
  -webkit-overflow-scrolling: touch;
  max-width: 100%;
}

.dedicated-table-wrapper::-webkit-scrollbar {
  height: 8px;
}

.dedicated-table-wrapper::-webkit-scrollbar-track {
  background: var(--bg-surface-alt);
  border-radius: 4px;
}

.dedicated-table-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
  border-radius: 4px;
}

.dedicated-pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 750px;
}

.dedicated-pricing-table th,
.dedicated-pricing-table td {
  padding: 1.35rem 1.65rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
}

.dedicated-pricing-table th:first-child,
.dedicated-pricing-table td:first-child {
  text-align: left;
  font-weight: 800;
  color: var(--text-main);
  background: var(--bg-surface);
  border-right: 1.5px solid var(--border-color);
  min-width: 200px;
}

@media (max-width: 992px) {
  .dedicated-pricing-table th:first-child,
  .dedicated-pricing-table td:first-child {
    position: static !important;
    min-width: 150px !important;
  }
}

.dedicated-pricing-table thead th {
  background: var(--bg-surface-alt);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-main);
}

.dedicated-pricing-table thead th.col-highlight {
  background: #eff6ff;
  color: var(--primary);
  position: relative;
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
}

.best-value-pill {
  display: block;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: var(--primary);
  color: #ffffff;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.4rem;
  box-shadow: 0 2px 6px rgba(37, 99, 235, 0.3);
}

.dedicated-pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.dedicated-pricing-table tbody tr:hover td {
  background-color: #f8fafc;
}

.dedicated-pricing-table tbody tr:hover td.col-highlight {
  background-color: #e0f2fe;
}

.dedicated-pricing-table td.col-highlight {
  background-color: #f0f9ff;
  font-weight: 600;
  border-left: 2px solid var(--primary);
  border-right: 2px solid var(--primary);
}

.table-price-num {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--primary-dark);
}

.table-storage-spec {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
}

.table-vat-note-box {
  background: #fffbeb;
  border: 1.5px solid #fde68a;
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.08);
}

.vat-note-text {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #92400e;
  font-weight: 800;
  font-size: 1rem;
}

.vat-note-text i {
  font-size: 1.25rem;
}

/* ==========================================================================
   7. SSL CERTIFICATE SECTION (Modern Redesigned UI)
   ========================================================================== */
.ssl-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  align-items: stretch;
  margin-bottom: 3.5rem;
}

@media (max-width: 1200px) {
  .ssl-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .ssl-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.ssl-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.ssl-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 35px -10px rgba(15, 23, 42, 0.12), 0 0 0 1px var(--primary-light);
  border-color: var(--primary-light);
}

/* Card Accent Top Bars */
.ssl-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  opacity: 0.8;
  transition: height 0.3s ease;
}

.ssl-card:hover::before {
  height: 6px;
}

.ssl-card.card-dv::before {
  background: linear-gradient(90deg, #2563eb, #38bdf8);
}

.ssl-card.card-wildcard::before {
  background: linear-gradient(90deg, #7c3aed, #a855f7, #ec4899);
  height: 5px;
}

.ssl-card.card-ov::before {
  background: linear-gradient(90deg, #d97706, #f59e0b, #fbbf24);
}

.ssl-card.card-ev::before {
  background: linear-gradient(90deg, #059669, #10b981, #34d399);
  height: 5px;
}

/* Most Popular Wildcard Card Highlight */
.ssl-card.is-popular {
  border-color: #818cf8;
  background: linear-gradient(180deg, rgba(238, 242, 255, 0.5) 0%, var(--bg-surface) 100%);
  box-shadow: 0 12px 30px -8px rgba(99, 102, 241, 0.2);
}

.ssl-card.is-popular:hover {
  box-shadow: 0 25px 45px -10px rgba(99, 102, 241, 0.3), 0 0 0 2px #6366f1;
}

/* EV Enterprise Card Highlight */
.ssl-card.is-enterprise {
  border-color: #6ee7b7;
  background: linear-gradient(180deg, rgba(236, 253, 245, 0.5) 0%, var(--bg-surface) 100%);
}

.ssl-card.is-enterprise:hover {
  box-shadow: 0 25px 45px -10px rgba(16, 185, 129, 0.25), 0 0 0 2px #10b981;
}

/* Ribbon Badges */
.ssl-ribbon {
  position: absolute;
  top: 14px;
  right: -32px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 34px;
  box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
  z-index: 3;
}

.ssl-ribbon.ribbon-green {
  background: linear-gradient(135deg, #059669, #10b981);
  box-shadow: 0 4px 10px rgba(16, 185, 129, 0.3);
}

/* Top Icon & Tag */
.ssl-card-top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.ssl-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: all var(--transition-fast);
}

.ssl-card:hover .ssl-card-icon {
  transform: scale(1.1) rotate(4deg);
}

.ssl-icon-dv {
  background: #eff6ff;
  color: #2563eb;
  border: 1px solid #bfdbfe;
}

.ssl-icon-wildcard {
  background: #f5f3ff;
  color: #7c3aed;
  border: 1px solid #ddd6fe;
}

.ssl-icon-ov {
  background: #fffbeb;
  color: #d97706;
  border: 1px solid #fde68a;
}

.ssl-icon-ev {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.ssl-type-tag {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  background: var(--bg-surface-alt);
  color: var(--text-muted);
  border: 1px solid var(--border-color);
}

.tag-blue { background: #eff6ff; color: #1d4ed8; border-color: #bfdbfe; }
.tag-purple { background: #f5f3ff; color: #6d28d9; border-color: #ddd6fe; }
.tag-amber { background: #fffbeb; color: #b45309; border-color: #fde68a; }
.tag-emerald { background: #ecfdf5; color: #047857; border-color: #a7f3d0; }

/* Card Title & Desc */
.ssl-card-title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--text-main);
  margin-bottom: 0.4rem;
  letter-spacing: -0.015em;
}

.ssl-card-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 1.25rem;
  min-height: 40px;
}

/* Browser Address Bar Simulation Mockup */
.ssl-browser-pill {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  padding: 0.5rem 0.75rem;
  font-size: 0.775rem;
  font-family: 'JetBrains Mono', 'Courier New', monospace;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.ssl-browser-pill i {
  font-size: 0.85rem;
}

.ssl-browser-pill.ssl-browser-ev {
  background: #ecfdf5;
  border-color: #a7f3d0;
  color: #065f46;
}

.ssl-browser-pill.ssl-browser-wildcard {
  background: #f5f3ff;
  border-color: #ddd6fe;
  color: #5b21b6;
}

/* Stat Chips (Warranty & Issuance) */
.ssl-stat-chips {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.35rem;
}

.ssl-stat-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.725rem;
  font-weight: 700;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: var(--bg-surface-alt);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

.ssl-stat-chip i {
  color: var(--primary);
  font-size: 0.75rem;
}

.ssl-stat-chip.chip-highlight {
  background: #fdf2f8;
  color: #9d174d;
  border-color: #fbcfe8;
}
.ssl-stat-chip.chip-highlight i {
  color: #db2777;
}

.ssl-stat-chip.chip-emerald {
  background: #ecfdf5;
  color: #065f46;
  border-color: #a7f3d0;
}
.ssl-stat-chip.chip-emerald i {
  color: #059669;
}

/* Price Box */
.ssl-price-box {
  background: var(--bg-surface-alt);
  border: 1px dashed var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1rem;
  text-align: center;
  margin-bottom: 1.35rem;
}

.ssl-price-main {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.25rem;
}

.ssl-price-currency {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-muted);
}

.ssl-price-amount {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text-main);
  line-height: 1;
}

.ssl-price-period {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

.ssl-price-vat-note {
  font-size: 0.725rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* Features List */
.ssl-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-grow: 1;
}

.ssl-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.4;
}

.ssl-features-list li i {
  color: #10b981;
  font-size: 0.95rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.ssl-features-list li strong {
  color: var(--text-main);
}

/* Card Actions */
.ssl-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: auto;
}

/* ==========================================================================
   SSL COMPARISON MATRIX TABLE
   ========================================================================== */
.ssl-comparison-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 4rem;
}

.ssl-comparison-header {
  padding: 2rem 2.5rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-surface-alt) 0%, var(--bg-surface) 100%);
  border-bottom: 1px solid var(--border-color);
  text-align: center;
}

.ssl-compare-table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.ssl-compare-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.925rem;
}

.ssl-compare-table th,
.ssl-compare-table td {
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border-color);
}

.ssl-compare-table thead th {
  background: #f8fafc;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--text-main);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ssl-compare-table thead th.col-popular {
  background: #eff6ff;
  color: #1d4ed8;
  border-left: 2px solid #3b82f6;
  border-right: 2px solid #3b82f6;
}

.ssl-compare-table tbody tr:hover {
  background: var(--bg-surface-alt);
}

.ssl-compare-table td.col-popular {
  background: rgba(239, 246, 255, 0.4);
  border-left: 2px solid #bfdbfe;
  border-right: 2px solid #bfdbfe;
}

.ssl-check-yes {
  color: #10b981;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ssl-check-no {
  color: #94a3b8;
  font-weight: 600;
}

/* ==========================================================================
   8. TRUSTED SSL BRANDS (Modern Redesigned Logo Trust Grid)
   ========================================================================== */
.ssl-brands-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 992px) {
  .ssl-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .ssl-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ssl-brand-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.ssl-brand-card:hover {
  background: #ffffff;
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.ssl-brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-surface-alt);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: all var(--transition-fast);
}

.ssl-brand-card:hover .ssl-brand-icon {
  background: var(--primary);
  color: #ffffff;
  transform: scale(1.1);
}

.ssl-brand-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
}

.ssl-brand-type {
  font-size: 0.725rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

/* ==========================================================================
   9. WHY CHOOSE US
   ========================================================================== */
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
}

.why-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 1.5rem;
}

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

.why-icon-box {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-lg);
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
  border: 1px solid #bfdbfe;
}

.why-title {
  font-size: 1.35rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.why-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ==========================================================================
   10. HOSTING FEATURES (10-Card Feature Grid)
   ========================================================================== */
.features-grid-10 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.65rem;
}

.feature-tile {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.35rem;
  text-align: center;
  transition: all var(--transition-normal);
  box-shadow: var(--shadow-xs);
}

.feature-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.feature-tile-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.15rem auto;
  border-radius: 50%;
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  border: 1px solid #bfdbfe;
  transition: all var(--transition-fast);
}

.feature-tile:hover .feature-tile-icon {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: transparent;
  transform: rotate(6deg) scale(1.08);
}

.feature-tile-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.45rem;
  color: var(--text-main);
}

.feature-tile-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ==========================================================================
   11. HOW IT WORKS
   ========================================================================== */
.steps-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 12%;
  right: 12%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent-cyan) 100%);
  z-index: 1;
}

.step-item {
  position: relative;
  z-index: 2;
  text-align: center;
}

.step-number-box {
  width: 76px;
  height: 76px;
  margin: 0 auto 1.75rem auto;
  background: var(--bg-surface);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--primary);
  box-shadow: 0 0 0 10px var(--bg-main), var(--shadow-md);
  transition: all var(--transition-fast);
}

.step-item:hover .step-number-box {
  background: var(--gradient-primary);
  color: #ffffff;
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 0 0 10px var(--bg-main), 0 10px 25px rgba(37, 99, 235, 0.4);
}

.step-title {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--text-main);
}

.step-desc {
  font-size: 0.925rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   12. SECURITY / INFRASTRUCTURE SECTION (Dark Obsidian Navy)
   ========================================================================== */
.infrastructure-section {
  background: #ffffff;
  color: var(--text-main);
  position: relative;
  overflow: hidden;
}

.infrastructure-section .section-title {
  color: var(--text-main);
}

.infrastructure-section .section-subtitle {
  color: var(--text-body);
}

.infra-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 4rem;
  align-items: center;
}

.infra-feature-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.infra-card {
  background: var(--bg-dark-card);
  border: 1.5px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition-fast);
}

.infra-card:hover {
  background: var(--bg-dark-card-hover);
  border-color: rgba(56, 189, 248, 0.45);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.infra-icon {
  font-size: 1.75rem;
  color: var(--accent-cyan-light);
  margin-bottom: 1rem;
}

.infra-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.45rem;
}

.infra-card-desc {
  font-size: 0.875rem;
  color: var(--text-dark-muted);
  line-height: 1.55;
}

.infra-visual-panel {
  background: #0a0f1d;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
}

.infra-metric-bar {
  margin-bottom: 1.65rem;
}

.infra-metric-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.925rem;
  margin-bottom: 0.6rem;
  color: #e2e8f0;
  font-weight: 600;
}

.metric-progress-bg {
  height: 10px;
  background: #1e293b;
  border-radius: var(--radius-pill);
  overflow: hidden;
}

.metric-progress-fill {
  height: 100%;
  background: var(--gradient-primary);
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   13. CUSTOMER REVIEWS
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem 1.85rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

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

.review-stars {
  display: flex;
  gap: 0.3rem;
  color: #f59e0b;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.review-quote {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.68;
  margin-bottom: 1.75rem;
  flex-grow: 1;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: auto;
}

.review-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary-100);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.15rem;
  flex-shrink: 0;
  border: 2.5px solid #ffffff;
  box-shadow: var(--shadow-sm);
}

.author-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.2;
}

.author-role {
  font-size: 0.8125rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   14. FAQ SECTION (Accordion)
   ========================================================================== */
.faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.faq-accordion-item {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  margin-bottom: 1.15rem;
  overflow: hidden;
  transition: all var(--transition-fast);
}

.faq-accordion-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-main);
  transition: color var(--transition-fast);
}

.faq-accordion-item.active .faq-question-btn {
  color: var(--primary);
}

.faq-chevron {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: transform var(--transition-normal);
  flex-shrink: 0;
  margin-left: 1.25rem;
}

.faq-accordion-item.active .faq-chevron {
  transform: rotate(180deg);
  background: #eff6ff;
  color: var(--primary);
}

.faq-answer-pane {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s cubic-bezier(0.16, 1, 0.3, 1), padding 0.38s ease;
  padding: 0 2rem;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.faq-accordion-item.active .faq-answer-pane {
  padding-bottom: 1.75rem;
}

/* ==========================================================================
   15. CTA BANNER
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, #090d16 0%, #1e3a8a 50%, #0284c7 100%);
  border-radius: var(--radius-xl);
  padding: 5rem 3.5rem;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cta-banner::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.25) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cta-banner h2 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.cta-banner p {
  color: #cbd5e1;
  font-size: 1.22rem;
  margin-bottom: 2.5rem;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ==========================================================================
   16. CONTACT SECTION
   ========================================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.contact-method-card {
  display: flex;
  align-items: flex-start;
  gap: 1.35rem;
  padding: 1.5rem;
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.contact-method-card:hover {
  border-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.contact-icon-box {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: #eff6ff;
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
  border: 1px solid #bfdbfe;
}

.contact-detail-title {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.contact-detail-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-main);
}

/* Contact Form */
.contact-form-card {
  background: var(--bg-surface);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-lg);
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.form-control {
  width: 100%;
  padding: 0.95rem 1.25rem;
  background: var(--bg-surface-alt);
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  font-size: 1rem;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-control:focus {
  background: #ffffff;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px var(--primary-glow);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

/* ==========================================================================
   17. MEGA FOOTER
   ========================================================================== */
.site-footer {
  background: #060911;
  color: #94a3b8;
  padding-top: 5.5rem;
  border-top: 1px solid #1e293b;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 4.5rem;
}

.footer-brand-col p {
  font-size: 0.95rem;
  line-height: 1.68;
  margin: 1.4rem 0 1.85rem 0;
  color: #94a3b8;
}

.footer-social-links {
  display: flex;
  gap: 0.85rem;
}

.social-link-btn {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: #131d33;
  color: #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  transition: all var(--transition-fast);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link-btn:hover {
  background: var(--primary);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.footer-heading {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-nav-list a {
  color: #94a3b8;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.footer-nav-list a:hover {
  color: #38bdf8;
  padding-left: 5px;
}

.footer-bottom-bar {
  border-top: 1px solid #131d33;
  padding: 2.25rem 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.925rem;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-payments-list {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 1.5rem;
  color: #64748b;
}

/* ==========================================================================
   MODAL & TOAST NOTIFICATION STYLES
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 9, 17, 0.75);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.modal-container {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
  border: 1.5px solid var(--border-color);
  transform: scale(0.94);
  transition: transform var(--transition-normal);
  padding: 2.5rem;
  position: relative;
}

.modal-overlay.is-active .modal-container {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--bg-surface-alt);
  border: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #fee2e2;
  color: var(--danger);
}

.modal-header {
  margin-bottom: 1.65rem;
}

.modal-header h3 {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.toast {
  background: #0a0f1d;
  color: #ffffff;
  padding: 1.15rem 1.65rem;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.95rem;
  border-left: 5px solid var(--primary);
  animation: slideInRight 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.toast.toast-success {
  border-left-color: var(--success);
}

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

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2.25rem;
  right: 2.25rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 999;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.55);
}

/* ==========================================================================
   RESPONSIVE BREAKPOINTS & MOBILE-FIRST OPTIMIZATION
   ========================================================================== */

/* 1. Large Laptops & Tablets (1400px and below) */
@media (max-width: 1400px) {
  .pricing-cards-grid,
  .pricing-cards-grid-5,
  .pricing-cards-grid-6 {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
  
  .features-grid-10 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 2. Standard Laptops & Navigation Breakpoint (1250px and below) */
@media (max-width: 1250px) {
  .nav-menu,
  .nav-actions {
    display: none !important;
  }
  
  .mobile-toggle {
    display: block !important;
  }

  .pricing-cards-grid,
  .pricing-cards-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  .services-grid,
  .ssl-cards-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .features-grid-10 {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .ssl-brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .footer-top-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2.5rem;
  }
}

/* 3. Medium Tablets & Small Laptops (1024px and below) */
@media (max-width: 1024px) {
  .pricing-cards-grid,
  .pricing-cards-grid-5,
  .pricing-cards-grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-ctas {
    justify-content: center;
  }
  
  .hero-trust-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .steps-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 2rem;
  }
  
  .steps-container::before {
    display: none;
  }
  
  .infra-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .ssl-brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .floating-stat-card {
    display: none !important;
  }
}

/* 4. Small Tablets & Phablets (768px and below) */
@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }

  .section-padding-sm {
    padding: 3rem 0;
  }

  .page-hero {
    padding: 3.25rem 0 2.75rem 0;
  }

  .services-grid,
  .ssl-cards-grid,
  .reviews-grid,
  .why-us-grid,
  .features-grid-10,
  .contact-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .pricing-card.is-popular {
    transform: none !important;
  }
  .pricing-card.is-popular:hover {
    transform: translateY(-6px) !important;
  }
  
  .form-group-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .domain-search-wrapper {
    margin-top: -2.5rem;
  }

  .domain-search-card {
    padding: 2rem 1.25rem;
  }

  .domain-form {
    flex-direction: column;
    padding: 0.85rem;
    gap: 0.85rem;
  }
  
  .domain-input-icon {
    display: none;
  }
  
  .domain-input {
    width: 100%;
    padding: 0.5rem;
    text-align: center;
  }
  
  .domain-tld-select,
  .domain-submit-btn {
    width: 100%;
    margin-right: 0;
  }
  
  .domain-results-grid {
    grid-template-columns: 1fr;
  }
  
  .ssl-brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  
  .top-notice-bar {
    display: none;
  }

  .dedicated-pricing-table th,
  .dedicated-pricing-table td {
    padding: 0.95rem 1.15rem;
  }

  .server-mockup-card {
    padding: 1.5rem 1.25rem;
  }
}

/* 5. Mobile Phones (576px and below) */
@media (max-width: 576px) {
  .container {
    padding-left: 1.15rem !important;
    padding-right: 1.15rem !important;
  }

  .section-padding {
    padding: 3.25rem 0;
  }

  .pricing-cards-grid,
  .pricing-cards-grid-5,
  .pricing-cards-grid-6 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 1.75rem 1.25rem;
  }

  .hero-headline {
    font-size: 2.1rem;
  }

  .hero-subheadline {
    font-size: 1.05rem;
  }

  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .hero-trust-bar {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

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

  .footer-top-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  
  .footer-security-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  .footer-security-badges span {
    margin-right: 0 !important;
  }

  .domain-result-card {
    flex-direction: column;
    text-align: center;
    gap: 1.25rem;
    padding: 1.25rem;
  }

  .domain-result-card .result-left,
  .domain-result-card .result-right {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .domain-result-card .btn {
    width: 100%;
  }

  .pricing-billing-toggle {
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
  }

  .dedicated-pricing-table th:first-child,
  .dedicated-pricing-table td:first-child {
    min-width: 140px;
    font-size: 0.82rem;
    padding: 0.75rem 0.85rem;
  }

  .dedicated-pricing-table th,
  .dedicated-pricing-table td {
    padding: 0.75rem 0.85rem;
    font-size: 0.85rem;
  }

  .modal-container {
    width: 95%;
    padding: 1.5rem 1.15rem;
    max-height: 92vh;
  }
}

/* 6. Ultra-Compact Phones (400px and below) */
@media (max-width: 400px) {
  .brand-logo {
    font-size: 1.35rem;
  }

  .logo-icon-box {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .ssl-brands-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.65rem;
  }
}

/* ==========================================================================
   FUTURISTIC & CYBER MOTION SUITE
   ========================================================================== */

/* 1. Futuristic Animated Laser Grid & Radial Glow Orbs */
.cyber-canvas-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.cyber-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
  pointer-events: none;
  animation: float-orb 16s ease-in-out infinite alternate;
}

.cyber-orb-1 {
  top: -10%;
  right: 5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.4) 0%, rgba(6, 182, 212, 0.2) 60%, transparent 80%);
}

.cyber-orb-2 {
  bottom: 0;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.35) 0%, rgba(139, 92, 246, 0.15) 60%, transparent 80%);
  animation-duration: 22s;
  animation-delay: -5s;
}

@keyframes float-orb {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-30px, 40px) scale(1.1); }
  100% { transform: translate(25px, -30px) scale(0.95); }
}

/* 2. Futuristic Scanline Animation in Hero Grid */
.hero-bg-grid::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.18), transparent);
  animation: scanline-pass 7s linear infinite;
  pointer-events: none;
}

@keyframes scanline-pass {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(1000%); }
}

/* 3. Cyber Holographic Gradient Border and Neon Glow on Cards */
.pricing-card, 
.service-card, 
.why-card, 
.domain-search-card, 
.infra-spec-card,
.ssl-feature-card,
.contact-method-item,
.review-card {
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s ease;
  will-change: transform;
}

.pricing-card:hover,
.service-card:hover,
.why-card:hover,
.infra-spec-card:hover,
.ssl-feature-card:hover,
.review-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 20px 40px -10px rgba(37, 99, 235, 0.22), 0 0 25px rgba(6, 182, 212, 0.15);
  border-color: rgba(37, 99, 235, 0.5) !important;
}

/* Interactive Card Spotlight Effect */
.has-spotlight {
  position: relative;
  overflow: hidden;
}

.has-spotlight::before {
  content: '';
  position: absolute;
  top: var(--spotlight-y, -100px);
  left: var(--spotlight-x, -100px);
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.2) 0%, rgba(37, 99, 235, 0.08) 50%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.has-spotlight:hover::before {
  opacity: 1;
}

/* 4. Glowing Neon Badge with Radar Pulse */
.section-badge,
.hero-badge-pill {
  position: relative;
}

.section-badge::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, #2563eb, #06b6d4, #6366f1);
  border-radius: inherit;
  z-index: -1;
  opacity: 0.3;
  filter: blur(4px);
  transition: opacity 0.3s ease;
}

.section-badge:hover::before {
  opacity: 0.7;
}

/* 5. Button Laser Shine / Hologram Sweep */
.btn-primary, 
.btn-secondary,
.domain-submit-btn {
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -100%;
  width: 50%;
  height: 200%;
  background: linear-gradient(
    60deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: rotate(25deg);
  transition: none;
  animation: btn-shine-sweep 4.5s ease-in-out infinite;
}

@keyframes btn-shine-sweep {
  0%, 65% { left: -100%; }
  100% { left: 200%; }
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4), 0 0 15px rgba(6, 182, 212, 0.3);
}

/* 6. Scroll Reveal Motion Classes */
.reveal-init {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-init.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-left.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-right.is-revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-scale.is-revealed {
  opacity: 1;
  transform: scale(1);
}

/* Stagger Delays for Grids */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }

/* 7. Floating 3D Micro-Motion */
.floating-element-1 {
  animation: float-3d-1 5s ease-in-out infinite alternate;
}
.floating-element-2 {
  animation: float-3d-2 6.5s ease-in-out infinite alternate;
}
.floating-element-3 {
  animation: float-3d-3 4.8s ease-in-out infinite alternate;
}

@keyframes float-3d-1 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(-12px) rotate(1.5deg); }
}
@keyframes float-3d-2 {
  0% { transform: translateY(0px) rotate(0deg); }
  100% { transform: translateY(14px) rotate(-1.5deg); }
}
@keyframes float-3d-3 {
  0% { transform: translateY(0px) scale(1); }
  100% { transform: translateY(-9px) scale(1.02); }
}

/* 8. Popular Pricing Card Glowing Border Animation */
.pricing-card.is-popular {
  border: 2px solid transparent !important;
  background: linear-gradient(var(--bg-surface), var(--bg-surface)) padding-box,
              linear-gradient(135deg, #3b82f6, #06b6d4, #8b5cf6, #3b82f6) border-box !important;
  background-size: 200% 200% !important;
  animation: animated-border-gradient 6s ease infinite !important;
  box-shadow: 0 15px 35px -5px rgba(37, 99, 235, 0.25), 0 0 20px rgba(6, 182, 212, 0.2) !important;
}

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

/* 9. Futuristic Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #090d16;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #2563eb, #06b6d4);
  border-radius: 6px;
  border: 2px solid #090d16;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #3b82f6, #22d3ee);
}

/* 10. Cyber Mouse Glow Follower */
.cyber-cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(37, 99, 235, 0.05) 50%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 9999;
  transition: opacity 0.3s ease;
  will-change: left, top;
}

/* 11. Live Server Cyber Terminal Log Stream */
.server-terminal-stream {
  background: #060911;
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.15rem;
  font-family: var(--font-mono);
  font-size: 0.775rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.6);
  position: relative;
  overflow: hidden;
}

.server-terminal-stream::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #06b6d4, transparent);
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #94a3b8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.term-prefix {
  color: #38bdf8;
  font-weight: 800;
}

.term-cmd {
  color: #a78bfa;
  font-weight: 700;
}

.term-ok {
  color: #34d399;
  font-weight: 800;
}

.term-text {
  color: #cbd5e1;
}

.term-dynamic {
  color: #38bdf8;
  font-weight: 600;
}

.term-cursor {
  display: inline-block;
  width: 7px;
  height: 14px;
  background: #38bdf8;
  margin-left: 2px;
  vertical-align: middle;
  animation: blink-cursor 0.9s infinite;
}

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

/* 12. Futuristic Glowing Headline Text Gradient */
.hero-headline .gradient-text {
  background: linear-gradient(135deg, #2563eb 0%, #06b6d4 50%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% 200%;
  animation: text-gradient-shift 5s ease infinite;
}

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

/* 13. High-Tech Glass Cards Glow Overlays */
.domain-search-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
  border: 1.5px solid rgba(37, 99, 235, 0.15);
  box-shadow: 0 25px 60px -15px rgba(37, 99, 235, 0.15), 0 0 30px rgba(6, 182, 212, 0.1) !important;
}

.tld-pill {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid var(--border-color);
}

.tld-pill:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: #38bdf8;
  box-shadow: 0 10px 20px -5px rgba(6, 182, 212, 0.3), 0 0 15px rgba(59, 130, 246, 0.2);
  background: #f0fdfa;
}



 / *   = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = 
       A B O U T   P A G E :   A D V A N T A G E   S E C T I O N   ( I n s p i r e d   b y   I n n o v a t i v e ) 
       = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =   * / 
 . a d v a n t a g e - s e c t i o n   { 
     p a d d i n g :   4 r e m   0 ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 8 0 d e g ,   v a r ( - - b g - s u r f a c e - a l t )   0 % ,   # f f f f f f   1 0 0 % ) ; 
     b o r d e r - b o t t o m :   1 p x   s o l i d   v a r ( - - b o r d e r - c o l o r ) ; 
 } 
 
 . s e r v i c e s - h e a d e r - w r a p   { 
     t e x t - a l i g n :   c e n t e r ; 
     m a r g i n - b o t t o m :   3 r e m ; 
 } 
 
 . a d v a n t a g e - s e c t i o n   . s e r v i c e - g r i d   { 
     d i s p l a y :   g r i d ; 
     g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 3 ,   1 f r ) ; 
     g a p :   2 r e m ; 
     m a x - w i d t h :   1 0 0 0 p x ; 
     m a r g i n :   0   a u t o ; 
 } 
 
 . a d v a n t a g e - s e c t i o n   . s e r v i c e - i t e m   { 
     t e x t - a l i g n :   c e n t e r ; 
     d i s p l a y :   f l e x ; 
     f l e x - d i r e c t i o n :   c o l u m n ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     t e x t - d e c o r a t i o n :   n o n e ; 
     t r a n s i t i o n :   a l l   0 . 3 s   e a s e ; 
     b a c k g r o u n d :   # f f f f f f ; 
     b o r d e r - r a d i u s :   v a r ( - - r a d i u s - l g ) ; 
     p a d d i n g :   2 r e m   1 . 5 r e m ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - s m ) ; 
     b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r - l i g h t ) ; 
 } 
 
 . a d v a n t a g e - s e c t i o n   . s e r v i c e - i t e m : h o v e r   { 
     b o x - s h a d o w :   v a r ( - - s h a d o w - m d ) ; 
     t r a n s f o r m :   t r a n s l a t e Y ( - 5 p x ) ; 
     b o r d e r - c o l o r :   v a r ( - - p r i m a r y - 2 0 0 ) ; 
 } 
 
 . a d v a n t a g e - s e c t i o n   . s e r v i c e - c i r c l e   { 
     w i d t h :   8 0 p x ; 
     h e i g h t :   8 0 p x ; 
     b o r d e r - r a d i u s :   5 0 % ; 
     b o r d e r :   3 p x   s o l i d   v a r ( - - b o r d e r - m u t e d ,   # c b d 5 e 1 ) ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f f f f f f   0 % ,   v a r ( - - b g - s u r f a c e - a l t )   1 0 0 % ) ; 
     d i s p l a y :   f l e x ; 
     a l i g n - i t e m s :   c e n t e r ; 
     j u s t i f y - c o n t e n t :   c e n t e r ; 
     m a r g i n - b o t t o m :   1 . 2 5 r e m ; 
     b o x - s h a d o w :   v a r ( - - s h a d o w - s m ) ; 
     t r a n s i t i o n :   a l l   0 . 3 5 s   c u b i c - b e z i e r ( 0 . 1 6 ,   1 ,   0 . 3 ,   1 ) ; 
 } 
 
 . a d v a n t a g e - s e c t i o n   . s e r v i c e - i t e m : h o v e r   . s e r v i c e - c i r c l e   { 
     t r a n s f o r m :   s c a l e ( 1 . 1 )   t r a n s l a t e Y ( - 3 p x ) ; 
     b o r d e r - c o l o r :   v a r ( - - p r i m a r y ) ; 
     b o x - s h a d o w :   0   1 0 p x   2 5 p x   v a r ( - - p r i m a r y - g l o w ) ; 
     b a c k g r o u n d :   l i n e a r - g r a d i e n t ( 1 3 5 d e g ,   # f f f f f f   0 % ,   v a r ( - - p r i m a r y - 5 0 )   1 0 0 % ) ; 
 } 
 
 . a d v a n t a g e - s e c t i o n   . s e r v i c e - i c o n   { 
     f o n t - s i z e :   2 r e m ; 
     c o l o r :   v a r ( - - t e x t - m u t e d ) ; 
     t r a n s i t i o n :   a l l   0 . 3 5 s   e a s e ; 
 } 
 
 . a d v a n t a g e - s e c t i o n   . s e r v i c e - i t e m : h o v e r   . s e r v i c e - i c o n   { 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
     t r a n s f o r m :   s c a l e ( 1 . 1 ) ; 
 } 
 
 . a d v a n t a g e - s e c t i o n   . s e r v i c e - n a m e   { 
     f o n t - f a m i l y :   v a r ( - - f o n t - h e a d i n g ) ; 
     f o n t - s i z e :   1 . 1 r e m ; 
     f o n t - w e i g h t :   7 0 0 ; 
     c o l o r :   v a r ( - - t e x t - m a i n ) ; 
     m a r g i n - b o t t o m :   0 . 5 r e m ; 
     t e x t - t r a n s f o r m :   u p p e r c a s e ; 
     l e t t e r - s p a c i n g :   0 . 5 p x ; 
     t r a n s i t i o n :   c o l o r   0 . 2 5 s   e a s e ; 
 } 
 
 . a d v a n t a g e - s e c t i o n   . s e r v i c e - d e s c   { 
     f o n t - s i z e :   0 . 9 r e m ; 
     c o l o r :   v a r ( - - t e x t - b o d y ) ; 
     l i n e - h e i g h t :   1 . 5 ; 
 } 
 
 . a d v a n t a g e - s e c t i o n   . s e r v i c e - i t e m : h o v e r   . s e r v i c e - n a m e   { 
     c o l o r :   v a r ( - - p r i m a r y ) ; 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   9 9 2 p x )   { 
     . a d v a n t a g e - s e c t i o n   . s e r v i c e - g r i d   { 
         g r i d - t e m p l a t e - c o l u m n s :   r e p e a t ( 2 ,   1 f r ) ; 
     } 
 } 
 
 @ m e d i a   ( m a x - w i d t h :   5 7 6 p x )   { 
     . a d v a n t a g e - s e c t i o n   . s e r v i c e - g r i d   { 
         g r i d - t e m p l a t e - c o l u m n s :   1 f r ; 
     } 
 } 
  
 