:root {
  --primary-color: #005dd8;
  --primary-dark: #0040a3;
  --accent-color: #00c9a7;
  --text-dark: #1b1f2a;
  --text-muted: #7f8fa4;
  --bg-light: #f5f7fb;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
  scroll-behavior: smooth;
}

/* Navbar */
.navbar {
  padding-top: 1rem;
  padding-bottom: 1rem;
  transition: all 0.2s ease;
}
.navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 18px rgba(15, 35, 52, 0.08);
}
.navbar-brand span {
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--primary-color);
}

/* Hero */
.hero {
  position: relative;
  padding-top: 7rem;
  padding-bottom: 5rem;
  background: radial-gradient(circle at top left, #1b7dff 0, #0050c8 35%, #021b47 100%);
  color: #ffffff;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0, transparent 65%);
  top: -200px;
  right: -200px;
  opacity: 0.8;
  pointer-events: none;
}
.hero .badge {
  background: rgba(0,0,0,0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  padding: 0.3rem 0.9rem;
}
.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
}
.hero-title span {
  color: var(--accent-color);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
}
.hero-price {
  font-weight: 800;
  font-size: 2.4rem;
}
.hero-price span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.8;
}
.hero-checklist i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}
.hero-card {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.14);
  padding: 2rem;
  color: var(--text-dark);
  position: relative;
  z-index: 2;
}
.hero-card .nav-pills .nav-link {
  border-radius: 999px;
  padding: 0.2rem 0.9rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-card .nav-pills .nav-link.active {
  background-color: var(--primary-color);
  color: #ffffff;
}
.hero-servers {
  position: relative;
  border-radius: 1.3rem;
  overflow: hidden;
  background: linear-gradient(135deg, #131a2a 0, #050b18 100%);
  padding: 1.5rem;
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.45);
}
.hero-servers small {
  color: rgba(255,255,255,0.6);
}
.hero-server-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
  font-size: 1.3rem;
  color: var(--accent-color);
}

/* Buttons */
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  font-weight: 600;
  border-radius: 999px;
  padding-inline: 1.8rem;
}
.btn-primary:hover {
  background-color: #00a88a;
  border-color: #00a88a;
}
.btn-outline-light {
  border-radius: 999px;
  border-width: 1.5px;
  font-weight: 500;
}

/* Sections */
section {
  padding-top: 4.5rem;
  padding-bottom: 4.5rem;
}
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}
.section-heading h2 {
  font-weight: 800;
  margin-bottom: 0.5rem;
}
.section-heading p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 0.98rem;
}

/* Feature Icons */
.feature-card {
  background: #ffffff;
  border-radius: 1rem;
  padding: 1.8rem 1.6rem;
  box-shadow: 0 12px 30px rgba(15, 35, 52, 0.06);
  height: 100%;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(15, 35, 52, 0.12);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(0,93,216,0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-color);
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}
.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Pricing */
.pricing-card {
  background: #ffffff;
  border-radius: 1.4rem;
  padding: 2.2rem 1.8rem;
  box-shadow: 0 16px 45px rgba(15, 35, 52, 0.08);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.02);
  position: relative;
  overflow: hidden;
}
.pricing-card.popular::before {
  content: "Most Popular";
  position: absolute;
  top: 1.1rem;
  right: -3.5rem;
  background: var(--accent-color);
  color: #fff;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.3rem 3.8rem;
  transform: rotate(35deg);
}
.pricing-price {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
}
.pricing-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 1.4rem;
  font-size: 0.95rem;
}
.pricing-features li {
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
}
.pricing-features li i {
  color: var(--accent-color);
  margin-right: 0.5rem;
}

/* Domain search */
.domain-section {
  background: var(--bg-light);
}
.domain-form {
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(15, 35, 52, 0.1);
  padding: 0.4rem 0.4rem 0.4rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}
.domain-form input[type="text"] {
  border: none;
  flex: 1 1 160px;
  min-width: 0;
}
.domain-form input[type="text"]:focus {
  box-shadow: none;
}
.domain-tlds span {
  display: inline-flex;
  align-items: baseline;
  margin-right: 1rem;
  font-size: 0.95rem;
}
.domain-tlds strong {
  margin-right: 0.25rem;
}
.domain-result {
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

/* Stats / Why Us */
.stats-badge {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent-color);
  font-weight: 600;
}
.stat {
  margin-bottom: 1.2rem;
}
.stat h3 {
  font-weight: 800;
  margin-bottom: 0.15rem;
}
.stat p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA */
.cta-section {
  background: linear-gradient(135deg, #005dd8 0, #021b47 100%);
  color: #ffffff;
  border-radius: 1.5rem;
  padding: 2.7rem 2rem;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  right: -130px;
  top: -120px;
  opacity: 0.6;
}

/* Footer */
footer {
  border-top: 1px solid rgba(15, 35, 52, 0.06);
  padding-top: 2.3rem;
  padding-bottom: 2.3rem;
  font-size: 0.92rem;
  background: #050b18;
  color: #c8d2e3;
}
footer a {
  color: #c8d2e3;
  text-decoration: none;
  font-size: 0.92rem;
}
footer a:hover {
  color: #ffffff;
}
.footer-brand span {
  color: #ffffff;
}

@media (max-width: 991.98px) {
  .hero {
    padding-top: 6rem;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .hero-card {
    margin-top: 2.3rem;
  }
  .cta-section {
    text-align: center;
  }
  .cta-section .text-end {
    text-align: center !important;
    margin-top: 1.5rem;
  }
}