/* ====================================
   NAIRAHOST.CLOUD - Dark Theme Only
   ==================================== */

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

:root {
  --primary: #0066ff;
  --primary-dark: #0052cc;
  --primary-light: #3385ff;
  --primary-rgb: 0, 102, 255;
  --success: #22c55e;
  --warning: #eab308;
  --error: #ef4444;

  /* Dark Theme Colors */
  --bg-body: #0a0f1c;
  --bg-section: #111827;
  --bg-section-alt: #0f172a;
  --bg-card: #1e293b;
  --bg-card-hover: #334155;
  --bg-input: #1e293b;
  --bg-navbar: rgba(10, 15, 28, 0.95);
  --bg-dropdown: #1e293b;
  --bg-footer: #030712;

  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --text-muted: #64748b;

  --border-color: #334155;
  --border-light: #1e293b;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg-body);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
}
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
}
h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}
p {
  color: var(--text-secondary);
}
a {
  color: inherit;
  text-decoration: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 10px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(var(--primary-rgb), 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--border-color);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 10px 16px;
}
.btn-ghost:hover {
  color: var(--primary);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}
.btn-white:hover {
  background: #f8fafc;
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}
.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* Promo Banner */
.promo-banner {
  background: linear-gradient(90deg, #0066ff 0%, #0052cc 100%);
  color: #fff;
  padding: 12px 0;
  font-size: 0.875rem;
  text-align: center;
}
.promo-banner .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.promo-banner a {
  font-weight: 600;
  text-decoration: underline;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s;
}
.navbar.scrolled {
  top: 0;
  padding: 12px 0;
  background: var(--bg-navbar);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.logo-accent {
  color: var(--primary);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-links > li > a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}
.chevron {
  transition: transform 0.2s;
}
.dropdown:hover .chevron {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: relative;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 280px;
  background: var(--bg-dropdown);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  box-shadow: var(--shadow-lg);
}
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 8px;
  color: var(--text-primary);
}
.dropdown-menu a:hover {
  background: var(--bg-card-hover);
}
.dropdown-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card-hover);
  border-radius: 8px;
}
.dropdown-icon svg {
  width: 20px;
  height: 20px;
  color: var(--primary);
}
.dropdown-text strong {
  display: block;
  font-size: 0.9375rem;
}
.dropdown-text span {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero Section - Zenthost Style */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 160px 0 100px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0f1c 0%, #111827 50%, #0f172a 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}

/* World Map */
.world-map {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 60%;
  height: auto;
  opacity: 0.6;
}
.map-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
  animation: drawPath 3s ease forwards;
}
@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}
.node-pulse {
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    r: 8;
  }
  50% {
    opacity: 0.5;
    r: 12;
  }
}
.line-animate {
  stroke-dasharray: 200;
  animation: lineDash 2s linear infinite;
}
@keyframes lineDash {
  to {
    stroke-dashoffset: -200;
  }
}

/* Availability Badge */
.availability-badge {
  position: absolute;
  right: 15%;
  top: 20%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  padding: 20px 30px;
  text-align: center;
}
.avail-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
}
.avail-text {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-container {
  position: relative;
  z-index: 1;
}
.hero-content {
  max-width: 700px;
}
.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);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.875rem;
  color: var(--primary-light);
  margin-bottom: 24px;
}
.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Animated Title */
.hero-title {
  margin-bottom: 24px;
}
.title-line {
  display: block;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
}
.word {
  display: inline-block;
  color: var(--primary);
}
.word-1,
.word-3,
.word-5,
.word-7 {
  color: var(--primary);
}
.word-2,
.word-4,
.word-6 {
  color: var(--success);
}
.word-8.highlight {
  color: #ff6b35;
  font-size: 1.2em;
}
.dot {
  color: var(--text-muted);
  margin: 0 4px;
}

/* Timer */
.hero-timer {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.timer-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  min-width: 80px;
}
.timer-value {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
}
.timer-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
}
.timer-separator {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-muted);
  align-self: center;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Domain Search */
