/* ==========================================================================
   MitralHost Modern Hosting Theme - Core Stylesheet
   Author: MitralHost Engineering Team
   Version: 1.0.0
   ========================================================================== */

:root {
  --bg-dark: #070B14;
  --bg-card: #0E1626;
  --bg-card-hover: #131E35;
  --bg-surface: #17233B;
  --border-color: rgba(255, 255, 255, 0.08);
  --border-color-glow: rgba(0, 240, 255, 0.35);
  --primary: #2cd3d9;
  --primary-rgb: 44, 211, 217;
  --secondary: #8B5CF6;
  --accent-pink: #F43F5E;
  --accent-green: #10B981;
  --text-main: #FFFFFF;
  --text-body: #94A3B8;
  --text-muted: #64748B;
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-card: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px -10px rgba(44, 211, 217, 0.25);
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  background-color: var(--bg-dark);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* Background Grids & Ambient Glows */
.ambient-glow-top {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(0, 240, 255, 0.08) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.ambient-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  pointer-events: none;
  z-index: 0;
}

/* Container */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

h1 { font-size: 3rem; letter-spacing: -0.02em; }
h2 { font-size: 2.25rem; letter-spacing: -0.015em; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #2cd3d9 0%, #0099FF 100%);
  color: #050B14;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(44, 211, 217, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(44, 211, 217, 0.55);
  color: #000;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border-color: var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-2px);
}

.btn-gradient {
  background: linear-gradient(135deg, #8B5CF6 0%, #00F0FF 100%);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.4);
}

.btn-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 240, 255, 0.6);
  color: #fff;
}

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

.btn-outline:hover {
  background: var(--primary);
  color: #070B14;
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
  border-radius: var(--radius-sm);
}

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

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(7, 11, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}

.top-bar {
  background: linear-gradient(90deg, #7000FF 0%, #00F0FF 100%);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 0;
  text-align: center;
}

.top-bar a {
  color: #fff;
  text-decoration: underline;
  margin-left: 8px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img, .nav-logo svg {
  height: 38px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 28px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #E2E8F0;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 0;
}

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

/* Dropdown Mega Menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 260px;
  background: #0D1424;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
  padding: 12px;
  display: none;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  color: #E2E8F0;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--primary);
}

.dropdown-item .icon {
  width: 20px;
  height: 20px;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}

.dropdown-item .title {
  font-weight: 600;
  font-size: 0.92rem;
  color: #fff;
}

.dropdown-item .desc {
  font-size: 0.78rem;
  color: var(--text-muted);
}

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

.mobile-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.25);
  padding: 6px 16px;
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.text-gradient {
  background: linear-gradient(135deg, #00F0FF 0%, #7000FF 60%, #FF007A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* Domain Search Bar */
.domain-search-card {
  max-width: 780px;
  margin: 0 auto 40px;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 10px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card), 0 0 30px rgba(0, 240, 255, 0.1);
  transition: var(--transition);
}

.domain-search-card:focus-within {
  border-color: var(--primary);
  box-shadow: var(--shadow-card), 0 0 40px rgba(0, 240, 255, 0.25);
}

.domain-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
}

.domain-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1.1rem;
  padding: 10px 18px;
}

.domain-search-input::placeholder {
  color: var(--text-muted);
}

.tld-chips {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 14px;
  font-size: 0.85rem;
}

.tld-chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  color: #E2E8F0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tld-chip strong {
  color: var(--primary);
}

/* Billing Toggle */
.billing-switcher {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 40px 0 30px;
}

.billing-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  cursor: pointer;
}

.billing-label.active {
  color: #fff;
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
}

input:checked + .slider {
  background-color: #7000FF;
}

input:checked + .slider:before {
  transform: translateX(24px);
  background: #fff;
  box-shadow: 0 0 10px #fff;
}

.save-pill {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid rgba(16, 185, 129, 0.35);
  color: var(--accent-green);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Multi-Cycle Tabs (3 Mo / 6 Mo / 12 Mo) */
.billing-cycle-tabs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.04);
  padding: 5px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin: 30px auto 30px;
  gap: 4px;
}

.cycle-tab {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 8px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cycle-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
}

