/* ========================================
   AntlerHost - Custom Styles
   Beyond Tailwind CSS
   ======================================== */

/* ---------- CSS Variables ---------- */
:root {
  --primary-blue: #12239E;
  --secondary-blue: #1547B8;
  --ui-blue: #1F4ED8;
  --accent-green: #C7F046;
  --light-green: #D9F76B;
  --white: #FFFFFF;
  --light-gray: #E6E6E6;
  --dark-gray: #6B7280;
  --divider: #C9D2E3;
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Hero design system tokens */
  --hero-glass-bg: rgba(255, 255, 255, 0.85);
  --hero-glass-border: rgba(18, 35, 158, 0.08);
  --hero-glass-shadow: 0 24px 64px rgba(18, 35, 158, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  --hero-glass-blur: blur(16px);
  --hero-dark-glass-bg: rgba(14, 26, 110, 0.6);
  --hero-dark-glass-border: rgba(255, 255, 255, 0.08);
  --hero-dark-glass-shadow: 0 24px 64px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.15);
  --hero-meter-track: rgba(18, 35, 158, 0.06);
  --hero-dark-meter-track: rgba(255, 255, 255, 0.06);
  --hero-entrance-duration: 0.6s;
  --hero-entrance-easing: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Base Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-family);
  color: #1a1a2e;
  background-color: var(--white);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, #0e1a6e 0%, #12239E 40%, #1547B8 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(199, 240, 70, 0.3), transparent);
}

.navbar.scrolled {
  box-shadow: 0 4px 30px rgba(18, 35, 158, 0.35);
}

.navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 68px;
}

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

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

.navbar-menu {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

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

.navbar-menu > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 9px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.navbar-menu > li > a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}

.navbar-menu > li > a .chevron {
  width: 12px;
  height: 12px;
  opacity: 0.6;
  transition: all 0.2s ease;
}

.navbar-menu > li > a:hover .chevron {
  opacity: 1;
}

.navbar-menu > li:hover > a .chevron {
  transform: rotate(180deg);
}

/* ---------- Nav Item Accent Colors ---------- */
.navbar-menu > li.nav-dedicated > a:hover,
.navbar-menu > li.nav-dedicated > a[style*="background"] {
  color: #FFFFFF;
  background: #12239E;
}
.navbar-menu > li.nav-dedicated .mega-menu { --nav-accent: #12239E; --nav-accent-light: #4a6ad9; }

.navbar-menu > li.nav-cloud > a:hover,
.navbar-menu > li.nav-cloud > a[style*="background"] {
  color: #FFFFFF;
  background: #1547B8;
}
.navbar-menu > li.nav-cloud .mega-menu { --nav-accent: #1547B8; --nav-accent-light: #5b8ff5; }

.navbar-menu > li.nav-vps > a:hover,
.navbar-menu > li.nav-vps > a[style*="background"] {
  color: #FFFFFF;
  background: #1F4ED8;
}
.navbar-menu > li.nav-vps .mega-menu { --nav-accent: #1F4ED8; --nav-accent-light: #6B9FFF; }

.navbar-menu > li.nav-eco > a:hover,
.navbar-menu > li.nav-eco > a[style*="background"] {
  color: #FFFFFF;
  background: #059669;
}
.navbar-menu > li.nav-eco .mega-menu { --nav-accent: #059669; --nav-accent-light: #34d399; }

.navbar-menu > li.nav-premium > a:hover,
.navbar-menu > li.nav-premium > a[style*="background"] {
  color: #FFFFFF;
  background: #b45309;
}
.navbar-menu > li.nav-premium .mega-menu { --nav-accent: #b45309; --nav-accent-light: #f59e0b; }

/* ---------- Mega Menu ---------- */
.mega-menu {
  position: absolute;
  top: calc(100% + 4px);
  left: 50%;
  min-width: 720px;
  background: #F7F8FC;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 1001;
  overflow: hidden;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--nav-accent, #1F4ED8), var(--nav-accent-light, #6B9FFF));
  border-radius: 14px 14px 0 0;
}

.navbar-menu > li:hover > .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 8px;
}

.mega-menu-col {
  padding: 12px;
}

.mega-menu-col-title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--nav-accent, #1F4ED8);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eceef4;
}

.mega-menu-link {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #1a1a2e;
  transition: all 0.2s ease;
}

.mega-menu-link:hover {
  background: #FFFFFF;
  color: #0a0a1a;
}

.mega-menu-link-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--nav-accent, #1F4ED8);
  font-size: 16px;
  transition: all 0.2s ease;
}

.mega-menu-link:hover .mega-menu-link-icon {
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mega-menu-link-text h4 {
  font-size: 13.5px;
  font-weight: 700;
  margin: 0 0 2px 0;
  color: #1a1a2e;
}

.mega-menu-link-text p {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
  line-height: 1.4;
}

.mega-menu-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border-top: 1px solid #eceef4;
  background: #EEF0F6;
  border-radius: 0 0 14px 14px;
}

.mega-menu-footer a {
  font-size: 12px;
  font-weight: 600;
  color: var(--nav-accent, #1F4ED8);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: opacity 0.2s ease;
}

.mega-menu-footer a:hover {
  opacity: 0.7;
}

/* ---------- Navbar Actions ---------- */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-login {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 22px;
  font-size: 13.5px;
  font-weight: 700;
  color: #0a1628;
  background: var(--accent-green);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(199, 240, 70, 0.3);
}

.btn-login:hover {
  background: var(--light-green);
  box-shadow: 0 4px 18px rgba(199, 240, 70, 0.45);
  transform: translateY(-1px);
}

.btn-login svg {
  width: 14px;
  height: 14px;
}

/* ---------- Mobile Menu ---------- */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: rgba(255, 255, 255, 0.9);
}

.mobile-toggle svg {
  width: 24px;
  height: 24px;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1002;
  backdrop-filter: blur(4px);
}

.mobile-menu-overlay.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -340px;
  width: 340px;
  height: 100vh;
  background: linear-gradient(180deg, #0e1a6e 0%, #0a1440 100%);
  z-index: 1003;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow-y: auto;
  padding: 24px;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px;
  transition: color 0.2s ease;
}

.mobile-menu-close:hover {
  color: #FFFFFF;
}

.mobile-menu-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s ease;
}

.mobile-menu-nav a:hover {
  color: var(--accent-green);
  padding-left: 4px;
}

.mobile-menu-nav a svg {
  color: rgba(255, 255, 255, 0.3);
  transition: color 0.2s ease;
}

.mobile-menu-nav a:hover svg {
  color: var(--accent-green);
}

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
}