.domain-search {
  padding: 60px 0;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}
.domain-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-xl);
}
.domain-card h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}
.domain-form {
  max-width: 600px;
  margin: 0 auto 24px;
}
.domain-input-wrapper {
  display: flex;
  gap: 0;
  background: var(--bg-input);
  border: 2px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
}
.domain-input {
  flex: 1;
  padding: 16px 20px;
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  outline: none;
}
.domain-input::placeholder {
  color: var(--text-muted);
}
.domain-select {
  padding: 16px;
  background: var(--bg-section);
  border: none;
  border-left: 1px solid var(--border-color);
  color: var(--text-primary);
  font-size: 0.9375rem;
  cursor: pointer;
}
.domain-input-wrapper .btn {
  border-radius: 0;
  padding: 16px 32px;
}
.domain-tlds {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.tld {
  background: var(--bg-section);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
}
.tld strong {
  color: var(--primary);
}
.tld em {
  color: var(--success);
  font-style: normal;
  margin-left: 4px;
}

/* Services Section */
.services-section {
  padding: 100px 0;
  background: var(--bg-section);
}
.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  margin-bottom: 16px;
}
.section-header p {
  max-width: 600px;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(0, 102, 255, 0.15);
}
.service-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
}
.service-icon svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
}
.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.9375rem;
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-price {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.service-price strong {
  color: var(--success);
  font-size: 1.125rem;
}
.support-card {
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
  border-color: var(--primary);
}

/* Why Section */
.why-section {
  padding: 100px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}
.why-card:hover {
  border-color: var(--primary);
}
.why-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 102, 255, 0.1);
  border-radius: 16px;
  margin: 0 auto 20px;
}
.why-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}
.why-card h3 {
  margin-bottom: 12px;
}

/* Comparison Table */
.comparison-section {
  padding: 100px 0;
  background: var(--bg-section);
}
.comparison-table-wrapper {
  overflow-x: auto;
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: 16px;
  overflow: hidden;
}
.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
}
.comparison-table th {
  background: var(--bg-section-alt);
  font-weight: 600;
  font-size: 0.9375rem;
}
.comparison-table th.highlight {
  background: var(--primary);
  color: #fff;
}
.comparison-table td.highlight {
  background: rgba(0, 102, 255, 0.05);
}
.comparison-table .badge {
  background: var(--success);
  color: #fff;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

/* Testimonials */
.testimonials-section {
  padding: 100px 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
}
.testimonial-content {
  margin-bottom: 24px;
}
.testimonial-content p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
}
.author-info strong {
  display: block;
  color: var(--text-primary);
}
.author-info span {
  font-size: 0.875rem;
  color: var(--text-muted);
}
.testimonial-rating {
  margin-left: auto;
  color: var(--warning);
  font-size: 1.25rem;
}

/* FAQ Section */
.faq-section {
  padding: 100px 0;
  background: var(--bg-section);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}
.faq-icon {
  width: 20px;
  height: 20px;
  color: var(--text-muted);
  transition: transform 0.3s;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s;
}
.faq-item.active .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* CTA Section */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0066ff 0%, #0047b3 100%);
}
.cta-content {
  text-align: center;
  color: #fff;
}
.cta-content h2 {
  color: #fff;
  margin-bottom: 16px;
}
.cta-content > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.cta-payment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-payment span {
  color: rgba(255, 255, 255, 0.8);
}
.payment-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.payment-icons img {
  height: 24px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* Footer */
.footer {
  background: var(--bg-footer);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-logo span {
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}
.footer-logo .accent {
  color: var(--primary);
}
.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9375rem;
}
.footer-links h4 {
  color: #fff;
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer-links ul {
  list-style: none;
}
.footer-links li {
  margin-bottom: 12px;
}
.footer-links a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--primary);
}
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 32px;
  text-align: center;
}
.footer-bottom p {
  color: var(--text-muted);
  font-size: 0.875rem;
}
.footer-bottom a {
  color: var(--primary);
}

