/* Red Host — Unified styles (Homepage + Hosting + VPS + Domains + Network + Support) */

:root {
  --color-navy: #111827;
  --color-red: #ef4444;
  --color-red-dark: #dc2626;
  --color-bg: #f9fafb;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-white: #ffffff;
  --color-check: #10b981;
  --font: "Inter", "Helvetica Neue", Arial, sans-serif;
  --shadow-sm: 0 4px 6px rgba(0,0,0,0.02);
  --shadow-md: 0 10px 40px rgba(17, 24, 39, 0.08), 0 2px 8px rgba(17, 24, 39, 0.04);
  --shadow-nav: 0 4px 14px rgba(239, 68, 68, 0.18);
  --radius: 16px;
  --radius-pill: 99px;
  --header-h: 72px;
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-navy);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

a:hover {
  color: var(--color-red);
}

:focus-visible {
  outline: 2px solid var(--color-red);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.container--narrow {
  max-width: 800px;
}

@media (min-width: 480px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.text-center {
  text-align: center;
}

.text-accent {
  color: var(--color-red);
}

.font-bold {
  font-weight: 700;
}

.font-mono {
  font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
}

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Header */
.site-header {
  height: var(--header-h);
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
  display: flex;
  align-items: center;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}

.logo {
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.logo:hover {
  color: inherit;
}

.logo__red {
  color: var(--color-navy);
}

.logo__host {
  color: var(--color-red);
}

.logo--footer:hover {
  color: inherit;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: var(--radius);
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  width: 22px;
  background: var(--color-navy);
  margin: 0 auto;
  transition: transform var(--transition), opacity var(--transition);
}

@media (min-width: 900px) {
  .nav-toggle {
    display: none;
  }
}

.site-nav {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 200;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.25rem 1.5rem;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.site-nav.is-open {
  display: flex;
}

@media (min-width: 900px) {
  .site-nav {
    display: flex;
    position: static;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 0;
  }
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

@media (min-width: 900px) {
  .site-nav__list {
    flex-direction: row;
    gap: 32px;
    flex: 1;
    justify-content: center;
  }
}

.site-nav__list a {
  display: block;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-navy);
  border-radius: 0;
  padding: 0;
}

.site-nav__list a:hover {
  color: var(--color-red);
  background: transparent;
}

.site-nav__list a.active-nav {
  color: var(--color-red);
  background: transparent;
}

.header__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.header__actions .btn {
  font-size: 13px;
  padding-left: 24px;
  padding-right: 24px;
}

@media (min-width: 900px) {
  .header__actions {
    flex-shrink: 0;
    margin-left: 0.5rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: all 0.2s;
}

.btn--outline {
  border: 1px solid var(--color-border);
  color: var(--color-navy);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--color-navy);
  color: var(--color-navy);
  background: rgba(17, 24, 39, 0.02);
}

.btn--primary-nav {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn--primary-nav:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
}

.btn--block {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: auto;
}

.btn--dark {
  background: var(--color-navy);
  color: var(--color-white);
  border-color: var(--color-navy);
}

.btn--dark:hover {
  background: #1f2937;
  border-color: #1f2937;
}

.btn--accent {
  background: var(--color-red);
  color: var(--color-white);
  border-color: var(--color-red);
}

.btn--accent:hover {
  background: var(--color-red-dark);
  border-color: var(--color-red-dark);
}

.btn--inline {
  margin-top: 1rem;
}

/* Hero Elements for Internal Pages */
.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--color-white) 0%, var(--color-bg) 100%);
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--color-border);
}

.page-title {
  margin: 0.5rem 0 1rem;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  color: var(--color-navy);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.page-subtitle {
  margin: 0 auto;
  max-width: 720px;
  font-size: 1.05rem;
  color: var(--color-muted);
  line-height: 1.65;
}

/* Hero Homepage */
.hero {
  position: relative;
  background: #090d16; /* Dark slate background */
  padding: 2.5rem 0 3.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 3.5rem 0 4.5rem;
  }
}

.hero__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero__slides::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(9, 13, 22, 0.4) 0%, rgba(9, 13, 22, 0.88) 100%), linear-gradient(180deg, rgba(9, 13, 22, 0.2) 0%, #090d16 100%);
  pointer-events: none;
  z-index: 2;
}

.hero__slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.2s ease-in-out, transform 12s linear;
  transform: scale(1.08);
  z-index: 1;
}