/* ---------- Hero Sections ---------- */
.hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(180deg, #f8f9ff 0%, var(--white) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(18, 35, 158, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

/* ---------- Home Hero ---------- */
.hero-home {
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
  color: #1a1a2e;
}

.hero-home::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(18, 35, 158, 0.06) 0%, rgba(199, 240, 70, 0.04) 40%, transparent 70%);
  pointer-events: none;
}

.hero-home::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(199, 240, 70, 0.05) 0%, rgba(18, 35, 158, 0.03) 40%, transparent 70%);
  pointer-events: none;
}

@media (max-width: 1024px) {
  .hero-home > div > div {
    grid-template-columns: 1fr !important;
    text-align: center;
  }
  .hero-home h1 {
    font-size: 38px !important;
  }
  .hero-home p {
    max-width: 100% !important;
  }
  .hero-home .hero-actions {
    justify-content: center;
  }
  .hero-home > div > div > div:last-child {
    display: none !important;
  }
  .hero-home > div > div > div:first-child > div:last-child {
    justify-content: center;
  }
  .hero-grid-layout {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0;
  }
  .hero-dashboard-area {
    display: none;
  }
  .hero-dark .hero-grid-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-dark .hero-dashboard-area {
    display: none;
  }
  .hero-stats-row {
    justify-content: center;
  }
  .hero-legal-title {
    font-size: 38px;
  }
}