/* WhatsApp Button */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: transform 0.3s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
}
.whatsapp-btn svg {
  width: 32px;
  height: 32px;
  color: #fff;
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .availability-badge {
    display: none;
  }
  .world-map {
    width: 80%;
    opacity: 0.3;
  }
}
@media (max-width: 768px) {
  .nav-links,
  .nav-actions .btn-ghost {
    display: none;
  }
  .mobile-toggle {
    display: flex;
  }
  .hero-title .title-line {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
  }
  .hero-timer {
    flex-wrap: wrap;
  }
  .timer-box {
    min-width: 60px;
    padding: 12px;
  }
  .domain-input-wrapper {
    flex-direction: column;
  }
  .domain-select,
  .domain-input-wrapper .btn {
    width: 100%;
    border-radius: 0;
    border-left: none;
    border-top: 1px solid var(--border-color);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .comparison-table {
    font-size: 0.875rem;
  }
}

/* ====================================
   ZENTHOST-STYLE COHESIVE THEME TWEAKS
   (Global + Homepage)
   ==================================== */

/* Global background + text */
body {
  background:
    radial-gradient(circle at top, #020617 0%, #020617 40%, #000 100%);
  color: var(--text-primary);
}

/* Make all sections sit on top of the same dark canvas */
section,
.main {
  background: transparent;
}

/* Navbar – glassy like premium hosting sites */
.navbar {
  background: radial-gradient(circle at top, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.96));
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

/* Logo accent */
.logo-accent {
  color: #4f46e5;
}

/* Primary buttons – pill + gradient */
.btn-primary {
  border-radius: 999px;
  border-width: 1px;
  background: linear-gradient(135deg, #4f46e5, #6366f1);
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.6);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4338ca, #4f46e5);
  transform: translateY(-1px) scale(1.01);
  box-shadow: 0 24px 55px rgba(79, 70, 229, 0.8);
}

/* Outline buttons – ghost style */
.btn-outline {
  border-radius: 999px;
  border-color: rgba(148, 163, 184, 0.6);
  background: rgba(15, 23, 42, 0.7);
  color: var(--text-secondary);
}

.btn-outline:hover {
  background: rgba(15, 23, 42, 1);
  border-color: rgba(148, 163, 184, 0.9);
  color: #e5e7eb;
}

/* Hero – more “landing page” like ZentHost */
.hero {
  min-height: 90vh;
  padding: 160px 0 120px;
}

.hero-gradient {
  background:
    radial-gradient(circle at 0% 0%, rgba(96, 165, 250, 0.18), transparent 55%),
    radial-gradient(circle at 100% 0%, rgba(76, 81, 191, 0.4), transparent 60%),
    radial-gradient(circle at 50% 100%, rgba(34, 197, 94, 0.15), transparent 55%);
}

/* Hero cards / panels */
.hero-card,
.hero-offer {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(15, 23, 42, 0.98));
  border-radius: 20px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.85);
}

/* Service cards on homepage */
.service-card {
  border-radius: 18px;
  background: radial-gradient(circle at top left,
              rgba(37, 99, 235, 0.18),
              transparent 52%)
              , rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.8);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.9);
  box-shadow: 0 30px 70px rgba(15, 23, 42, 0.95);
}

/* Support-style cards */
.support-card {
  border-radius: 18px;
  border-color: rgba(52, 211, 153, 0.7);
  box-shadow: 0 24px 60px rgba(22, 163, 74, 0.4);
}

/* Badges */
.badge,
.hero-badge,
.stat-badge {
  border-radius: 999px;
  padding-inline: 12px;
  padding-block: 5px;
}

/* Stats cards */
.stats-grid .stat-card,
.stat-card {
  background: rgba(15, 23, 42, 0.96);
  border-radius: 16px;
  border: 1px solid rgba(148, 163, 184, 0.35);
}
