/* CloudieHost — Custom Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #111827;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f5f9; }
::-webkit-scrollbar-thumb { background: #0066FF; border-radius: 3px; }

/* =========================================================
   NAVBAR — Premium Light Tech UI
   ========================================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 76px;
  background: #ffffff;
  border-bottom: 1px solid #E2E8F0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
#navbar.scrolled {
  background: #ffffff;
  border-bottom: 1px solid #CBD5E1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04), 0 4px 20px rgba(37, 99, 235, 0.08);
}

/* Container */
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
  position: relative;
}
.nav-logo-glow {
  position: absolute;
  width: 40px; height: 40px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-logo:hover .nav-logo-glow {
  opacity: 1;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #1E40AF, #7C3AED);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35), inset 0 1px 0 rgba(255,255,255,0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.nav-logo:hover .nav-logo-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}
.nav-logo-text {
  font-size: 19px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.03em;
  line-height: 1;
}
.nav-logo-accent {
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  height: 100%;
  flex: 1;
  justify-content: center;
}

/* Nav buttons / plain links */
.nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  white-space: nowrap;
  font-family: 'Inter', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
.nav-btn-main {
  color: #1E293B;
}
.nav-btn:hover,
.nav-item-wrap:hover > .nav-btn-main {
  color: #2563EB;
  background: rgba(37, 99, 235, 0.06);
}
.nav-btn-text {
  position: relative;
}
.nav-btn-main .nav-btn-text::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #2563EB, #7C3AED);
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-item-wrap:hover > .nav-btn-main .nav-btn-text::after {
  width: 100%;
}
.nav-caret {
  color: #94A3B8;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.25s ease;
  flex-shrink: 0;
}
.nav-item-wrap:hover .nav-caret {
  transform: rotate(180deg);
  color: #2563EB;
}

/* Plain nav links */
.nav-link {
  color: #475569;
  font-weight: 500;
}
.nav-link:hover {
  color: #2563EB;
  background: rgba(37, 99, 235, 0.06);
}

/* Dropdown wrapper */
.nav-item-wrap {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

/* Dropdown panel base — Premium light theme */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              visibility 0.3s;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 16px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08),
              0 8px 30px rgba(37, 99, 235, 0.08),
              0 0 0 1px rgba(255, 255, 255, 0.5);
  overflow: hidden;
}
.nav-item-wrap:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(-4px);
}

/* Mega dropdown (Products) - Premium redesign */
.mega-drop {
  left: 50%;
  width: 720px;
  padding: 0;
}
.nav-item-wrap:hover .mega-drop {
  transform: translateX(-50%) translateY(-4px);
}

/* Solutions mega dropdown - wider premium design */
.mega-drop-solutions {
  left: 50%;
  width: 900px;
  padding: 0;
}
.nav-item-wrap:hover .mega-drop-solutions {
  transform: translateX(-50%) translateY(-4px);
}

/* Mega header */
.mega-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 18px 20px;
  background: linear-gradient(135deg, #F8FAFF 0%, #F1F5F9 100%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
}
.mega-title {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  letter-spacing: -0.01em;
}
.mega-subtitle {
  display: block;
  font-size: 12px;
  color: #64748B;
  margin-top: 3px;
}
.mega-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #059669;
}