.cycle-tab.active {
  background: var(--primary);
  color: #070B14;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(44, 211, 217, 0.35);
}

.cycle-tab .save-pill {
  font-size: 0.72rem;
  padding: 2px 6px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.25);
  color: #c4b5fd;
  font-weight: 700;
}

.cycle-tab.active .save-pill {
  background: rgba(7, 11, 20, 0.25);
  color: #070B14;
}

.sub-rate {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: normal;
  display: block;
  margin-top: 3px;
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 30px;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 240, 255, 0.4);
  box-shadow: var(--shadow-card), 0 10px 40px rgba(0, 240, 255, 0.15);
}

.pricing-card.featured {
  background: linear-gradient(180deg, #131E35 0%, #0E1626 100%);
  border-color: var(--primary);
  box-shadow: var(--shadow-card), 0 0 40px rgba(0, 240, 255, 0.2);
}

.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #00F0FF 0%, #7000FF 100%);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(0, 240, 255, 0.4);
}

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

.plan-name {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

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

.plan-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
}

.plan-currency {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.plan-price {
  font-size: 3.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

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

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

.plan-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: #E2E8F0;
}

.plan-feature-item .check {
  color: var(--accent-green);
  font-weight: bold;
  font-size: 1.1rem;
}

/* Feature Grid / Value Proposition */
.features-section {
  padding: 90px 0;
  position: relative;
}

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

.section-tag {
  color: var(--primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-body);
}

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

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

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

.feature-icon-wrap {
  width: 54px;
  height: 54px;
  background: rgba(0, 240, 255, 0.1);
  border: 1px solid rgba(0, 240, 255, 0.25);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.feature-text {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Datacenter Locations Interactive */
.datacenters-section {
  padding: 80px 0;
  background: rgba(255, 255, 255, 0.015);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.location-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  text-align: center;
  transition: var(--transition);
}

.location-card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.location-flag {
  font-size: 2rem;
  margin-bottom: 8px;
}

.location-city {
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 4px;
}

.location-country {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.location-ping {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--accent-green);
  font-weight: 600;
  background: rgba(16, 185, 129, 0.1);
  padding: 3px 10px;
  border-radius: 12px;
}

/* Comparison Table */
.comparison-section {
  padding: 90px 0;
}

.comparison-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background: #111A2E;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
}

.comparison-table th.highlight-col {
  background: rgba(0, 240, 255, 0.12);
  color: var(--primary);
  border-left: 1px solid rgba(0, 240, 255, 0.3);
  border-right: 1px solid rgba(0, 240, 255, 0.3);
}

.comparison-table td.highlight-col {
  background: rgba(0, 240, 255, 0.04);
  color: #fff;
  font-weight: 600;
  border-left: 1px solid rgba(0, 240, 255, 0.2);
  border-right: 1px solid rgba(0, 240, 255, 0.2);
}

.check-green {
  color: var(--accent-green);
  font-size: 1.2rem;
  font-weight: bold;
}

.cross-red {
  color: var(--accent-pink);
  font-size: 1.2rem;
}

/* FAQ Accordion */
.faq-section {
  padding: 80px 0;
}

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

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(0, 240, 255, 0.35);
}

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

.faq-icon {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--primary);
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, #10192E 0%, #171738 50%, #0D1E3A 100%);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-xl);
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 240, 255, 0.15);
}

.cta-title {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.cta-subtitle {
  font-size: 1.15rem;
  color: #E2E8F0;
  max-width: 650px;
  margin: 0 auto 30px;
}

/* Footer */
.site-footer {
  background: #05080F;
  border-top: 1px solid var(--border-color);
  padding: 70px 0 30px;
  position: relative;
}

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

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-top: 16px;
  max-width: 320px;
}