.hero__slide.active {
  opacity: 0.65; /* Richly visible datacenter imagery on a dark canvas */
  transform: scale(1);
}

/* Interactive Slide Controls Styling */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(9, 13, 22, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  z-index: 10;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero__arrow:hover {
  background: rgba(239, 68, 68, 0.25);
  border-color: #ff4d4d;
  color: #ffffff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35);
}

.hero__arrow--prev {
  left: 1.5rem;
}

.hero__arrow--next {
  right: 1.5rem;
}

@media (max-width: 768px) {
  .hero__arrow {
    display: none; /* Hide arrows on tablets and mobiles for elegant text spacing */
  }
}

.hero__dots {
  position: absolute;
  bottom: 0.85rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.55rem;
  z-index: 10;
}

.hero__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.55);
}

.hero__dot.active {
  background: #ff4d4d;
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(239, 68, 68, 0.6);
}

.hero__glow {
  position: absolute;
  inset: -20% 20% auto;
  height: 70%;
  max-height: 420px;
  background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(239, 68, 68, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 2;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 1.25rem;
  padding: 0.45rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ff6b6b; /* Bright light-red for high contrast on dark background */
  backdrop-filter: blur(8px);
  border-radius: var(--radius-pill);
  /*font-size: 0.6875rem;*/
  font-size: clamp(0.51rem, 1vw, 0.6875rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.hero__badge-icon {
  font-size: 0.85rem;
}

.hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.56rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero__title-line {
  display: block;
}

.hero__title-line--dark {
  color: #ffffff; /* Brilliant white for perfect readability on dark image slide background */
}

.hero__title-line--accent {
  color: #ff4d4d; /* Bright hot red */
}

.hero__lead {
  margin: 0 auto 1.75rem;
  max-width: 540px;
  font-size: 1rem;
  color: #9ca3af; /* Soft gray for perfect balance and readability */
  font-weight: 400;
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.domain-search {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 560px;
  margin: 0 auto 1.25rem;
  background: #ffffff;
  border-radius: var(--radius-pill);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.35rem 0.35rem 0.35rem 1.25rem;
  gap: 0.35rem;
  transition: all var(--transition);
}

.domain-search:focus-within {
  border-color: #ff4d4d;
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.15), 0 0 0 4px rgba(239, 68, 68, 0.2);
  transform: translateY(-1px);
}

.domain-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.65rem 0;
  color: var(--color-navy);
  outline: none;
}

.domain-search__input::placeholder {
  color: #9ca3af;
}

.domain-search__submit {
  flex-shrink: 0;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.65rem 1.35rem;
  border: 0;
  border-radius: var(--radius-pill);
  background: var(--color-red);
  color: var(--color-white);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.domain-search__submit:hover {
  background: var(--color-red-dark);
  transform: scale(1.02);
}

.tld-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  /*font-size: 0.8125rem;*/
  font-size: clamp(0.63rem, 1vw, 0.8125rem);
  color: rgba(255, 255, 255, 0.7);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.tld-strip li {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
}

.tld-strip strong {
  color: #ffffff;
  font-weight: 700;
}

.tld-strip__from {
  font-weight: 400;
  text-transform: lowercase;
}

.tld-strip__price {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}

.tld-strip__sep {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  user-select: none;
}

@media (max-width: 380px) {
  .tld-strip__sep {
    display: none;
  }

  .tld-strip {
    flex-direction: row;
    gap: 0.35rem;
  }
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 4.5rem 0;
  }
}

.section--muted {
  background: var(--color-bg);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section__subtitle {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.section__title--left,
.section__subtitle--left {
  text-align: left;
}

.two-col {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .two-col--reverse > :first-child {
    order: 2;
  }

  .two-col--reverse > :last-child {
    order: 1;
  }
}

/* Pricing Grid */
.pricing__grid {
  display: grid;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}

.pricing-card:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.pricing-card--featured {
  border-color: var(--color-red);
  border-width: 2px;
  transform: scale(1.02);
  box-shadow: 0 20px 40px rgba(239, 68, 68, 0.08);
  padding: 32px;
}

.pricing-card--featured:hover {
  box-shadow: 0 24px 48px rgba(239, 68, 68, 0.12);
}

.pricing-card__ribbon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 4px 12px;
  background: var(--color-red);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(239, 68, 68, 0.18);
}

.pricing-card__name {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 700;
}

.pricing-card__price {
  margin: 0 0 24px;
  line-height: 1.1;
  display: flex;
  align-items: baseline;
}

.pricing-card__amount {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pricing-card__period {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-muted);
}

.pricing-card__was {
  margin: -16px 0 24px;
  font-size: 13px;
  color: var(--color-muted);
}

.pricing-card__was s {
  text-decoration-thickness: 1px;
}

.feature-list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  flex: 1;
}

.feature-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 14px;
  color: #374151;
  display: flex;
  align-items: center;
}

.feature-list li:last-child {
  margin-bottom: 0;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-color: var(--color-check);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='currentColor'%3E%3Cpath fill-rule='evenodd' d='M16.707 5.293a1 1 0 010 1.414l-8 8a1 1 0 01-1.414 0l-4-4a1 1 0 011.414-1.414L8 12.586l7.293-7.293a1 1 0 011.414 0z' clip-rule='evenodd'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

/* Red Edge Section Grid */
.red-edge {
  background: linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
}

.red-edge__label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-red);
}