/* DD Grid - Premium redesign */
.dd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 20px;
  background: linear-gradient(180deg, #FAFBFF 0%, #FFFFFF 100%);
}
.dd-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 14px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.dd-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(124, 58, 237, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.dd-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2563EB, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dd-card:hover::before {
  opacity: 1;
}
.dd-card:hover::after {
  opacity: 1;
}
.dd-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-3px);
}
.dd-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
/* Product-specific icon styles - Premium */
.dd-icon-dedicated {
  background: linear-gradient(135deg, #1E3A5F, #0F2744);
  border: 1px solid rgba(59, 130, 246, 0.35);
  color: #60A5FA;
}
.dd-icon-vps {
  background: linear-gradient(135deg, #134E34, #0A2F1F);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: #34D399;
}
.dd-icon-cloud {
  background: linear-gradient(135deg, #4C1D95, #2E1065);
  border: 1px solid rgba(139, 92, 246, 0.35);
  color: #A78BFA;
}
.dd-icon-enterprise {
  background: linear-gradient(135deg, #7C2D12, #431407);
  border: 1px solid rgba(249, 115, 22, 0.35);
  color: #FB923C;
}
.dd-card:hover .dd-card-icon {
  transform: scale(1.12);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}
.dd-card-content {
  flex: 1;
  position: relative;
  z-index: 1;
}
.dd-card-title {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.dd-card-sub {
  font-size: 12px;
  color: #64748B;
  line-height: 1.3;
  font-weight: 500;
}
.dd-card-arrow {
  color: #CBD5E1;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.dd-card:hover .dd-card-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #2563EB;
}

/* DD Grid Solutions - 6 column layout with premium redesign */
.dd-grid-solutions {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  padding: 20px;
  background: linear-gradient(180deg, #FAFBFF 0%, #FFFFFF 100%);
}
.dd-solution-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 14px;
  border-radius: 14px;
  text-decoration: none;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}
.dd-solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.04) 0%, rgba(124, 58, 237, 0.04) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 0;
}
.dd-solution-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2563EB, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dd-solution-card:hover::before {
  opacity: 1;
}
.dd-solution-card:hover::after {
  opacity: 1;
}
.dd-solution-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15), 0 4px 12px rgba(0, 0, 0, 0.05);
  transform: translateY(-4px);
}
.dd-solution-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.dd-solution-card:hover .dd-solution-icon {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
}
.dd-solution-title {
  font-size: 14px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.3;
  position: relative;
  z-index: 1;
  letter-spacing: -0.01em;
}
.dd-solution-sub {
  font-size: 11px;
  color: #64748B;
  line-height: 1.4;
  position: relative;
  z-index: 1;
  font-weight: 500;
}

/* Solution icon gradients */
.dd-icon-webhost {
  background: linear-gradient(135deg, #1E3A5F, #0F2744);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60A5FA;
}
.dd-icon-ecommerce {
  background: linear-gradient(135deg, #064E3B, #022C22);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
}
.dd-icon-saas {
  background: linear-gradient(135deg, #4C1D95, #2E1065);
  border: 1px solid rgba(139, 92, 246, 0.3);
  color: #A78BFA;
}
.dd-icon-ai {
  background: linear-gradient(135deg, #134E34, #0A2F1F);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34D399;
}

/* DD Dedicated Section - Premium horizontal design */
.dd-dedicated-section {
  background: linear-gradient(180deg, #F8FAFF 0%, #FFFFFF 100%);
  border-top: 1px solid rgba(226, 232, 240, 0.7);
  padding: 20px;
  margin: 0 20px 20px;
  border-radius: 14px;
}
.dd-dedicated-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.dd-dedicated-title {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dd-dedicated-viewall {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: #2563EB;
  text-decoration: none;
  transition: all 0.2s ease;
}
.dd-dedicated-viewall:hover {
  color: #1D4ED8;
  transform: translateX(2px);
}
.dd-dedicated-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.dd-dedicated-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.7);
  border-radius: 12px;
  text-decoration: none;
  color: #334155;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.dd-dedicated-item:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: linear-gradient(135deg, #F8FAFF 0%, #F1F5F9 100%);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.12);
}
.dd-dedicated-item-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, #EFF6FF, #E0E7FF);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2563EB;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}
.dd-dedicated-item:hover .dd-dedicated-item-icon {
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
  transform: scale(1.05);
}
.dd-dedicated-item-text {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  text-align: center;
  white-space: nowrap;
}
.dd-dedicated-item:hover .dd-dedicated-item-text {
  color: #1E293B;
}
.dd-subgrid-title {
  font-size: 10px;
  font-weight: 700;
  color: #64748B;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  padding: 4px 8px;
}

/* DD Features - Premium redesign */
.dd-features {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  background: rgba(226, 232, 240, 0.5);
  border-top: 1px solid rgba(226, 232, 240, 0.7);
  padding: 16px 20px 18px;
  margin: 0 20px 20px;
  border-radius: 14px;
}
.dd-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #ffffff;
  border-radius: 11px;
  border: 1px solid rgba(226, 232, 240, 0.6);
}
.dd-feature-icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, #EFF6FF, #E0E7FF);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #2563EB;
  flex-shrink: 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}
.dd-feature-text {
  display: flex;
  flex-direction: column;
}
.dd-feature-title {
  font-size: 12px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.2;
}
.dd-feature-sub {
  font-size: 10px;
  color: #64748B;
  margin-top: 1px;
  line-height: 1.2;
  font-weight: 500;
}

/* Simple dropdown (Company) */
.simple-drop {
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  width: 280px;
  padding: 10px;
}
.nav-item-wrap:hover .simple-drop {
  transform: translateX(-50%) translateY(-4px);
}
.sd-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 13px;
  border-radius: 10px;
  text-decoration: none;
  color: #334155;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.sd-link:hover {
  background: linear-gradient(135deg, #F8FAFF 0%, #F1F5F9 100%);
}
.sd-link-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #EFF6FF, #E0E7FF);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: #2563EB;
  flex-shrink: 0;
  transition: all 0.2s ease;
}
.sd-link:hover .sd-link-icon {
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}
.sd-link-content {
  display: flex;
  flex-direction: column;
}
.sd-link-title {
  font-size: 14px;
  font-weight: 600;
  color: #0F172A;
  line-height: 1.2;
}
.sd-link-sub {
  font-size: 11px;
  color: #64748B;
  margin-top: 2px;
  line-height: 1.2;
}

/* Right area */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* CTA button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  color: #fff;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  font-family: 'Inter', system-ui, sans-serif;
  position: relative;
  overflow: hidden;
}
.nav-cta-btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-cta-btn:hover::before {
  opacity: 1;
}
.nav-cta-btn:hover {
  background: linear-gradient(135deg, #1D4ED8, #6D28D9);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-1px);
}
.nav-cta-text {
  position: relative;
  z-index: 1;
}
.nav-cta-icon {
  position: relative;
  z-index: 1;
  transition: transform 0.25s ease;
}
.nav-cta-btn:hover .nav-cta-icon {
  transform: translateX(2px);
}

/* Hamburger */
.hamburger-btn {
  display: none;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.8);
  cursor: pointer;
  padding: 9px;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-btn:hover {
  background: #F8FAFF !important;
  border-color: rgba(37, 99, 235, 0.3) !important;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}
.hb-line {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #334155, #475569);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger-btn:hover .hb-line {
  background: linear-gradient(90deg, #2563EB, #7C3AED);
}
.hamburger-btn.active .hb-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
  width: 18px;
}
.hamburger-btn.active .hb-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-4px);
}
.hamburger-btn.active .hb-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
  width: 18px;
}