.hero-dark {
  background: linear-gradient(135deg, #0a1628 0%, #12239E 50%, #1547B8 100%);
  color: var(--white);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-dark::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(199, 240, 70, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-dark::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(31, 78, 216, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(199, 240, 70, 0.15);
  border: 1px solid rgba(199, 240, 70, 0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.hero-dark .hero-badge {
  background: rgba(199, 240, 70, 0.15);
  color: var(--accent-green);
  border-color: rgba(199, 240, 70, 0.3);
}

.hero-home .hero-badge {
  background: rgba(18, 35, 158, 0.08);
  color: var(--primary-blue);
  border-color: rgba(18, 35, 158, 0.15);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-green);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.hero-dark h1 {
  color: var(--white);
}

.hero h1 .text-gradient {
  background: linear-gradient(135deg, var(--ui-blue) 0%, var(--secondary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-dark h1 .text-gradient {
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--light-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-home h1 .text-gradient {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--ui-blue) 60%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 18px;
  color: var(--dark-gray);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 0 32px 0;
}

.hero-dark p {
  color: rgba(255, 255, 255, 0.75);
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  background: var(--ui-blue);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background: var(--secondary-blue);
  box-shadow: 0 6px 20px rgba(31, 78, 216, 0.35);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ui-blue);
  background: var(--white);
  border: 1.5px solid var(--divider);
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--ui-blue);
  background: rgba(31, 78, 216, 0.03);
}

.hero-dark .btn-primary {
  background: var(--accent-green);
  color: #0a1628;
}

.hero-dark .btn-primary:hover {
  background: var(--light-green);
  box-shadow: 0 6px 20px rgba(199, 240, 70, 0.3);
}

.hero-dark .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.hero-dark .btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
}

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

.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-header .overline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ui-blue);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 12px 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.section-header p {
  font-size: 16px;
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.6;
}

/* ---------- Product Cards ---------- */
.product-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  border-color: var(--ui-blue);
  box-shadow: 0 8px 30px rgba(18, 35, 158, 0.08);
  transform: translateY(-2px);
}

.product-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}

.product-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px 0;
}

.product-card p {
  font-size: 14px;
  color: var(--dark-gray);
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ui-blue);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.product-card-link:hover {
  gap: 10px;
}

/* ---------- Server Cards — Premium Redesign ---------- */
.server-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.server-card {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.server-card:hover {
  transform: translateY(-6px);
}

.server-card-glow {
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  padding: 1px;
  background: linear-gradient(160deg, rgba(199, 240, 70, 0) 0%, rgba(199, 240, 70, 0) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

.server-card:hover .server-card-glow {
  opacity: 1;
}

.server-card[data-tier="eco"]:hover .server-card-glow {
  background: linear-gradient(160deg, rgba(5, 150, 105, 0.5) 0%, rgba(199, 240, 70, 0.3) 100%);
}

.server-card[data-tier="starter"]:hover .server-card-glow {
  background: linear-gradient(160deg, rgba(5, 150, 105, 0.5) 0%, rgba(199, 240, 70, 0.3) 100%);
}

.server-card[data-tier="standard"]:hover .server-card-glow {
  background: linear-gradient(160deg, rgba(31, 78, 216, 0.5) 0%, rgba(199, 240, 70, 0.3) 100%);
}

.server-card[data-tier="advanced"]:hover .server-card-glow {
  background: linear-gradient(160deg, rgba(18, 35, 158, 0.6) 0%, rgba(199, 240, 70, 0.3) 100%);
}

.server-card[data-tier="premium"]:hover .server-card-glow {
  background: linear-gradient(160deg, rgba(180, 83, 9, 0.5) 0%, rgba(199, 240, 70, 0.5) 100%);
}

.server-card[data-tier="enterprise"]:hover .server-card-glow {
  background: linear-gradient(160deg, rgba(190, 24, 93, 0.5) 0%, rgba(199, 240, 70, 0.3) 100%);
}

.server-card-inner {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border: 1px solid var(--divider);
  border-radius: 20px;
  overflow: hidden;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.server-card:hover .server-card-inner {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(18, 35, 158, 0.1), 0 4px 16px rgba(0, 0, 0, 0.04);
}

/* Premium featured card (Most Popular) */
.server-card[data-tier="premium"] .server-card-inner {
  border: 2px solid rgba(199, 240, 70, 0.4);
  box-shadow: 0 0 0 1px rgba(199, 240, 70, 0.1), 0 8px 32px rgba(199, 240, 70, 0.06);
}

.server-card[data-tier="premium"]:hover .server-card-inner {
  border-color: transparent;
  box-shadow: 0 20px 60px rgba(199, 240, 70, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
}

.server-card-popular {
  position: absolute;
  top: 0;
  right: 24px;
  transform: translateY(-50%);
  background: linear-gradient(135deg, var(--accent-green) 0%, var(--light-green) 100%);
  color: #0a1628;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(199, 240, 70, 0.3);
  z-index: 2;
}

.server-card-header {
  padding: 28px 24px 0;
  position: relative;
}

.server-card-header-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 14px;
}

.server-card-tier {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.tier-eco { background: #ecfdf5; color: #059669; }
.tier-starter { background: #ecfdf5; color: #059669; }
.tier-standard { background: #eff6ff; color: #1F4ED8; }
.tier-advanced { background: #eef2ff; color: #12239E; }
.tier-premium { background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%); color: #92400e; }
.tier-enterprise { background: #fce7f3; color: #be185d; }

.server-card h3 {
  font-size: 20px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.server-card-subtitle {
  font-size: 13px;
  color: var(--dark-gray);
  margin: 0 0 0 0;
  font-weight: 500;
}

.server-card-specs {
  padding: 20px 24px 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.spec-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(201, 210, 227, 0.4);
}

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

.spec-item.spec-highlight {
  background: rgba(199, 240, 70, 0.06);
  margin: 0 -24px;
  padding: 10px 24px;
  border-bottom: none;
  border-radius: 0;
}

.spec-label {
  font-size: 11.5px;
  font-weight: 500;
  color: var(--dark-gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.spec-value {
  font-size: 13.5px;
  font-weight: 600;
  color: #1a1a2e;
  text-align: right;
}

.spec-highlight .spec-label,
.spec-highlight .spec-value {
  color: var(--primary-blue);
  font-weight: 700;
}

.server-card-footer {
  padding: 20px 24px 24px;
  margin-top: 8px;
}

.server-price {
  display: flex;
  align-items: baseline;
  gap: 1px;
}

.server-price-currency {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark-gray);
  margin-right: 1px;
  line-height: 1;
  align-self: flex-start;
  margin-top: 4px;
}

.server-price-amount {
  font-size: 32px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
  letter-spacing: -0.02em;
}

.server-price-period {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-gray);
  margin-left: 2px;
  align-self: flex-end;
  margin-bottom: 2px;
}

.btn-order {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(135deg, #1F4ED8 0%, #12239E 100%);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(31, 78, 216, 0.2);
  white-space: nowrap;
}

.btn-order:hover {
  background: linear-gradient(135deg, #1547B8 0%, #0e1a6e 100%);
  box-shadow: 0 6px 20px rgba(31, 78, 216, 0.35);
  transform: translateY(-1px);
}

.btn-order svg {
  transition: transform 0.2s ease;
}

.btn-order:hover svg {
  transform: translateX(2px);
}

.btn-order-featured {
  background: linear-gradient(135deg, #C7F046 0%, #D9F76B 100%) !important;
  color: #0a1628 !important;
  box-shadow: 0 2px 12px rgba(199, 240, 70, 0.3);
  font-weight: 700;
}

.btn-order-featured:hover {
  background: linear-gradient(135deg, #D9F76B 0%, #e8ff8a 100%) !important;
  box-shadow: 0 6px 24px rgba(199, 240, 70, 0.4);
}

/* Server cards responsive */
@media (max-width: 1024px) {
  .server-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .server-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ---------- Feature Grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: 12px;
  transition: background 0.2s ease;
}

.feature-item:hover {
  background: rgba(18, 35, 158, 0.02);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(18, 35, 158, 0.08), rgba(31, 78, 216, 0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ui-blue);
  font-size: 18px;
}

.feature-text h4 {
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 0 0 4px 0;
}

.feature-text p {
  font-size: 13px;
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.5;
}

/* ---------- Stats Bar ---------- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 48px 0;
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
}

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

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: var(--ui-blue);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 14px;
  color: var(--dark-gray);
  font-weight: 500;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #0a1628 0%, #12239E 50%, #1547B8 100%);
  border-radius: 20px;
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(199, 240, 70, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  margin: 0 0 12px 0;
}

.cta-banner p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 28px 0;
}

.cta-banner .btn-primary {
  background: var(--accent-green);
  color: #0a1628;
  font-size: 16px;
  padding: 14px 32px;
}

.cta-banner .btn-primary:hover {
  background: var(--light-green);
  box-shadow: 0 6px 20px rgba(199, 240, 70, 0.3);
}

/* ---------- Footer ---------- */
.footer {
  background: #0a1628;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 280px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.6;
  margin: 0 0 20px 0;
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 14px;
}

.footer-social a:hover {
  background: var(--ui-blue);
  color: var(--white);
}

.footer-column h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-column ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

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

.footer-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-links a:hover {
  color: rgba(255, 255, 255, 0.8);
}

/* ---------- Pricing Table ---------- */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--divider);
  border-radius: 12px;
  overflow: hidden;
}

.pricing-table th {
  background: #f8f9fc;
  padding: 14px 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-blue);
  text-align: left;
  border-bottom: 1px solid var(--divider);
}

.pricing-table td {
  padding: 14px 20px;
  font-size: 14px;
  color: #1a1a2e;
  border-bottom: 1px solid var(--light-gray);
}

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

.pricing-table tr:hover td {
  background: rgba(31, 78, 216, 0.02);
}

/* ---------- FAQ Accordion ---------- */
.faq-item {
  border: 1px solid var(--divider);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.faq-item:hover {
  border-color: var(--ui-blue);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 15px;
  font-weight: 600;
  color: #1a1a2e;
  cursor: pointer;
  font-family: var(--font-family);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  color: var(--dark-gray);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
  transform: rotate(45deg);
}

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

.faq-answer-inner {
  padding: 0 20px 18px;
  font-size: 14px;
  color: var(--dark-gray);
  line-height: 1.7;
}

/* ---------- Tabs ---------- */
.tabs {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--divider);
  margin-bottom: 32px;
  overflow-x: auto;
}

.tab-btn {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-gray);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-family);
  transition: all 0.2s ease;
}

.tab-btn:hover {
  color: var(--ui-blue);
}

.tab-btn.active {
  color: var(--ui-blue);
  border-bottom-color: var(--ui-blue);
  font-weight: 600;
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .navbar-menu {
    display: none;
  }

  .navbar-actions .btn-login {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: 36px;
  }

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

  .stats-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .mega-menu {
    min-width: 400px;
  }

  .mega-menu-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 100px 0 60px;
  }

  .hero h1 {
    font-size: 30px;
  }

  .hero p {
    font-size: 16px;
  }

  .section {
    padding: 56px 0;
  }

  .section-header h2 {
    font-size: 28px;
  }

  .server-card-specs {
    gap: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 32px;
  }

  .cta-banner {
    padding: 40px 24px;
  }

  .cta-banner h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 26px;
  }

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

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .stats-bar {
    grid-template-columns: 1fr;
  }
}

/* ---------- Hero Dashboard Animations ---------- */
.hero-float-card {
  animation: heroFloatBase 6s ease-in-out infinite;
}

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

.hero-float-1 {
  animation: heroFloat1 5s ease-in-out infinite;
}

@keyframes heroFloat1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  25% { transform: translateY(-8px) translateX(2px); }
  50% { transform: translateY(-4px) translateX(-1px); }
  75% { transform: translateY(-10px) translateX(1px); }
}

.hero-float-2 {
  animation: heroFloat2 6s ease-in-out infinite;
}

@keyframes heroFloat2 {
  0%, 100% { transform: translateY(0) translateX(0); }
  30% { transform: translateY(-6px) translateX(-2px); }
  60% { transform: translateY(-12px) translateX(1px); }
}

.hero-float-3 {
  animation: heroFloat3 7s ease-in-out infinite;
}

@keyframes heroFloat3 {
  0%, 100% { transform: translateY(0) translateX(0); }
  35% { transform: translateY(-8px) translateX(2px); }
  70% { transform: translateY(-5px) translateX(-1px); }
}

.hero-float-4 {
  animation: heroFloat4 5.5s ease-in-out infinite;
}

@keyframes heroFloat4 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-7px) scale(1.02); }
}

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

.animate-in {
  opacity: 0;
  transform: translateY(20px);
}

.animate-in.visible {
  animation: fadeInUp 0.5s ease forwards;
}

/* ---------- Hero Entrance Animations ---------- */
.hero-enter {
  opacity: 0;
  transform: translateY(24px);
}

.hero-enter-active {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--hero-entrance-duration) var(--hero-entrance-easing),
              transform var(--hero-entrance-duration) var(--hero-entrance-easing);
}

.hero-enter-delay-1 { transition-delay: 0.1s; }
.hero-enter-delay-2 { transition-delay: 0.2s; }
.hero-enter-delay-3 { transition-delay: 0.35s; }
.hero-enter-delay-4 { transition-delay: 0.5s; }
.hero-enter-delay-5 { transition-delay: 0.65s; }

.hero-enter-fade {
  opacity: 0;
  transform: none;
}

.hero-enter-fade.hero-enter-active {
  opacity: 1;
  transition: opacity var(--hero-entrance-duration) var(--hero-entrance-easing);
}

.hero-enter-scale {
  opacity: 0;
  transform: scale(0.92);
}

.hero-enter-scale.hero-enter-active {
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.5s var(--hero-entrance-easing),
              transform 0.5s var(--hero-entrance-easing);
}

/* ---------- Hero Dashboard Card System ---------- */
.hero-dash-card {
  position: relative;
  z-index: 2;
  width: 340px;
  background: var(--hero-glass-bg);
  border: 1px solid var(--hero-glass-border);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: var(--hero-glass-blur);
  -webkit-backdrop-filter: var(--hero-glass-blur);
  box-shadow: var(--hero-glass-shadow);
  animation: heroDashGlowV2 4s ease-in-out infinite;
}

.hero-dark .hero-dash-card {
  background: var(--hero-dark-glass-bg);
  border-color: var(--hero-dark-glass-border);
  box-shadow: var(--hero-dark-glass-shadow);
  animation: heroDashGlowDarkV2 4s ease-in-out infinite;
}

.hero-dash-card.hero-dash-compact {
  width: 300px;
  padding: 24px;
  border-radius: 16px;
}

.hero-dash-card.hero-dash-compact .hero-dash-header {
  margin-bottom: 20px;
}

.hero-dash-card.hero-dash-compact .hero-dash-meter {
  margin-bottom: 16px;
}

.hero-dash-card.hero-dash-compact .hero-dash-meter:last-of-type {
  margin-bottom: 20px;
}

.hero-dash-card.hero-dash-compact .hero-dash-meter-row {
  margin-bottom: 6px;
}

.hero-dash-card.hero-dash-compact .hero-dash-meter-label {
  font-size: 11px;
  letter-spacing: 1px;
}

.hero-dash-card.hero-dash-compact .hero-dash-meter-value {
  font-size: 12px;
}

.hero-dash-card.hero-dash-compact .hero-dash-meter-bar {
  height: 6px;
  border-radius: 3px;
}

.hero-dash-card.hero-dash-compact .hero-dash-specs {
  gap: 12px;
  padding-top: 16px;
}

.hero-dash-card.hero-dash-compact .hero-dash-spec-value {
  font-size: 18px;
}

.hero-dash-card.hero-dash-compact .hero-dash-spec-label {
  margin-top: 2px;
}

@keyframes heroDashGlowV2 {
  0%, 100% {
    box-shadow: 0 0 30px rgba(199, 240, 70, 0.03), 0 0 60px rgba(31, 78, 216, 0.02),
                0 24px 64px rgba(18, 35, 158, 0.08), 0 4px 16px rgba(0, 0, 0, 0.04);
  }
  50% {
    box-shadow: 0 0 40px rgba(199, 240, 70, 0.06), 0 0 80px rgba(31, 78, 216, 0.04),
                0 24px 64px rgba(18, 35, 158, 0.12), 0 4px 16px rgba(0, 0, 0, 0.04);
  }
}

@keyframes heroDashGlowDarkV2 {
  0%, 100% {
    box-shadow: 0 0 40px rgba(199, 240, 70, 0.05), 0 0 80px rgba(31, 78, 216, 0.06),
                0 24px 64px rgba(0, 0, 0, 0.3), 0 4px 16px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 0 60px rgba(199, 240, 70, 0.1), 0 0 100px rgba(31, 78, 216, 0.1),
                0 24px 64px rgba(0, 0, 0, 0.35), 0 4px 16px rgba(0, 0, 0, 0.2);
  }
}

.hero-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.hero-dash-title-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dash-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-green);
  box-shadow: 0 0 10px rgba(199, 240, 70, 0.5);
  flex-shrink: 0;
}

.hero-dash-card.hero-dash-compact .hero-dash-status-dot {
  width: 8px;
  height: 8px;
  box-shadow: 0 0 8px rgba(199, 240, 70, 0.5);
}

.hero-dash-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
}

.hero-dark .hero-dash-title {
  color: rgba(255, 255, 255, 0.9);
}

.hero-dash-card.hero-dash-compact .hero-dash-title {
  font-size: 13px;
}

.hero-dash-status {
  font-size: 11px;
  font-weight: 700;
  color: #0a1628;
  background: rgba(199, 240, 70, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

.hero-dark .hero-dash-status {
  color: var(--accent-green);
  background: rgba(199, 240, 70, 0.12);
}

.hero-dash-card.hero-dash-compact .hero-dash-status {
  font-size: 11px;
  padding: 3px 10px;
}

.hero-dash-meter {
  margin-bottom: 18px;
}

.hero-dash-meter:last-of-type {
  margin-bottom: 24px;
}

.hero-dash-meter-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.hero-dash-meter-label {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.hero-dark .hero-dash-meter-label {
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
}

.hero-dash-meter-value {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary-blue);
}

.hero-dash-meter-value.value-teal {
  color: #0ea58c;
}

.hero-dark .hero-dash-meter-value {
  color: var(--accent-green);
}

.hero-dash-meter-bar {
  width: 100%;
  height: 8px;
  background: var(--hero-meter-track);
  border-radius: 4px;
  overflow: hidden;
}

.hero-dark .hero-dash-meter-bar {
  background: var(--hero-dark-meter-track);
}

.hero-dash-meter-fill {
  height: 100%;
  border-radius: inherit;
  transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-dash-meter-fill.fill-blue {
  background: linear-gradient(90deg, #12239E, #1F4ED8);
}

.hero-dash-meter-fill.fill-teal {
  background: linear-gradient(90deg, #0ea58c, #14d4a8);
}

.hero-dash-meter-fill.fill-accent {
  background: linear-gradient(90deg, #C7F046, #D9F76B);
}

.hero-dash-meter-fill.fill-green {
  background: linear-gradient(90deg, #059669, #34d399);
}

.hero-dark .hero-dash-meter-fill.fill-blue {
  background: linear-gradient(90deg, #1F4ED8, #4a6ad9);
}

.hero-dark .hero-dash-meter-fill.fill-accent {
  background: linear-gradient(90deg, #C7F046, #D9F76B);
}

.hero-dash-specs {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(18, 35, 158, 0.06);
}

.hero-dark .hero-dash-specs {
  border-top-color: rgba(255, 255, 255, 0.06);
}

.hero-dash-spec {
  text-align: center;
}

.hero-dash-spec-value {
  font-size: 22px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.hero-dark .hero-dash-spec-value {
  color: #FFFFFF;
}

.hero-dash-card.hero-dash-compact .hero-dash-spec-value {
  font-size: 18px;
}

.hero-dark .hero-dash-card.hero-dash-compact .hero-dash-spec-value {
  font-size: 18px;
}

.hero-dash-spec-label {
  font-size: 10px;
  color: #6B7280;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-dark .hero-dash-spec-label {
  color: rgba(255, 255, 255, 0.4);
  margin-top: 2px;
}

/* ---------- Hero Floating Cards v2 ---------- */
.hero-float-card-v2 {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(18, 35, 158, 0.08);
  border-radius: 14px;
  padding: 16px 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 12px 32px rgba(18, 35, 158, 0.08);
}

.hero-dark .hero-float-card-v2 {
  background: rgba(14, 26, 110, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-float-card-v2.float-accent {
  background: rgba(199, 240, 70, 0.15);
  border-color: rgba(199, 240, 70, 0.3);
  box-shadow: 0 12px 32px rgba(199, 240, 70, 0.1);
}

.hero-dark .hero-float-card-v2.float-accent {
  background: rgba(199, 240, 70, 0.12);
  border-color: rgba(199, 240, 70, 0.2);
}

.hero-float-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-icon.icon-blue {
  background: rgba(18, 35, 158, 0.08);
}

.hero-float-icon.icon-teal {
  background: rgba(14, 165, 140, 0.12);
}

.hero-float-icon.icon-accent {
  background: rgba(199, 240, 70, 0.15);
}

.hero-dark .hero-float-icon.icon-accent {
  background: rgba(199, 240, 70, 0.12);
}

.hero-dark .hero-float-icon.icon-blue {
  background: rgba(31, 78, 216, 0.15);
}

.hero-dark .hero-float-icon.icon-teal {
  background: rgba(5, 150, 105, 0.15);
}

.hero-dash-card.hero-dash-compact ~ .hero-float-card-v2 .hero-float-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.hero-float-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.hero-float-label {
  font-size: 11px;
  font-weight: 600;
  color: #6B7280;
}

.hero-dark .hero-float-label {
  color: rgba(255, 255, 255, 0.6);
}

.hero-float-value {
  font-size: 26px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
}

.hero-dark .hero-float-value {
  color: #FFFFFF;
  font-size: 22px;
}

.hero-dash-card.hero-dash-compact ~ .hero-float-card-v2 .hero-float-value {
  font-size: 22px;
}

.hero-float-sublabel {
  font-size: 10px;
  color: #9CA3AF;
  margin-top: 5px;
}

.hero-dark .hero-float-sublabel {
  color: rgba(255, 255, 255, 0.35);
}

/* Price floating card variant */
.hero-float-price-label {
  font-size: 10px;
  font-weight: 700;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.hero-dark .hero-float-price-label {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 600;
}

.hero-float-price-value {
  font-size: 28px;
  font-weight: 800;
  color: #0a1628;
  line-height: 1.1;
  margin-top: 4px;
}

.hero-dark .hero-float-price-value {
  color: var(--accent-green);
  font-size: 24px;
}

.hero-dash-card.hero-dash-compact ~ .hero-float-card-v2 .hero-float-price-value {
  font-size: 24px;
}

.hero-float-price-unit {
  font-size: 11px;
  color: #6B7280;
}

.hero-dark .hero-float-price-unit {
  color: rgba(255, 255, 255, 0.4);
}

/* Positioning classes for floating cards */
.hero-float-pos-1 {
  top: 0;
  left: -10px;
}

.hero-float-pos-2 {
  top: 40px;
  right: -10px;
}

.hero-float-pos-3 {
  bottom: 10px;
  right: 0;
}

.hero-float-pos-4 {
  bottom: 60px;
  left: -10px;
}

/* Width variants */
.hero-float-w-sm { width: 130px; }
.hero-float-w-md { width: 150px; }
.hero-float-w-lg { width: 170px; }

/* ---------- Hero Layout System ---------- */
.hero-grid-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-dashboard-area {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.hero-ambient-glow {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 240, 70, 0.08) 0%, rgba(18, 35, 158, 0.04) 35%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-dark .hero-ambient-glow {
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(199, 240, 70, 0.06) 0%, rgba(31, 78, 216, 0.04) 40%, transparent 70%);
}

.hero-pulse-ring-v2 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-pulse-ring-v2.ring-inner {
  width: 240px;
  height: 240px;
  border: 1px solid rgba(18, 35, 158, 0.05);
  animation: heroPulseRing 4s ease-out infinite;
}

.hero-pulse-ring-v2.ring-outer {
  width: 380px;
  height: 380px;
  border: 1px solid rgba(199, 240, 70, 0.06);
  animation: heroPulseRing 4s ease-out infinite;
  animation-delay: 2s;
}

.hero-dark .hero-pulse-ring-v2.ring-inner {
  width: 200px;
  height: 200px;
  border-color: rgba(199, 240, 70, 0.08);
}

.hero-dark .hero-pulse-ring-v2.ring-outer {
  width: 320px;
  height: 320px;
  border-color: rgba(31, 78, 216, 0.06);
}

/* Dark theme stats */
.hero-dark .hero-stats-row {
  border-top-color: rgba(255, 255, 255, 0.08);
}

.hero-dark .hero-stat-value {
  color: #FFFFFF;
}

.hero-dark .hero-stat-label {
  color: rgba(255, 255, 255, 0.5);
}

.hero-dark .hero-stat-divider {
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- Dark Theme CTA Buttons ---------- */
.hero-dark .hero-cta-primary {
  background: var(--accent-green);
  color: #0a1628;
  box-shadow: 0 4px 16px rgba(199, 240, 70, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-dark .hero-cta-primary:hover {
  background: var(--light-green);
  box-shadow: 0 8px 28px rgba(199, 240, 70, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.hero-dark .hero-cta-secondary {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-dark .hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* ---------- Enhanced Legal Hero ---------- */
.hero-enhanced {
  position: relative;
  padding: 140px 0 60px;
  background: linear-gradient(180deg, #f0f4ff 0%, #ffffff 100%);
  overflow: hidden;
}

.hero-enhanced::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(18, 35, 158, 0.05) 0%, rgba(199, 240, 70, 0.03) 40%, transparent 70%);
  pointer-events: none;
}

.hero-enhanced::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(199, 240, 70, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(18, 35, 158, 0.08);
  border: 1px solid rgba(18, 35, 158, 0.15);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary-blue);
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

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

.hero-legal-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #1a1a2e;
  margin: 0 0 12px 0;
}

.hero-legal-date {
  font-size: 15px;
  color: #6B7280;
  font-weight: 500;
}

.hero-legal-accent {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
  border-radius: 2px;
  margin-top: 20px;
}

.hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #6B7280;
  margin-bottom: 16px;
}

.hero-breadcrumb a {
  color: #6B7280;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-breadcrumb a:hover {
  color: var(--primary-blue);
}

.hero-breadcrumb-sep {
  color: #C9D2E3;
}

.hero-breadcrumb-current {
  color: var(--primary-blue);
  font-weight: 500;
}

/* ---------- Utility Classes ---------- */
.bg-light {
  background: #f8f9fc;
}

/* ========================================
   Homepage Redesign — Premium Modern UI
   ======================================== */

/* ---------- Hero Grid Background ---------- */
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(18, 35, 158, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 35, 158, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Hero CTA Buttons ---------- */
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #0a1628;
  background: var(--accent-green);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(199, 240, 70, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  letter-spacing: 0.01em;
}

.hero-cta-primary:hover {
  background: var(--light-green);
  box-shadow: 0 8px 28px rgba(199, 240, 70, 0.5), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary-blue);
  background: rgba(18, 35, 158, 0.06);
  border: 1px solid rgba(18, 35, 158, 0.12);
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}

.hero-cta-secondary:hover {
  background: rgba(18, 35, 158, 0.1);
  border-color: rgba(18, 35, 158, 0.25);
  color: var(--ui-blue);
  transform: translateY(-1px);
}

/* ---------- Hero Stats Row ---------- */
.hero-stats-row {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(18, 35, 158, 0.08);
}

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

.hero-stat-value {
  font-size: 24px;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1;
  letter-spacing: -0.02em;
}

.hero-stat-label {
  font-size: 11px;
  color: #6B7280;
  margin-top: 6px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: rgba(18, 35, 158, 0.08);
}

/* ---------- Trust Section ---------- */
.trust-section {
  padding: 20px 0;
  background: #FFFFFF;
  border-bottom: 1px solid var(--divider);
}

.trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #F7F8FC;
  border: 1px solid #eceef4;
  border-radius: 100px;
  font-size: 12.5px;
  font-weight: 600;
  color: #4b5563;
  transition: all 0.2s ease;
}

.trust-badge-item:hover {
  border-color: #C9D2E3;
  background: #EEF0F6;
  color: #1a1a2e;
}

.trust-badge-icon-wrap {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ui-blue);
  flex-shrink: 0;
}

/* ---------- Product Showcase Grid ---------- */
.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-showcase-card {
  display: flex;
  flex-direction: column;
  position: relative;
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 28px 28px 24px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.product-showcase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
  border-radius: 16px 16px 0 0;
}

.product-showcase-card:hover {
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(18, 35, 158, 0.1), 0 4px 12px rgba(0,0,0,0.04);
  transform: translateY(-4px);
}

.product-showcase-card:hover::before {
  background: linear-gradient(90deg, var(--ui-blue), var(--accent-green));
}

.product-showcase-card[data-product="eco"]:hover::before {
  background: linear-gradient(90deg, #059669, #C7F046);
}

.product-showcase-card[data-product="premium"]:hover::before {
  background: linear-gradient(90deg, #b45309, #C7F046);
}

.product-showcase-card[data-product="gpu"]:hover::before {
  background: linear-gradient(90deg, #be185d, #C7F046);
}

.product-showcase-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 0 16px 0 80px;
  pointer-events: none;
}

.product-showcase-card:hover .product-showcase-accent {
  opacity: 0.06;
}

.product-showcase-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: transform 0.3s ease;
}

.product-showcase-card:hover .product-showcase-icon {
  transform: scale(1.08);
}

.product-showcase-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px 0;
}

.product-showcase-content p {
  font-size: 13.5px;
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.6;
}

.product-showcase-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #f0f1f5;
}

.product-showcase-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--ui-blue);
  background: rgba(31,78,216,0.06);
  padding: 4px 10px;
  border-radius: 100px;
}

.product-showcase-card[data-product="eco"] .product-showcase-price {
  color: #059669;
  background: rgba(5,150,105,0.06);
}

.product-showcase-card[data-product="premium"] .product-showcase-price {
  color: #b45309;
  background: rgba(180,83,9,0.06);
}

.product-showcase-card[data-product="gpu"] .product-showcase-price {
  color: #be185d;
  background: rgba(190,24,93,0.06);
}

.product-showcase-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark-gray);
  transition: all 0.2s ease;
}

.product-showcase-card:hover .product-showcase-link {
  color: var(--ui-blue);
  gap: 8px;
}

/* ---------- Infrastructure Section ---------- */
.infrastructure-section {
  background: #FFFFFF;
}

.infrastructure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.infrastructure-content .overline {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ui-blue);
  margin-bottom: 12px;
}

.infrastructure-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1a1a2e;
  margin: 0 0 16px 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.infrastructure-content p {
  font-size: 16px;
  color: var(--dark-gray);
  margin: 0 0 32px 0;
  line-height: 1.6;
}

.infrastructure-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.infra-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  background: #F7F8FC;
  border-radius: 12px;
  border: 1px solid #eceef4;
  transition: all 0.2s ease;
}

.infra-feature:hover {
  background: #EEF0F6;
  border-color: #C9D2E3;
}

.infra-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ui-blue);
  flex-shrink: 0;
}

.infra-feature-title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.infra-feature-desc {
  font-size: 11.5px;
  color: var(--dark-gray);
  line-height: 1.4;
}

/* ---------- Infrastructure Map ---------- */
.infrastructure-visual {
  position: relative;
}

.infra-map {
  position: relative;
  width: 100%;
  aspect-ratio: 2 / 1;
  background: #0a1628;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 24px 64px rgba(10,22,40,0.3);
}

.infra-map-bg {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.infra-map-bg svg {
  width: 90%;
  height: 90%;
}

.infra-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(31,78,216,0.6);
  border: 2px solid rgba(31,78,216,0.3);
  z-index: 2;
  transition: all 0.3s ease;
}

.infra-dot-active {
  background: var(--accent-green);
  border-color: rgba(199,240,70,0.5);
  box-shadow: 0 0 16px rgba(199,240,70,0.3);
}

.infra-dot-ping {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid currentColor;
  opacity: 0;
  animation: infra-ping 2.5s ease-out infinite;
}

.infra-dot-active .infra-dot-ping {
  border-color: var(--accent-green);
}

.infra-dot:not(.infra-dot-active) .infra-dot-ping {
  border-color: var(--ui-blue);
}

@keyframes infra-ping {
  0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.6; }
  100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

.infra-locations {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.infra-loc {
  font-size: 11px;
  font-weight: 600;
  color: var(--dark-gray);
  background: #F7F8FC;
  border: 1px solid #eceef4;
  padding: 4px 12px;
  border-radius: 100px;
}

.infra-loc-active {
  color: #0a1628;
  background: rgba(199,240,70,0.12);
  border-color: rgba(199,240,70,0.3);
}

/* ---------- Stats Section ---------- */
.stats-section {
  background: linear-gradient(135deg, #060d24 0%, #0e1a6e 30%, #12239E 60%, #1547B8 100%);
  position: relative;
  overflow: hidden;
  padding: 60px 0;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(199,240,70,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.stats-section .stats-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.stats-section .stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
  margin: 0 40px;
}

.stats-section .stat-item {
  text-align: center;
  flex: 1;
}

.stats-section .stat-item .stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stats-section .stat-item .stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

/* ---------- Feature Cards V2 ---------- */
.feature-grid-v2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 28px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.feature-card:hover {
  border-color: rgba(31,78,216,0.2);
  box-shadow: 0 12px 36px rgba(18,35,158,0.08), 0 2px 8px rgba(0,0,0,0.02);
  transform: translateY(-3px);
}

.feature-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(18,35,158,0.08), rgba(31,78,216,0.04));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--ui-blue);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-card-icon {
  background: linear-gradient(135deg, rgba(199,240,70,0.12), rgba(31,78,216,0.08));
  color: #0a1628;
  transform: scale(1.05);
}

.feature-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 8px 0;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--dark-gray);
  margin: 0;
  line-height: 1.6;
}

/* ---------- CTA Banner V2 ---------- */
.cta-banner-v2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 56px 64px;
  background: linear-gradient(135deg, #060d24 0%, #0e1a6e 30%, #12239E 60%, #1547B8 100%);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.cta-banner-v2::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(199,240,70,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-v2::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(31,78,216,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner-v2 h2 {
  font-size: 32px;
  font-weight: 800;
  color: #FFFFFF;
  margin: 0 0 8px 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cta-banner-v2 p {
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  line-height: 1.5;
}

.cta-banner-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  color: #0a1628;
  background: var(--accent-green);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(199,240,70,0.3);
  white-space: nowrap;
}

.cta-primary:hover {
  background: var(--light-green);
  box-shadow: 0 8px 28px rgba(199,240,70,0.45);
  transform: translateY(-2px);
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.cta-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.3);
  color: #FFFFFF;
}

/* ---------- Responsive: Homepage Redesign ---------- */
@media (max-width: 1024px) {
  .hero-stats-row {
    gap: 16px;
  }
  .hero-stat-value {
    font-size: 20px;
  }
  .product-showcase-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .infrastructure-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .feature-grid-v2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-banner-v2 {
    flex-direction: column;
    text-align: center;
    padding: 40px 32px;
  }
  .cta-banner-actions {
    justify-content: center;
  }
  .stat-divider {
    margin: 0 24px;
  }
  .stat-item .stat-number {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .product-showcase-grid {
    grid-template-columns: 1fr;
  }
  .server-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid-v2 {
    grid-template-columns: 1fr;
  }
  .infrastructure-features {
    grid-template-columns: 1fr;
  }
  .stats-bar {
    flex-direction: column;
    gap: 24px;
  }
  .stat-divider {
    width: 48px;
    height: 1px;
    margin: 0;
  }
  .hero-stats-row {
    flex-wrap: wrap;
    gap: 12px;
  }
  .hero-stat-divider {
    display: none;
  }
  .hero-stat {
    min-width: 80px;
  }
  .trust-badges {
    gap: 8px;
  }
  .trust-badge-item {
    font-size: 11px;
    padding: 6px 12px;
  }
  .cta-banner-v2 {
    padding: 32px 24px;
    border-radius: 16px;
  }
  .cta-banner-v2 h2 {
    font-size: 24px;
  }
  .hero-legal-title {
    font-size: 30px;
  }
  .hero-enhanced {
    padding: 120px 0 40px;
  }
  .hero-float-card-v2 {
    display: none;
  }
}

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--divider);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-gray);
}

/* ---------- Legal Pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.legal-content h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 40px 0 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--divider);
}

.legal-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
  margin: 28px 0 10px;
}

.legal-content p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.8;
  margin: 0 0 16px 0;
}

.legal-content ul {
  padding-left: 24px;
  margin: 0 0 16px 0;
}

.legal-content li {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 4px;
}