.red-edge__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  max-width: 520px;
}

.red-edge__intro {
  margin: 0 0 2rem;
  max-width: 560px;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.red-edge__grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .red-edge__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .red-edge__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.red-edge__card {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.red-edge__card:hover {
  transform: translateY(-2px);
}

.red-edge__card--light {
  background: #f3f4f6;
  border: 1px solid var(--color-border);
}

.red-edge__card--dark {
  background: linear-gradient(145deg, #111827 0%, #1f2937 55%, #111827 100%);
  color: #e5e7eb;
  border: 1px solid #374151;
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.25);
}

.red-edge__card--dark:hover {
  box-shadow: 0 16px 48px rgba(17, 24, 39, 0.35);
}

.red-edge__card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  border-radius: 10px;
  background: rgba(239, 68, 68, 0.2);
  color: var(--color-red);
}

.red-edge__card-title {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
}

.red-edge__card--dark .red-edge__card-title {
  color: var(--color-white);
}

.red-edge__card-text {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--color-muted);
}

.red-edge__card--dark .red-edge__card-text {
  color: #9ca3af;
}

.check-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-bullets li {
  position: relative;
  padding-left: 1.65rem;
  margin-bottom: 0.75rem;
  color: #374151;
}

.check-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  background-color: var(--color-check);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41L9 16.17z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
}

/* Panels */
.stat-panel {
  padding: 1.5rem;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.stat-panel__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.stat-panel__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-red);
  letter-spacing: -0.02em;
}

.stat-panel__label {
  font-size: 0.875rem;
  color: var(--color-muted);
  text-transform: lowercase;
}

.stat-panel__note {
  margin: 0;
  font-size: 0.75rem;
  color: #9ca3af;
}

.section--cta {
  padding: 3rem 0;
}

.cta-banner {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(17, 24, 39, 0.04) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}

.cta-banner__title {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.cta-banner__text {
  margin: 0 0 1.25rem;
  color: var(--color-muted);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Badges */
.badge {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
}

.badge--success {
  background-color: rgba(16, 185, 129, 0.12);
  color: #059669;
}

.badge--warning {
  background-color: rgba(245, 158, 11, 0.12);
  color: #d97706;
}

/* --- Granular Specifications Table Structure --- */
.table-vessel {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9375rem;
}

.comparison-table th {
  background: var(--color-bg);
  color: var(--color-navy);
  font-weight: 700;
  padding: 1rem 1.25rem;
  border-bottom: 2px solid var(--color-border);
}

.comparison-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--color-border);
  color: #374151;
}

.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table tr:hover td {
  background: rgba(17, 24, 39, 0.01);
}

/* --- VPS Spec Calculator Details --- */
.vps-slider-wrapper {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  max-width: 800px;
  margin: 0 auto;
}

.vps-slider-container {
  margin-bottom: 2rem;
}

.vps-slider-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.vps-slider-tier-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-navy);
}

.vps-slider-price-label {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-red);
}

.vps-range {
  width: 100%;
  height: 8px;
  background: var(--color-border);
  outline: none;
  border-radius: var(--radius-pill);
  appearance: none;
  cursor: pointer;
}

.vps-range::-webkit-slider-thumb {
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-red);
  border: 3px solid var(--color-white);
  box-shadow: var(--shadow-nav);
  transition: transform var(--transition);
}