/* Mobile nav overlay - Premium Light Theme */
.mobile-nav {
  display: none;
  position: fixed;
  top: 76px; left: 0; right: 0; bottom: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9998;
  overflow-y: auto;
  padding-bottom: 40px;
  border-top: 1px solid rgba(226, 232, 240, 0.6);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.04);
}
.mobile-nav.open { display: block; }

.mobile-nav-premium {
  animation: slideUpPremium 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes slideUpPremium {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mob-header-premium {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(135deg, #F8FAFF 0%, #ffffff 100%);
}
.mob-logo-text {
  font-size: 17px;
  font-weight: 800;
  color: #0F172A;
  letter-spacing: -0.02em;
}
.mob-logo-sub {
  font-size: 11px;
  color: #64748B;
  margin-top: 2px;
}
.mob-close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: rgba(241, 245, 249, 0.8);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s ease;
  color: #64748B;
}
.mob-close-btn:hover {
  background: #ffffff;
  border-color: rgba(37, 99, 235, 0.3);
  color: #2563EB;
  box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
}

.mob-section {
  padding: 16px 12px;
}
.mob-section-title-premium {
  color: #94A3B8;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 8px 10px;
  padding-left: 4px;
}

.mob-link-premium {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 12px;
  color: #334155;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 11px;
  margin-bottom: 4px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.mob-link-premium:hover {
  color: #0F172A;
  background: linear-gradient(135deg, #F8FAFF 0%, #F1F5F9 100%);
}
.mob-link-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.mob-link-premium:hover .mob-link-icon {
  transform: scale(1.05);
}
.mob-link-text {
  flex: 1;
}
.mob-link-arrow {
  color: #CBD5E1;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.25s ease;
  flex-shrink: 0;
}
.mob-link-premium:hover .mob-link-arrow {
  opacity: 1;
  transform: translateX(0);
  color: #2563EB;
}
.mob-link-icon-sub {
  background: linear-gradient(135deg, #F1F5F9, #E2E8F0);
}

.mob-cta-section {
  padding: 16px 20px 24px;
  margin-top: 8px;
}
.mob-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px;
  background: linear-gradient(135deg, #2563EB, #7C3AED);
  color: #fff;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.mob-cta-btn:hover {
  background: linear-gradient(135deg, #1D4ED8, #6D28D9);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg,#0066FF,#0052CC);
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn-blue:hover {
  background: linear-gradient(135deg,#0052CC,#003D99);
  box-shadow: 0 8px 28px rgba(0,102,255,0.4);
  transform: translateY(-1px);
}
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff;
  color: #111827;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600; font-size: 15px;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s ease;
}
.btn-white:hover {
  background: #F0F4FF; color: #0066FF;
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.btn-outline-blue {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: #6D28D9;
  padding: 11px 24px;
  border-radius: 10px;
  font-weight: 600; font-size: 14px;
  text-decoration: none;
  border: 2px solid #6D28D9;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-outline-blue:hover {
  background: linear-gradient(135deg,#1D4ED8,#6D28D9); color: #fff;
  box-shadow: 0 6px 20px rgba(109,40,217,0.3);
}
.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.9);
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600; font-size: 15px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.4);
  color: #fff;
}

/* =========================================================
   LAYOUT HELPERS
   ========================================================= */
.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: #EEF4FF; color: #0066FF;
  padding: 5px 14px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  border: 1px solid #CCDDFF;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #0F172A;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.section-sub {
  font-size: 17px;
  color: #6B7280;
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto;
}

/* =========================================================
   HERO — navbar is fixed overlay so hero starts at top:0
   ========================================================= */
.hero-bg {
  background: #060D1B;
  position: relative; overflow: hidden;
  padding-top: 0; /* Fixed navbar overlays the hero */
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,102,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,255,0.055) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,102,255,0.14) 0%, transparent 65%);
  top: -200px; right: -100px; pointer-events: none;
}
.hero-glow2 {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(108,71,255,0.1) 0%, transparent 65%);
  bottom: -150px; left: 5%; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,102,255,0.15);
  border: 1px solid rgba(0,102,255,0.3);
  color: #60A5FA;
  padding: 6px 16px; border-radius: 20px;
  font-size: 13px; font-weight: 600;
  margin-bottom: 24px;
}
.gradient-text {
  background: linear-gradient(135deg,#FFFFFF 0%,#93C5FD 60%,#A78BFA 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text-blue {
  background: linear-gradient(135deg,#0066FF,#6C47FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* =========================================================
   CARDS
   ========================================================= */
.card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 18px;
  transition: all 0.3s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg,#0066FF,#6C47FF);
  opacity: 0; transition: opacity 0.3s;
}
.card:hover { border-color: #B3CAFF; box-shadow: 0 16px 50px rgba(0,102,255,0.1); transform: translateY(-4px); }
.card:hover::before { opacity: 1; }

/* Product cards */
.product-card {
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 20px;
  padding: 32px;
  transition: all 0.3s ease;
  text-decoration: none; color: inherit;
  display: block; position: relative; overflow: hidden;
}
.product-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,rgba(0,102,255,0.04),rgba(108,71,255,0.04));
  opacity: 0; transition: opacity 0.3s;
}
.product-card:hover { border-color: #93C5FD; box-shadow: 0 20px 60px rgba(0,102,255,0.12); transform: translateY(-5px); }
.product-card:hover::after { opacity: 1; }
.product-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}

/* Server/pricing cards */
.server-card {
  background: #fff;
  border: 1.5px solid #E5E7EB;
  border-radius: 18px;
  padding: 26px;
  transition: all 0.3s ease;
  position: relative;
}
.server-card:hover { border-color: #93C5FD; box-shadow: 0 12px 40px rgba(0,102,255,0.1); transform: translateY(-3px); }
.server-card.featured { border-color: #0066FF; box-shadow: 0 8px 30px rgba(0,102,255,0.12); }

.badge-pop {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg,#0066FF,#6C47FF);
  color: #fff;
  padding: 4px 18px; border-radius: 20px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap;
}

/* Spec tags */
.spec-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: #F8FAFC; border: 1px solid #E5E7EB;
  padding: 5px 10px; border-radius: 7px;
  font-size: 12px; font-weight: 600; color: #374151;
}

/* =========================================================
   STATS
   ========================================================= */
.stat-item { text-align: center; padding: 20px; }
.stat-num {
  font-size: clamp(32px,5vw,48px);
  font-weight: 900;
  background: linear-gradient(135deg,#0066FF,#6C47FF);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-label { font-size: 14px; color: #6B7280; font-weight: 500; margin-top: 6px; }

/* =========================================================
   FEATURES
   ========================================================= */
.feature-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}

/* =========================================================
   PAGE HERO (inner pages)
   ========================================================= */
.page-hero {
  background: linear-gradient(135deg,#060D1B 0%,#0D2040 100%);
  padding: 110px 0 80px; /* 60px navbar + 50px breathing room */
  position: relative; overflow: hidden;
  margin-top: 0;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,102,255,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,102,255,0.055) 1px, transparent 1px);
  background-size: 40px 40px;
}
/* Gradient transition at top for hero sections */
.page-hero::after,
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}
.page-hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle,rgba(0,102,255,0.12) 0%,transparent 65%);
  top: -200px; right: -100px; pointer-events: none;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq-item {
  border: 1px solid #E5E7EB;
  border-radius: 13px; overflow: hidden; margin-bottom: 10px;
  transition: all 0.3s ease;
}
.faq-item.open { border-color: #93C5FD; box-shadow: 0 4px 20px rgba(0,102,255,0.08); }
.faq-q {
  padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-weight: 600; font-size: 15px; color: #111827;
  background: #fff; user-select: none;
}
.faq-icon { transition: transform 0.3s; color: #9CA3AF; font-size: 14px; }
.faq-item.open .faq-icon { transform: rotate(180deg); color: #0066FF; }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 20px;
  transition: all 0.35s ease;
  background: #fff; color: #6B7280; font-size: 14px; line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 20px 18px; }

/* =========================================================
   DATA CENTER CARD
   ========================================================= */
.dc-card {
  background: linear-gradient(135deg,#0B1A30,#0D2347);
  border: 1px solid rgba(0,102,255,0.18);
  border-radius: 18px; padding: 28px; color: #fff;
  transition: all 0.3s ease;
}
.dc-card:hover { border-color: rgba(0,102,255,0.45); box-shadow: 0 12px 40px rgba(0,102,255,0.15); transform: translateY(-4px); }

/* =========================================================
   OS LOGOS
   ========================================================= */
.os-pill {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 20px 16px;
  border: 1px solid #E5E7EB; border-radius: 14px;
  transition: all 0.25s; cursor: default;
  background: #fff;
}
.os-pill:hover { border-color: #93C5FD; background: #F0F4FF; transform: translateY(-3px); }

/* =========================================================
   CTA SECTION
   ========================================================= */
.cta-section {
  background: linear-gradient(135deg,#060D1B 0%,#0D2040 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 25% 50%,rgba(0,102,255,0.12) 0%,transparent 50%),
    radial-gradient(circle at 75% 50%,rgba(108,71,255,0.08) 0%,transparent 50%);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer-bg { background: #040A15; }

/* Footer Logo - matches navbar style */
.footer-logo {
  position: relative;
}
.footer-logo-glow {
  position: absolute;
  width: 50px; height: 50px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.footer-logo:hover .footer-logo-glow {
  opacity: 1;
}
.footer-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #1E40AF, #7C3AED);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(59, 130, 246, 0.35), inset 0 1px 0 rgba(255,255,255,0.15);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}
.footer-logo:hover .footer-logo-icon {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(59, 130, 246, 0.45), inset 0 1px 0 rgba(255,255,255,0.2);
}
.footer-logo-text {
  font-size: 19px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
}
.footer-logo-accent {
  background: linear-gradient(135deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-link {
  display: block;
  color: rgba(255,255,255,0.55);
  font-size: 14px; font-weight: 400;
  text-decoration: none;
  padding: 4px 0;
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.9); }
.footer-divider { border-color: rgba(255,255,255,0.07); }

/* =========================================================
   COMPARE TABLE
   ========================================================= */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th {
  background: #F9FAFB;
  padding: 14px 16px;
  text-align: left; font-weight: 700;
  font-size: 13px; color: #374151;
  border-bottom: 2px solid #E5E7EB;
}
.compare-table td {
  padding: 13px 16px;
  border-bottom: 1px solid #F3F4F6;
  font-size: 14px; color: #374151;
  vertical-align: middle;
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: #FAFBFF; }
.compare-table th:first-child, .compare-table td:first-child { border-radius: 0; }
.col-highlight { background: #F0F4FF !important; }

/* =========================================================
   UPTIME DOT
   ========================================================= */
.uptime-dot {
  display: inline-block; width: 8px; height: 8px;
  border-radius: 50%; background: #10B981;
  animation: uptimePulse 2s infinite;
  margin-right: 6px;
}
@keyframes uptimePulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
  50%      { box-shadow: 0 0 0 5px rgba(16,185,129,0); }
}

/* =========================================================
   SCROLL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* =========================================================
   MISC
   ========================================================= */
.check-row {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 10px; font-size: 14px; color: #374151;
}
.check-row .ci { color: #0066FF; margin-top: 2px; flex-shrink: 0; }

.divider-gradient {
  height: 1px;
  background: linear-gradient(90deg,transparent,#E5E7EB 20%,#E5E7EB 80%,transparent);
}

/* Trust bar */
.trust-bar { background: #F8FAFF; border-top: 1px solid #E5E7EB; border-bottom: 1px solid #E5E7EB; }

/* Contact form */
.form-input {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #E5E7EB;
  border-radius: 10px;
  font-size: 15px;
  font-family: 'Inter', sans-serif;
  color: #111827;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus { border-color: #0066FF; box-shadow: 0 0 0 3px rgba(0,102,255,0.1); }
.form-input::placeholder { color: #9CA3AF; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: #374151; margin-bottom: 6px; }

/* =========================================================
   CONTACT CARDS
   ========================================================= */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1000px) {
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .contact-cards { grid-template-columns: 1fr; }
}

.contact-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #E5E7EB;
  text-align: center;
  transition: all 0.3s ease;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--card-color, #0066FF);
}

.contact-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 20px;
}
.contact-card__icon i { color: var(--icon-color, #0066FF); }
.contact-card--email { --card-color: #0066FF; }
.contact-card--email .contact-card__icon { background: linear-gradient(135deg, #EEF4FF, #DBEAFE); --icon-color: #0066FF; }
.contact-card--sales { --card-color: #10B981; }
.contact-card--sales .contact-card__icon { background: linear-gradient(135deg, #ECFDF5, #D1FAE5); --icon-color: #10B981; }
.contact-card--response { --card-color: #F59E0B; }
.contact-card--response .contact-card__icon { background: linear-gradient(135deg, #FFF7ED, #FFEDD5); --icon-color: #F59E0B; }
.contact-card--hours { --card-color: #7C3AED; }
.contact-card--hours .contact-card__icon { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); --icon-color: #7C3AED; }

.contact-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 4px;
}
.contact-card__desc {
  font-size: 13px;
  color: #64748B;
  margin-bottom: 10px;
}
.contact-card__value {
  font-size: 14px;
  font-weight: 600;
}
.contact-card--email .contact-card__value { color: #0066FF; }
.contact-card--sales .contact-card__value { color: #10B981; }
.contact-card--response .contact-card__value { color: #F59E0B; }
.contact-card--hours .contact-card__value { color: #7C3AED; }

/* =========================================================
   PRODUCT CARDS — Clean Modern Design
   ========================================================= */
.product-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media (max-width: 1100px) {
  .product-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}
@media (max-width: 640px) {
  .product-cards-grid { grid-template-columns: 1fr; }
}

.product-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: var(--card-color, #0066FF);
}

/* Card variants */
.product-card--dedicated { --card-color: #6D28D9; }
.product-card--vps { --card-color: #10B981; }
.product-card--cloud { --card-color: #F59E0B; }
.product-card--enterprise { --card-color: #7C3AED; border-color: rgba(124, 58, 237, 0.3); }

/* Icon */
.product-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.product-card__icon i {
  font-size: 22px;
  color: #fff;
}
.product-card--dedicated .product-card__icon { background: linear-gradient(135deg, #1D4ED8, #6D28D9); }
.product-card--vps .product-card__icon { background: linear-gradient(135deg, #10B981, #059669); }
.product-card--cloud .product-card__icon { background: linear-gradient(135deg, #F59E0B, #EA580C); }
.product-card--enterprise .product-card__icon { background: linear-gradient(135deg, #7C3AED, #8B5CF6); }

/* Header */
.product-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #0F172A;
  margin-bottom: 2px;
}
.product-card__subtitle {
  font-size: 13px;
  color: #6B7280;
  margin-bottom: 12px;
}

/* Description */
.product-card__desc {
  font-size: 14px;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 0;
}

/* Features */
.product-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  margin-bottom: auto;
  padding-bottom: 16px;
}
.product-card__feature {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #475569;
  min-width: calc(50% - 8px);
}
.product-card__feature i {
  font-size: 12px;
  color: var(--card-color, #0066FF);
}

/* Footer */
.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid #F1F5F9;
  margin-top: auto;
}

.product-card__price-label {
  font-size: 11px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.product-card__price-row {
  display: flex;
  align-items: baseline;
}
.product-card__price {
  font-size: 24px;
  font-weight: 800;
  color: #0F172A;
}
.product-card__price-unit {
  font-size: 13px;
  color: #6B7280;
  margin-left: 2px;
}

/* CTA Button */
.product-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
}
.product-card__cta i {
  font-size: 11px;
  transition: transform 0.2s ease;
}
.product-card__cta:hover i {
  transform: translateX(2px);
}

.product-card--dedicated .product-card__cta { background: linear-gradient(135deg, #1D4ED8, #6D28D9); }
.product-card--vps .product-card__cta { background: linear-gradient(135deg, #10B981, #059669); }
.product-card--cloud .product-card__cta { background: linear-gradient(135deg, #F59E0B, #EA580C); }
.product-card--enterprise .product-card__cta { background: linear-gradient(135deg, #7C3AED, #8B5CF6); }

.product-card__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Badge */
.product-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 4px;
  background: linear-gradient(135deg, #7C3AED, #8B5CF6);
  color: #fff;
}