.footer-col-title {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

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

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

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

.payment-badge {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.75rem;
  color: #E2E8F0;
  font-weight: 600;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 76px;
    left: 0;
    width: 100%;
    background: #070B14;
    border-bottom: 1px solid var(--border-color);
    flex-direction: column;
    padding: 24px;
    gap: 18px;
    display: none;
  }
  .nav-menu.active {
    display: flex;
  }
  .mobile-toggle {
    display: block;
  }
  .hero-title {
    font-size: 2.2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .domain-search-form {
    flex-direction: column;
  }
  .domain-search-input {
    width: 100%;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ==========================================================================
   Modern Interactive Animations & Visual Polish
   ========================================================================== */

/* 1. Pulse Dot & Glow Ring */
.pulse-dot {
  width: 9px;
  height: 9px;
  background-color: var(--primary);
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
  box-shadow: 0 0 12px var(--primary);
  animation: pulseDotAnim 2s infinite ease-in-out;
}

@keyframes pulseDotAnim {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(44, 211, 217, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 9px rgba(44, 211, 217, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(44, 211, 217, 0);
  }
}

/* 2. Billing Notice Pill */
.billing-notice-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(44, 211, 217, 0.08);
  border: 1px solid rgba(44, 211, 217, 0.3);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 999px;
  padding: 8px 24px;
  font-size: 0.9rem;
  color: #E2E8F0;
  margin: 16px auto 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25), 0 0 15px rgba(44, 211, 217, 0.1);
  transition: all 0.3s ease;
  max-width: 90%;
  line-height: 1.5;
  text-align: center;
}

.billing-notice-pill:hover {
  border-color: rgba(44, 211, 217, 0.6);
  box-shadow: 0 4px 25px rgba(44, 211, 217, 0.25);
  transform: translateY(-1px);
}

/* 3. Button Shimmer Light Reflection */
.btn-primary, .btn-gradient {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::after, .btn-gradient::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 25%;
  height: 200%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.32) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(25deg);
  animation: btnShimmer 5s infinite cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

@keyframes btnShimmer {
  0%, 70% {
    left: -60%;
  }
  100% {
    left: 150%;
  }
}

/* 4. Featured Card Animated Glow */
@keyframes featuredGlow {
  0%, 100% {
    border-color: rgba(44, 211, 217, 0.7);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(44, 211, 217, 0.25);
  }
  50% {
    border-color: rgba(139, 92, 246, 0.85);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 45px rgba(139, 92, 246, 0.35);
  }
}

.pricing-card.featured {
  animation: featuredGlow 5s ease-in-out infinite;
}

/* 5. Smooth Tab Transitions */
@keyframes tabFadeIn {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.vps-tab-content, #sectionRootServers, #sectionAuction {
  animation: tabFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* 6. Feature Item Hover Slide */
.plan-feature-item {
  transition: transform 0.2s ease, color 0.2s ease;
}

.plan-feature-item:hover {
  transform: translateX(4px);
  color: #fff;
}

/* 7. Cycle Tab Active Pulse */
.cycle-tab.active {
  animation: tabPulse 0.3s ease;
}

@keyframes tabPulse {
  0% {
    transform: scale(0.97);
  }
  50% {
    transform: scale(1.03);
  }
  100% {
    transform: scale(1);
  }
}

/* ==========================================================================
   Location Badges & Micro-Pills (Zero Line Wrapping)
   ========================================================================== */
.loc-label {
  font-weight: 600;
  color: #fff;
  font-size: 0.88rem;
  margin-right: 2px;
  white-space: nowrap;
}

.location-badges-wrap {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-wrap: wrap;
  vertical-align: middle;
}

.loc-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  padding: 2px 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #E2E8F0;
  letter-spacing: 0.3px;
  white-space: nowrap;
  transition: all 0.2s ease;
  line-height: 1.25;
}

.loc-pill:hover {
  background: rgba(44, 211, 217, 0.15);
  border-color: rgba(44, 211, 217, 0.5);
  color: #2cd3d9;
  transform: translateY(-1px);
}

/* ==========================================================================
   Hero Animated Constellation Background Canvas
   ========================================================================== */
#main-content {
  position: relative;
  overflow-x: clip;
}

.hero-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 580px;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
  mask-image: radial-gradient(ellipse 95% 85% at 50% 25%, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 95%);
  -webkit-mask-image: radial-gradient(ellipse 95% 85% at 50% 25%, rgba(0,0,0,1) 35%, rgba(0,0,0,0) 95%);
}

#mitralConstellationCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.container, .hero-section, .pricing-grid, .pricing-card, .datacenters-section, .features-section {
  position: relative;
  z-index: 1;
}