.vps-range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.vps-indicator-row {
  display: flex;
  justify-content: space-between;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--color-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.vps-spec-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 600px) {
  .vps-spec-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.vps-spec-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.vps-spec-label {
  display: block;
  font-size: 0.6875rem;
  text-transform: uppercase;
  color: var(--color-muted);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.vps-spec-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-navy);
}

.btn--large {
  padding: 0.85rem 2rem;
  font-size: 1rem;
}

/* --- FAQ details drop-downs --- */
.faq-container {
  max-width: 800px;
}

.faq-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2rem;
}

.faq-vessel {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-vessel[open] {
  border-color: rgba(239, 68, 68, 0.4);
}

.faq-summary {
  font-weight: 600;
  font-size: 1rem;
  padding: 1.15rem 1.5rem;
  cursor: pointer;
  color: var(--color-navy);
  outline: none;
  list-style: none; /* Hide default triangle */
}

.faq-summary::marker, .faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "+";
  float: right;
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-muted);
}

.faq-vessel[open] .faq-summary::after {
  content: "âˆ’";
}

.faq-body {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: #374151;
  border-top: 1px solid transparent;
}

.faq-vessel[open] .faq-body {
  border-top-color: var(--color-border);
}

/* --- Interactive Speedtest Container --- */
.speedtest-box {
  background: var(--color-navy);
  color: var(--color-white);
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  box-shadow: 0 20px 50px rgba(17, 24, 39, 0.4);
}

.speedtest-controls {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-label {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #9ca3af;
}

.form-input, .form-textarea {
  font-family: inherit;
  font-size: 0.9375rem;
  padding: 0.75rem 1rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: var(--color-white);
  outline: none;
  width: 100%;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.speedtest-box .form-input {
  background-color: rgba(255, 255, 255, 0.06);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--color-red);
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.25);
}

.speedtest-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .speedtest-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.speedtest-metric {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.metric-label {
  font-size: 0.6875rem;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.metric-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
}

.status-indicator {
  font-size: 0.85rem;
  font-weight: bold;
  color: #9ca3af;
  margin-top: 0.5rem;
}

/* --- Support/Contact Split Details --- */
.support-split-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .support-split-layout {
    grid-template-columns: 1.7fr 1fr;
  }
}

.support-form-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2.25rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.pre-sales-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row-two {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .form-row-two {
    grid-template-columns: repeat(2, 1fr);
  }
}

.support-form-card .form-input, .support-form-card .form-textarea {
  background-color: var(--color-bg);
  border-color: var(--color-border);
  color: var(--color-navy);
}

.support-form-card .form-label {
  color: var(--color-navy);
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
  font-size: 0.8125rem;
}

.support-sidebar-vessel {
  display: flex;
  flex-direction: column;
}

/* --- Domain page lookup interactive checker feedback --- */
.domain-checker-container {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 2rem;
}

.domain-feedback-holder {
  margin-top: 1rem;
  border-radius: 8px;
  overflow: hidden;
  transition: opacity var(--transition);
}

.domain-match-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}

.domain-match-line:last-child {
  border-bottom: 0;
}

.domain-match-line--available {
  background-color: rgba(16, 185, 129, 0.05);
}

.domain-match-line--taken {
  background-color: rgba(239, 68, 68, 0.03);
}

.domain-match-line .domain-btn {
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 0;
  cursor: pointer;
}

.domain-match-line .domain-btn--add {
  background-color: var(--color-red);
  color: var(--color-white);
}

.domain-match-line .domain-btn--add:hover {
  background-color: var(--color-red-dark);
}

.domain-match-line .domain-btn--taken {
  background-color: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
}

/* Footer Section */
.site-footer {
  background: var(--color-navy);
  color: #d1d5db;
  padding: 2.5rem 0 1.5rem;
}

.footer__grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer__tagline {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: #9ca3af;
  max-width: 260px;
}

.footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__nav li {
  margin-bottom: 0.5rem;
}

.footer__nav a {
  font-size: 0.875rem;
  color: #d1d5db;
}

.footer__nav a:hover {
  color: var(--color-white);
}

.footer__bottom {
  border-top: 1px solid #374151;
  padding-top: 1.25rem;
}

.footer__copy {
  margin: 0;
  font-size: 0.8125rem;
  color: #9ca3af;
}

/* Scroll reveal (enhanced by JS) */
.scroll-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
