/* ========================================
   DOUBLE HOSTING — Design System
   Resend-Inspired Dark Cinematic Theme
   ======================================== */

/* --- Font Imports --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

/* --- CSS Custom Properties --- */
:root {
  /* Primary */
  --color-void: #000000;
  --color-near-white: #f0f0f0;
  --color-white: #ffffff;

  /* Orange Accent */
  --color-orange-4: #ff5900;
  --color-orange-10: #ff801f;
  --color-orange-11: #ffa057;

  /* Green Accent */
  --color-green-3: #22ff99;
  --color-green-4: #11ff99;

  /* Blue Accent */
  --color-blue-4: #0075ff;
  --color-blue-5: #0081fd;
  --color-blue-10: #3b9eff;

  /* Yellow / Red */
  --color-yellow-9: #ffc53d;
  --color-red-5: #ff2047;

  /* Neutral */
  --color-silver: #a1a4a5;
  --color-dark-gray: #464a4d;
  --color-mid-gray: #5c5c5c;
  --color-medium-gray: #494949;

  /* Borders & Shadows */
  --frost-border: rgba(214, 235, 253, 0.19);
  --frost-border-alt: rgba(217, 237, 254, 0.145);
  --ring-shadow: rgba(176, 199, 217, 0.145) 0px 0px 0px 1px;
  --white-hover: rgba(255, 255, 255, 0.28);

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 120px;

  /* Radius */
  --radius-sharp: 4px;
  --radius-subtle: 6px;
  --radius-standard: 8px;
  --radius-comfortable: 10px;
  --radius-card: 12px;
  --radius-large: 16px;
  --radius-section: 24px;
  --radius-pill: 9999px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-near-white);
  background-color: var(--color-void);
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

/* --- Typography Classes --- */
.font-display {
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "ss04";
}

.font-heading {
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  font-feature-settings: "ss01", "ss04";
}

.font-body {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

.font-mono {
  font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.container-narrow {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--frost-border);
  transition: background var(--transition-base);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.nav-logo {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.5px;
  color: var(--color-white);
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img, .footer-brand img {
  /* Shifts the blue (#3b9eff, HSL 210deg) to orange (#ff801f, HSL 26deg) */
  filter: hue-rotate(-184deg) saturate(1.2);
}

.nav-logo-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--color-orange-10), var(--color-orange-4));
  border-radius: var(--radius-standard);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.35px;
  color: var(--color-silver);
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover {
  color: var(--color-white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-white);
  transition: width var(--transition-base);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

/* Dropdown Menu Styles */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-large);
  padding: var(--space-sm);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 1001;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-standard);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-silver);
  transition: all var(--transition-fast);
}

.nav-dropdown-item:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.nav-dropdown-item-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 128, 31, 0.1);
  color: var(--color-orange-10);
  border-radius: var(--radius-subtle);
  font-size: 14px;
}

/* Dropdown Arrow */
.nav-dropdown-toggle::after {
  content: '▾';
  margin-left: 4px;
  font-size: 10px;
  vertical-align: middle;
  transition: transform var(--transition-fast);
  display: inline-block;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
  transform: rotate(180deg);
}

/* Mobile Dropdown adjustment */
.nav-mobile .nav-dropdown-menu,
.nav-mobile .nav-dropdown:hover .nav-dropdown-menu {
  position: static !important;
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  padding-left: var(--space-xl) !important; /* Indent sub-items more */
  box-shadow: none !important;
  display: none;
}

.nav-mobile .nav-dropdown.active .nav-dropdown-menu {
  display: flex !important;
  flex-direction: column;
}

/* Mobile menu */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  z-index: 1001;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-near-white);
  border-radius: 2px;
  transition: all var(--transition-base);
}

/* Hamburger → X animation when active */
.nav-hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #050505;
  backdrop-filter: blur(20px);
  padding: var(--space-xl);
  flex-direction: column;
  gap: var(--space-lg);
  z-index: 1100;
  overflow-y: auto;
}

.nav-mobile.active {
  display: flex;
}

.nav-mobile .nav-link {
  display: block;
  font-size: 18px;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--frost-border);
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.43;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-fast);
  white-space: nowrap;
}

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

.btn-primary:hover {
  background: var(--white-hover);
}

.btn-solid {
  background: var(--color-white);
  color: var(--color-void);
}

.btn-solid:hover {
  background: var(--color-near-white);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-near-white);
  border-radius: var(--radius-sharp);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
}

.btn-lg {
  font-size: 16px;
  padding: 12px 32px;
}

.btn-icon {
  padding: 8px;
  border-radius: var(--radius-standard);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-4xl) var(--space-lg);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 128, 31, 0.08) 0%,
    rgba(255, 89, 0, 0.04) 30%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(60px);
}

.hero-glow-blue {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle at center,
    rgba(59, 158, 255, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
  filter: blur(80px);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--frost-border);
  background: rgba(255, 89, 0, 0.08);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-orange-11);
  margin-bottom: var(--space-xl);
  animation: fadeInUp 0.8s ease both;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-orange-10);
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 400;
  line-height: 1.00;
  letter-spacing: -0.96px;
  color: var(--color-near-white);
  margin-bottom: var(--space-lg);
  animation: fadeInUp 0.8s ease 0.1s both;
}

.hero-title span {
  background: linear-gradient(135deg, var(--color-white) 0%, var(--color-silver) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(16px, 2.5vw, 20px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-silver);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-3xl);
  animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-stat {
  text-align: center;
  line-height: normal;
}

.hero-stat-value {
  font-family: 'Outfit', sans-serif;
  font-size: 36px;
  font-weight: 600;
  letter-spacing: -1px;
  color: var(--color-white);
}

.hero-stat-label {
  font-size: 13px;
  color: var(--color-silver);
  margin-top: 4px;

  line-height: 1.6 !important;
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   SECTION STANDARD
   ======================================== */
.section {
  padding: var(--space-4xl) 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-orange-10);
  margin-bottom: var(--space-md);
  display: block;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -2px;
  color: var(--color-near-white);
  margin-bottom: var(--space-md);
}

.section-subtitle {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-silver);
  max-width: 600px;
  margin: 0 auto;
}

/* Frost divider */
.section-divider {
  width: 100%;
  height: 1px;
  background: var(--frost-border);
}

/* ========================================
   FEATURE CARDS
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.feature-card {
  background: transparent;
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-large);
  padding: var(--space-xl);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at top right,
    rgba(255, 128, 31, 0.03) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.feature-card:hover {
  border-color: rgba(214, 235, 253, 0.3);
  transform: translateY(-2px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-card);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-lg);
  font-size: 22px;
}

.feature-icon-orange {
  background: rgba(255, 89, 0, 0.15);
  color: var(--color-orange-10);
  box-shadow: 0 0 20px rgba(255, 89, 0, 0.1);
}

.feature-icon-blue {
  background: rgba(59, 158, 255, 0.15);
  color: var(--color-blue-10);
  box-shadow: 0 0 20px rgba(59, 158, 255, 0.1);
}

.feature-icon-green {
  background: rgba(17, 255, 153, 0.12);
  color: var(--color-green-4);
  box-shadow: 0 0 20px rgba(17, 255, 153, 0.08);
}

.feature-icon-yellow {
  background: rgba(255, 197, 61, 0.15);
  color: var(--color-yellow-9);
  box-shadow: 0 0 20px rgba(255, 197, 61, 0.1);
}

.feature-icon-red {
  background: rgba(255, 32, 71, 0.15);
  color: var(--color-red-5);
  box-shadow: 0 0 20px rgba(255, 32, 71, 0.1);
}

.feature-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.feature-card-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-silver);
}

/* ========================================
   PRICING SECTION
   ======================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
  overflow: visible;
  padding-top: 20px; /* room for .pricing-badge that sits -12px above card */
}

.pricing-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  align-items: start;
  overflow: visible;
  padding-top: 20px;
}

.pricing-card {
  background: transparent;
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-section);
  padding: var(--space-xl) var(--space-lg);
  padding-top: calc(var(--space-xl) + 8px);
  position: relative;
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: rgba(214, 235, 253, 0.3);
}

.pricing-card-featured {
  border-color: rgba(255, 128, 31, 0.4);
  background: rgba(255, 128, 31, 0.03);
}

.pricing-card-featured:hover {
  border-color: rgba(255, 128, 31, 0.6);
}

.pricing-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--color-orange-10), var(--color-orange-4));
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}

.pricing-tier {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-silver);
  margin: 0 0 var(--space-lg) 0;
  padding-bottom: 4px;
  line-height: 1.4;
}

.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 600;
  letter-spacing: -2px;
  color: var(--color-white);
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--color-silver);
}

.pricing-desc {
  font-size: 14px;
  color: var(--color-silver);
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.pricing-features {
  margin-bottom: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 14px;
  color: var(--color-silver);
}

.pricing-feature-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(17, 255, 153, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--color-green-4);
  flex-shrink: 0;
}

.pricing-cta {
  width: 100%;
  text-align: center;
}

/* ========================================
   SERVER LOCATIONS / INFO GRID
   ======================================== */
.info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.info-card {
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-large);
  padding: var(--space-xl);
  display: flex;
  align-items: start;
  gap: var(--space-lg);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.info-card:hover {
  border-color: rgba(214, 235, 253, 0.3);
}

.info-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-card);
  background: rgba(59, 158, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.info-card-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.info-card-content p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-silver);
}

/* ========================================
   CODE PREVIEW PANEL
   ======================================== */
.code-panel {
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-section);
  overflow: hidden;
  background: rgba(0, 0, 0, 0.5);
}

.code-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--frost-border);
}

.code-panel-dots {
  display: flex;
  gap: 6px;
}

.code-panel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-dark-gray);
}

.code-panel-dot:nth-child(1) { background: #ff5f56; }
.code-panel-dot:nth-child(2) { background: #ffbd2e; }
.code-panel-dot:nth-child(3) { background: #27c93f; }

.code-panel-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--color-silver);
}

.code-panel-body {
  padding: var(--space-lg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: auto;
}

.code-kw { color: var(--color-blue-10); }
.code-str { color: var(--color-green-4); }
.code-fn { color: var(--color-orange-10); }
.code-cm { color: var(--color-dark-gray); }
.code-num { color: var(--color-yellow-9); }
.code-var { color: var(--color-near-white); }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.testimonial-card {
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-large);
  padding: var(--space-xl);
  transition: all var(--transition-base);
}

.testimonial-card:hover {
  border-color: rgba(214, 235, 253, 0.3);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-md);
  color: var(--color-yellow-9);
  font-size: 14px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-near-white);
  margin-bottom: var(--space-lg);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-orange-10), var(--color-blue-10));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-white);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-white);
}

.testimonial-role {
  font-size: 12px;
  color: var(--color-silver);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
  padding: var(--space-4xl) 0;
  text-align: center;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 128, 31, 0.1) 0%,
    rgba(59, 158, 255, 0.05) 40%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(80px);
}

.cta-content {
  position: relative;
  z-index: 1;
}

.cta-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -2px;
  color: var(--color-near-white);
  margin-bottom: var(--space-md);
}

.cta-desc {
  font-size: 18px;
  color: var(--color-silver);
  margin-bottom: var(--space-xl);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6 !important;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  border-top: 1px solid var(--frost-border);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand p {
  font-size: 14px;
  color: var(--color-silver);
  line-height: 1.6;
  margin-top: var(--space-md);
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-standard);
  border: 1px solid var(--frost-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--color-silver);
  transition: all var(--transition-fast);
}

.footer-social-link:hover {
  background: var(--color-orange-10);
  color: var(--color-white);
  border-color: var(--color-orange-10);
}

/* ========================================
   PARTNERS / TRUSTED BY
   ======================================== */
.partner-section {
  padding: var(--space-xl) 0 var(--space-2xl);
  border-top: 1px solid var(--frost-border);
  border-bottom: 1px solid var(--frost-border);
  background: rgba(255, 255, 255, 0.015);
}

.partner-label {
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--color-dark-gray);
  margin-bottom: var(--space-xl);
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;
  gap: var(--space-xl);
}

@media (max-width: 900px) {
  .partner-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
  }
}

@media (max-width: 768px) {
  .partner-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  transition: all var(--transition-base);
}

.partner-logo img {
  height: 100%;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}

/* Dark SVGs (navy/black paths) — invert to white, then desaturate + dim */
.partner-logo-svg-dark img {
  filter: invert(1) grayscale(1) brightness(1.8) opacity(0.5);
  transition: filter var(--transition-base);
}

.partner-logo-svg-dark:hover img {
  filter: invert(1) grayscale(0) brightness(2.0) opacity(0.9);
}

/* White-background PNGs — invert bg to black, grayscale, then dim */
.partner-logo-png img {
  filter: invert(1) grayscale(1) brightness(1.6) opacity(0.5);
  transition: filter var(--transition-base);
}

.partner-logo-png:hover img {
  filter: invert(1) grayscale(0) brightness(1.8) opacity(0.9);
}

/* Dark-background images (e.g. Enhance) — grayscale + dim only, no invert */
.partner-logo-dark-bg img {
  filter: grayscale(1) brightness(1.2) opacity(0.5);
  transition: filter var(--transition-base);
}

.partner-logo-dark-bg:hover img {
  filter: grayscale(0) brightness(1.3) opacity(0.9);
}


/* ========================================
   PRICING NOTE
   ======================================== */
.pricing-note {
  margin-top: var(--space-xl);
  text-align: center;
  color: var(--color-silver);
  font-size: 13px;
  opacity: 0.8;
}

.pricing-note strong {
  color: var(--color-orange-10);
}

.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--color-silver);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer-col a:hover {
  color: var(--color-white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--frost-border);
  font-size: 13px;
  color: var(--color-dark-gray);
}

/* ========================================
   BADGES / TAGS
   ======================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 500;
}

.badge-orange {
  background: rgba(255, 89, 0, 0.22);
  color: var(--color-orange-11);
}

.badge-green {
  background: rgba(17, 255, 153, 0.12);
  color: var(--color-green-4);
}

.badge-blue {
  background: rgba(59, 158, 255, 0.18);
  color: var(--color-blue-10);
}

.badge-yellow {
  background: rgba(255, 197, 61, 0.18);
  color: var(--color-yellow-9);
}

/* ========================================
   TABS
   ======================================== */
.tabs {
  display: flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-card);
  width: fit-content;
  margin: 0 auto var(--space-xl);
}

.tab {
  padding: 8px 20px;
  border-radius: var(--radius-standard);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-silver);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.tab:hover {
  color: var(--color-white);
}

.tab.active {
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

/* ========================================
   MARQUEE
   ======================================== */
.marquee-container {
  overflow: hidden;
  padding: var(--space-xl) 0;
  border-top: 1px solid var(--frost-border);
  border-bottom: 1px solid var(--frost-border);
}

.marquee-track {
  display: flex;
  gap: var(--space-xl);
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark-gray);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.marquee-item .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-dark-gray);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ========================================
   GLOBE / SERVER LOCATIONS 
   ======================================== */
.locations-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  padding: var(--space-3xl) 0;
}

.location-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
}

.location-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: relative;
}

.location-dot::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid var(--frost-border);
  animation: ping 2s ease-in-out infinite;
}

.location-dot::after {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(214, 235, 253, 0.08);
  animation: ping 2s ease-in-out 0.5s infinite;
}

@keyframes ping {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.location-dot-de {
  background: var(--color-blue-10);
  box-shadow: 0 0 20px rgba(59, 158, 255, 0.3);
}

.location-dot-nl {
  background: var(--color-orange-10);
  box-shadow: 0 0 20px rgba(255, 128, 31, 0.3);
}

.location-dot-us {
  background: var(--color-green-4);
  box-shadow: 0 0 20px rgba(17, 255, 153, 0.3);
}

.location-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-silver);
}

.location-city {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--color-dark-gray);
}

/* ========================================
   UPTIME INDICATOR
   ======================================== */
.uptime-bar {
  display: flex;
  gap: 2px;
  margin: var(--space-xl) 0;
}

.uptime-block {
  flex: 1;
  height: 28px;
  border-radius: 3px;
  background: rgba(17, 255, 153, 0.2);
  transition: all var(--transition-fast);
}

.uptime-block:hover {
  background: rgba(17, 255, 153, 0.4);
  transform: scaleY(1.2);
}

.uptime-block.down {
  background: rgba(255, 32, 71, 0.3);
}

/* ========================================
   SCROLL-TRIGGERED COUNTER
   ======================================== */
.counter-value {
  font-family: 'Outfit', sans-serif;
  font-variant-numeric: tabular-nums;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 960px) {
  .features-grid,
  .pricing-grid,
  .pricing-grid-4,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 768px) {
  .nav-links, .nav-actions {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .features-grid,
  .pricing-grid,
  .pricing-grid-4,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-title {
    letter-spacing: -0.768px;
  }

  .section {
    padding: var(--space-3xl) 0;
  }

  .locations-visual {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-md);
    text-align: center;
  }

  .info-card {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-md);
  }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-silver { color: var(--color-silver); }
.text-white { color: var(--color-white); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.w-full { width: 100%; }


/* ==========================================
   PAGE-SPECIFIC STYLES (extracted from inline)
   ========================================== */

/* --- about.html --- */
.about-hero {
      padding: 160px 0 80px;
      position: relative;
      overflow: hidden;
      text-align: center;
      border-bottom: 1px solid var(--frost-border);
    }
.about-hero-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 500px;
      background: radial-gradient(ellipse at center, rgba(59, 158, 255, 0.08) 0%, transparent 70%);
      pointer-events: none;
      filter: blur(60px);
    }
.about-hero-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(48px, 6vw, 80px);
      font-weight: 400;
      color: var(--color-white);
      margin-bottom: var(--space-md);
      letter-spacing: -2px;
      line-height: 1.1;
    }
.about-hero-subtitle {
      font-size: clamp(18px, 2.5vw, 22px);
      color: var(--color-silver);
      max-width: 700px;
      margin: 0 auto;
      line-height: 1.6;
    }
.mission-section {
      padding: var(--space-4xl) 0;
      position: relative;
    }
.mission-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-3xl);
      align-items: center;
    }
.mission-badge {
      display: inline-block;
      padding: 6px 12px;
      border-radius: var(--radius-pill);
      background: rgba(255, 255, 255, 0.05);
      border: 1px solid var(--frost-border);
      color: var(--color-dark-gray);
      text-transform: uppercase;
      letter-spacing: 1.5px;
      font-size: 11px;
      font-weight: 600;
      margin-bottom: var(--space-md);
    }
.mission-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(32px, 5vw, 40px);
      font-weight: 400;
      color: var(--color-near-white);
      margin-bottom: var(--space-lg);
      line-height: 1.2;
      letter-spacing: -1px;
    }
.mission-text {
      font-size: 17px;
      color: var(--color-silver);
      line-height: 1.7;
      margin-bottom: var(--space-md);
    }
    
    /* Stats Grid */
    .about-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: var(--space-lg);
      margin-top: var(--space-3xl);
    }
.about-stat-card {
      background: rgba(255,255,255,0.01);
      border: 1px solid var(--frost-border);
      border-radius: var(--radius-large);
      padding: var(--space-xl);
      text-align: center;
      transition: all var(--transition-base);
    }
.about-stat-card:hover {
      background: rgba(255,255,255,0.03);
      border-color: rgba(255,255,255,0.15);
      transform: translateY(-2px);
    }
.stat-number {
      font-family: 'Outfit', sans-serif;
      font-size: 48px;
      font-weight: 300;
      color: var(--color-white);
      margin-bottom: 8px;
    }
.stat-label {
      font-size: 14px;
      color: var(--color-silver);
    }
    
    /* Values Grid */
    .values-section {
      padding: var(--space-3xl) 0 var(--space-4xl);
      background: rgba(255, 255, 255, 0.015);
      border-top: 1px solid var(--frost-border);
    }
.values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-xl);
      margin-top: var(--space-2xl);
    }
.value-card {
      padding: var(--space-xl);
      border-radius: var(--radius-large);
      border: 1px dashed var(--frost-border);
    }
.value-icon {
      font-size: 28px;
      margin-bottom: 16px;
    }
.value-title {
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      color: var(--color-white);
      margin-bottom: 12px;
      font-weight: 500;
    }
.value-text {
      color: var(--color-silver);
      font-size: 15px;
      line-height: 1.6;
    }
    @media (max-width: 900px) {
      .mission-grid { grid-template-columns: 1fr; }
      .about-stats { grid-template-columns: repeat(2, 1fr); }
      .values-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 600px) {
      .about-stats { grid-template-columns: 1fr; }
      .values-grid { grid-template-columns: 1fr; }
    }

/* --- article.html --- */
.article-header {
      padding: 140px 0 60px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--frost-border);
    }
.article-hero-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse at center, rgba(17, 255, 153, 0.05) 0%, transparent 70%);
      pointer-events: none;
      filter: blur(50px);
    }
.breadcrumb {
      font-size: 13px;
      font-weight: 500;
      color: var(--color-silver);
      margin-bottom: var(--space-lg);
      display: flex;
      align-items: center;
      gap: 8px;
    }
.breadcrumb a {
      color: var(--color-blue-10);
      transition: color var(--transition-fast);
    }
.breadcrumb a:hover {
      color: var(--color-white);
    }
.article-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(32px, 4vw, 44px);
      font-weight: 400;
      color: var(--color-white);
      margin-bottom: var(--space-md);
      letter-spacing: -1px;
      line-height: 1.2;
    }
.article-meta {
      display: flex;
      align-items: center;
      gap: var(--space-lg);
      font-size: 14px;
      color: var(--color-dark-gray);
      margin-bottom: var(--space-xl);
    }
.article-meta span {
      display: flex;
      align-items: center;
      gap: 6px;
    }
.article-author-avatar {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
      color: var(--color-white);
    }
.article-body-section {
      padding: var(--space-4xl) 0;
    }
.grid-layout {
      display: grid;
      grid-template-columns: 2.5fr 1fr;
      gap: var(--space-3xl);
      align-items: start;
    }
    
    /* Article typography */
    .article-prose {
      color: var(--color-silver);
      line-height: 1.8;
      font-size: 16px;
    }
.article-prose h2, .article-prose h3 {
      font-family: 'Outfit', sans-serif;
      color: var(--color-white);
      margin-top: 2.5em;
      margin-bottom: 1em;
      font-weight: 500;
    }
.article-prose h2 { font-size: 28px; letter-spacing: -0.5px; }
.article-prose h3 { font-size: 22px; }
.article-prose p { margin-bottom: 1.5em; }
.article-prose img {
      width: 100%;
      border-radius: var(--radius-large);
      border: 1px solid var(--frost-border);
      margin: 2em 0;
    }
.article-prose pre {
      background: rgba(0,0,0,0.6);
      border: 1px solid var(--frost-border);
      border-radius: var(--radius-standard);
      padding: var(--space-md);
      overflow-x: auto;
      margin: 2em 0;
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      color: var(--color-near-white);
    }
.article-prose ul, .article-prose ol {
      margin-bottom: 1.5em;
      padding-left: 1.5em;
    }
.article-prose li {
      margin-bottom: 0.5em;
    }
    
    /* Callout Box */
    .article-callout {
      background: rgba(59, 158, 255, 0.05);
      border-left: 4px solid var(--color-blue-10);
      padding: var(--space-lg);
      border-radius: 0 var(--radius-standard) var(--radius-standard) 0;
      margin: 2em 0;
    }
.article-callout h4 {
      color: var(--color-white);
      margin-top: 0;
      margin-bottom: 8px;
    }
.article-callout p {
      margin-bottom: 0;
      color: rgba(255,255,255,0.8);
    }
    
    /* Sidebar */
    .guide-sidebar {
      border-radius: var(--radius-large);
      padding: var(--space-lg);
      background: rgba(0,0,0,0.4);
      border: 1px dashed rgba(255,255,255,0.1);
      position: sticky;
      top: 100px;
    }
.guide-sidebar h4 {
      color: var(--color-white);
      font-family: 'Outfit', sans-serif;
      font-size: 16px;
      margin-bottom: 16px;
    }
.toc-link {
      display: block;
      color: var(--color-silver);
      font-size: 14px;
      margin-bottom: 12px;
      transition: color var(--transition-fast);
    }
.toc-link:hover, .toc-link.active {
      color: var(--color-blue-10);
    }
    @media (max-width: 900px) {
      .grid-layout { grid-template-columns: 1fr; }
      .guide-sidebar { position: static; order: -1; }
    }

/* --- billing.html --- */
.article-hero {
      padding: 140px 0 60px;
      position: relative;
      overflow: hidden;
      border-bottom: 1px solid var(--frost-border);
    }
.article-hero-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse at center, rgba(59, 158, 255, 0.05) 0%, transparent 70%);
      pointer-events: none;
      filter: blur(50px);
    }
.article-content {
      padding: var(--space-4xl) 0;
    }
.article-title {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 400;
      color: var(--color-white);
      margin-bottom: var(--space-md);
      letter-spacing: -1px;
    }
.article-desc {
      font-size: 18px;
      color: var(--color-silver);
      max-width: 700px;
      line-height: 1.5;
    }
    /* Guide Cards */
    .guide-card {
      border: 1px solid var(--frost-border);
      border-radius: var(--radius-large);
      padding: var(--space-xl);
      margin-bottom: var(--space-xl);
      background: rgba(255, 255, 255, 0.01);
      transition: border-color var(--transition-base);
    }
.guide-card:hover {
      border-color: rgba(214, 235, 253, 0.2);
    }
.guide-card-title {
      font-family: 'Outfit', sans-serif;
      font-size: 22px;
      font-weight: 500;
      color: var(--color-near-white);
      margin-bottom: var(--space-sm);
    }
.guide-card-text {
      font-size: 15px;
      color: var(--color-silver);
      line-height: 1.6;
      margin-bottom: var(--space-md);
    }
.guide-card-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      font-weight: 500;
      color: var(--color-blue-10);
      transition: color var(--transition-fast);
    }
.guide-card-btn:hover {
      color: var(--color-white);
    }
.guide-sidebar {
      border-radius: var(--radius-large);
      padding: var(--space-lg);
      background: rgba(0,0,0,0.4);
      border: 1px dashed rgba(255,255,255,0.1);
      position: sticky;
      top: 100px;
    }
.grid-layout {
      display: grid;
      grid-template-columns: 2.5fr 1fr;
      gap: var(--space-2xl);
      align-items: start;
    }
    @media (max-width: 900px) {
      .grid-layout { grid-template-columns: 1fr; }
      .guide-sidebar { position: static; }
    }

/* --- contact.html --- */
/* === CONTACT PAGE SPECIFIC === */
    .contact-hero {
      padding: 160px 0 60px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
.contact-hero-glow {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 500px;
      background: radial-gradient(ellipse at center, rgba(255, 128, 31, 0.06) 0%, rgba(59, 158, 255, 0.04) 40%, transparent 70%);
      pointer-events: none;
      filter: blur(70px);
    }

    /* Main layout */
    .contact-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-xl);
      align-items: start;
    }

    /* Contact form */
    .contact-form-wrapper {
      border: 1px solid var(--frost-border);
      border-radius: var(--radius-section);
      padding: var(--space-xl);
      position: relative;
      overflow: hidden;
    }
.contact-form-wrapper::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at top left, rgba(255, 128, 31, 0.02) 0%, transparent 50%);
      pointer-events: none;
    }
.contact-form-title {
      font-family: 'Outfit', sans-serif;
      font-size: 24px;
      font-weight: 500;
      letter-spacing: -0.5px;
      color: var(--color-white);
      margin-bottom: 4px;
      position: relative;
    }
.contact-form-subtitle {
      font-size: 14px;
      color: var(--color-silver);
      margin-bottom: var(--space-xl);
      position: relative;
    }
.form-group {
      margin-bottom: var(--space-md);
      position: relative;
    }
.form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--space-md);
    }
.form-label {
      display: block;
      font-size: 13px;
      font-weight: 500;
      color: var(--color-near-white);
      margin-bottom: 6px;
      letter-spacing: 0.2px;
    }
.form-label .required {
      color: var(--color-orange-10);
      margin-left: 2px;
    }
.form-input,
    .form-select,
    .form-textarea {
      width: 100%;
      padding: 12px 16px;
      border-radius: var(--radius-standard);
      border: 1px solid var(--frost-border);
      background: rgba(255, 255, 255, 0.03);
      color: var(--color-near-white);
      font-family: 'Inter', sans-serif;
      font-size: 14px;
      outline: none;
      transition: all var(--transition-fast);
      -webkit-appearance: none;
      appearance: none;
    }
.form-input::placeholder,
    .form-textarea::placeholder {
      color: var(--color-dark-gray);
    }
.form-input:focus,
    .form-select:focus,
    .form-textarea:focus {
      border-color: rgba(214, 235, 253, 0.4);
      background: rgba(255, 255, 255, 0.05);
      box-shadow: 0 0 0 3px rgba(59, 158, 255, 0.08);
    }
.form-select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23a1a4a5' d='M3 4.5L6 7.5L9 4.5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 14px center;
      padding-right: 36px;
      cursor: pointer;
    }
.form-select option {
      background: #111;
      color: var(--color-near-white);
    }
.form-textarea {
      resize: vertical;
      min-height: 140px;
      line-height: 1.6;
    }
.form-submit {
      margin-top: var(--space-lg);
    }

    /* Success state */
    .form-success {
      display: none;
      text-align: center;
      padding: var(--space-3xl) var(--space-xl);
      position: relative;
    }
.form-success.show {
      display: block;
    }
.form-success-icon {
      width: 64px;
      height: 64px;
      border-radius: 50%;
      background: rgba(17, 255, 153, 0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      margin: 0 auto var(--space-lg);
      animation: scaleIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    }
@keyframes scaleIn {
      from { transform: scale(0); opacity: 0; }
to { transform: scale(1); opacity: 1; }
    }
.form-success h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 24px;
      font-weight: 500;
      color: var(--color-white);
      margin-bottom: var(--space-sm);
    }
.form-success p {
      font-size: 14px;
      color: var(--color-silver);
      line-height: 1.6;
    }

    /* Info sidebar */
    .contact-info {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }
.contact-info-card {
      border: 1px solid var(--frost-border);
      border-radius: var(--radius-large);
      padding: var(--space-xl);
      transition: all var(--transition-base);
      position: relative;
      overflow: hidden;
    }
.contact-info-card:hover {
      border-color: rgba(214, 235, 253, 0.3);
    }
.contact-info-card-header {
      display: flex;
      align-items: center;
      gap: var(--space-md);
      margin-bottom: var(--space-md);
    }
.contact-info-icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-card);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
    }
.contact-info-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 17px;
      font-weight: 500;
      color: var(--color-white);
    }
.contact-info-card p {
      font-size: 14px;
      line-height: 1.6;
      color: var(--color-silver);
    }
.contact-detail {
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      color: var(--color-blue-10);
      margin-top: var(--space-sm);
      display: block;
    }

    /* Hours table */
    .hours-table {
      width: 100%;
      margin-top: var(--space-md);
    }
.hours-row {
      display: flex;
      justify-content: space-between;
      padding: 6px 0;
      font-size: 13px;
      border-bottom: 1px solid rgba(214, 235, 253, 0.08);
    }
.hours-row:last-child {
      border-bottom: none;
    }
.hours-day {
      color: var(--color-silver);
    }
.hours-time {
      color: var(--color-near-white);
      font-weight: 500;
    }
.hours-time.always {
      color: var(--color-green-4);
    }

    /* Map placeholder */
    .contact-map {
      border: 1px solid var(--frost-border);
      border-radius: var(--radius-large);
      overflow: hidden;
      height: 200px;
      position: relative;
      background: rgba(255, 255, 255, 0.02);
    }
.contact-map-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: var(--space-sm);
    }
.contact-map-pin {
      font-size: 32px;
      animation: float 3s ease-in-out infinite;
    }
@keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }
.contact-map-address {
      font-size: 13px;
      color: var(--color-silver);
      text-align: center;
      line-height: 1.5;
    }
.contact-map-address strong {
      color: var(--color-near-white);
      font-weight: 500;
      display: block;
    }

    /* Quick help links */
    .quick-help {
      border: 1px solid var(--frost-border);
      border-radius: var(--radius-large);
      padding: var(--space-lg);
    }
.quick-help h4 {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: var(--color-white);
      margin-bottom: var(--space-md);
    }
.quick-help-links {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }
.quick-help-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: var(--radius-standard);
      font-size: 13px;
      color: var(--color-silver);
      transition: all var(--transition-fast);
    }
.quick-help-link:hover {
      background: rgba(255, 255, 255, 0.04);
      color: var(--color-white);
    }
.quick-help-link-icon {
      font-size: 16px;
      flex-shrink: 0;
    }
.quick-help-link-arrow {
      margin-left: auto;
      color: var(--color-dark-gray);
      font-size: 12px;
      transition: transform var(--transition-fast);
    }
.quick-help-link:hover .quick-help-link-arrow {
      transform: translateX(3px);
      color: var(--color-silver);
    }
    @media (max-width: 768px) {
      .contact-layout {
        grid-template-columns: 1fr;
      }
      .form-row {
        grid-template-columns: 1fr;
      }
      .contact-info {
        order: -1;
      }
    }

/* --- dedicated-servers.html --- */
.product-hero {
      padding: 180px 0 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
.product-hero-glow {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 600px;
      background: radial-gradient(ellipse at center, rgba(255, 197, 61, 0.08) 0%, rgba(255, 197, 61, 0.02) 40%, transparent 70%);
      pointer-events: none;
      filter: blur(80px);
      z-index: 0;
    }
/* --- help-center.html --- */
/* === HELP CENTER SPECIFIC === */
    .help-hero {
      padding: 160px 0 80px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
.help-hero-glow {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 700px;
      height: 500px;
      background: radial-gradient(ellipse at center, rgba(59, 158, 255, 0.07) 0%, rgba(59, 158, 255, 0.03) 30%, transparent 70%);
      pointer-events: none;
      filter: blur(60px);
    }
.help-search-wrapper {
      position: relative;
      max-width: 600px;
      margin: 0 auto;
      z-index: 1;
    }
.help-search {
      width: 100%;
      padding: 16px 24px 16px 52px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--frost-border);
      background: rgba(255, 255, 255, 0.04);
      color: var(--color-near-white);
      font-family: 'Inter', sans-serif;
      font-size: 16px;
      outline: none;
      transition: all var(--transition-base);
    }
.help-search::placeholder {
      color: var(--color-dark-gray);
    }
.help-search:focus {
      border-color: rgba(214, 235, 253, 0.4);
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 0 0 4px rgba(59, 158, 255, 0.1);
    }
.help-search-icon {
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--color-dark-gray);
      font-size: 18px;
      pointer-events: none;
    }

    /* Categories grid */
    .categories-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
    }
.category-card {
      border: 1px solid var(--frost-border);
      border-radius: var(--radius-large);
      padding: var(--space-xl) var(--space-lg);
      transition: all var(--transition-base);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }
.category-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(ellipse at top left, rgba(59, 158, 255, 0.03) 0%, transparent 60%);
      opacity: 0;
      transition: opacity var(--transition-base);
    }
.category-card:hover {
      border-color: rgba(214, 235, 253, 0.35);
      transform: translateY(-2px);
    }
.category-card:hover::before {
      opacity: 1;
    }
.category-icon {
      width: 48px;
      height: 48px;
      border-radius: var(--radius-card);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      margin-bottom: var(--space-lg);
    }
.category-card h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 18px;
      font-weight: 500;
      color: var(--color-white);
      margin-bottom: var(--space-sm);
    }
.category-card p {
      font-size: 14px;
      color: var(--color-silver);
      line-height: 1.6;
      margin-bottom: var(--space-md);
    }
.category-count {
      font-size: 12px;
      font-weight: 500;
      color: var(--color-dark-gray);
    }

    /* FAQ / Articles */
    .faq-section {
      padding: var(--space-3xl) 0;
    }
.faq-list {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
.faq-item {
      border: 1px solid var(--frost-border);
      border-radius: var(--radius-card);
      overflow: hidden;
      transition: all var(--transition-base);
    }
.faq-item:hover {
      border-color: rgba(214, 235, 253, 0.3);
    }
.faq-question {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 24px;
      cursor: pointer;
      font-size: 15px;
      font-weight: 500;
      color: var(--color-near-white);
      transition: background var(--transition-fast);
      user-select: none;
    }
.faq-question:hover {
      background: rgba(255, 255, 255, 0.03);
    }
.faq-chevron {
      width: 20px;
      height: 20px;
      color: var(--color-dark-gray);
      transition: transform var(--transition-base);
      flex-shrink: 0;
      margin-left: 16px;
    }
.faq-item.open .faq-chevron {
      transform: rotate(180deg);
    }
.faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
.faq-answer-inner {
      padding: 0 24px 20px;
      font-size: 14px;
      line-height: 1.7;
      color: var(--color-silver);
    }
.faq-answer-inner a {
      color: var(--color-blue-10);
      text-decoration: underline;
      text-underline-offset: 2px;
    }
.faq-item.open .faq-answer {
      max-height: 300px;
    }

    /* Quick links bar */
    .quick-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-lg);
      flex-wrap: wrap;
      padding: var(--space-xl) 0;
      border-bottom: 1px solid var(--frost-border);
    }
.quick-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      border-radius: var(--radius-pill);
      border: 1px solid var(--frost-border);
      font-size: 13px;
      font-weight: 500;
      color: var(--color-silver);
      transition: all var(--transition-fast);
    }
.quick-link:hover {
      border-color: rgba(214, 235, 253, 0.4);
      color: var(--color-white);
      background: rgba(255, 255, 255, 0.04);
    }

    /* Status banner */
    .status-banner {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--space-lg);
      padding: var(--space-xl);
      border: 1px solid var(--frost-border);
      border-radius: var(--radius-large);
      margin-top: var(--space-3xl);
      position: relative;
      overflow: hidden;
    }
.status-banner::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(17, 255, 153, 0.03) 0%, transparent 50%);
    }
.status-indicator {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--color-green-4);
      box-shadow: 0 0 12px rgba(17, 255, 153, 0.4);
      animation: pulse-dot 2s ease infinite;
      flex-shrink: 0;
    }
.status-text {
      font-size: 14px;
      color: var(--color-silver);
      position: relative;
    }
.status-text strong {
      color: var(--color-green-4);
      font-weight: 500;
    }

    /* Contact CTA */
    .help-contact-cta {
      text-align: center;
      padding: var(--space-3xl) 0;
      position: relative;
    }
.help-contact-cta h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 400;
      letter-spacing: -1.5px;
      color: var(--color-near-white);
      margin-bottom: var(--space-md);
    }
.help-contact-cta p {
      font-size: 16px;
      color: var(--color-silver);
      margin-bottom: var(--space-xl);
    }

    /* Support channels */
    .support-channels {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: var(--space-lg);
      margin-top: var(--space-3xl);
    }
.support-channel {
      border: 1px solid var(--frost-border);
      border-radius: var(--radius-large);
      padding: var(--space-xl);
      text-align: center;
      transition: all var(--transition-base);
    }
.support-channel:hover {
      border-color: rgba(214, 235, 253, 0.35);
      transform: translateY(-2px);
    }
.support-channel-icon {
      width: 56px;
      height: 56px;
      border-radius: var(--radius-card);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      margin: 0 auto var(--space-md);
    }
.support-channel h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 18px;
      font-weight: 500;
      color: var(--color-white);
      margin-bottom: 6px;
    }
.support-channel p {
      font-size: 13px;
      color: var(--color-silver);
      line-height: 1.5;
    }
.support-channel .detail {
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      color: var(--color-blue-10);
      margin-top: var(--space-sm);
      display: block;
    }
    @media (max-width: 768px) {
      .categories-grid,
      .support-channels {
        grid-template-columns: 1fr;
      }

      .quick-links {
        flex-direction: column;
        align-items: stretch;
      }

      .quick-link {
        justify-content: center;
      }
    }

/* --- privacy.html --- */
.legal-hero {
      padding: 160px 0 60px;
      text-align: center;
      position: relative;
      border-bottom: 1px solid var(--frost-border);
    }
.legal-content {
      padding: var(--space-3xl) 0;
      max-width: 800px;
      margin: 0 auto;
    }
.legal-content h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 24px;
      font-weight: 500;
      color: var(--color-white);
      margin-top: var(--space-2xl);
      margin-bottom: var(--space-md);
    }
.legal-content h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 18px;
      font-weight: 500;
      color: var(--color-near-white);
      margin-top: var(--space-xl);
      margin-bottom: var(--space-sm);
    }
.legal-content p, .legal-content ul, .legal-content li {
      font-size: 15px;
      line-height: 1.7;
      color: var(--color-silver);
      margin-bottom: var(--space-md);
    }
.legal-content ul {
      padding-left: 24px;
      list-style-type: disc;
    }
.legal-content a {
      color: var(--color-blue-10);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

/* --- shared-hosting.html --- */
/* Page specific hero glow */
    .product-hero {
      padding: 180px 0 100px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
.product-hero-glow {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 600px;
      background: radial-gradient(ellipse at center, rgba(17, 255, 153, 0.08) 0%, rgba(17, 255, 153, 0.02) 40%, transparent 70%);
      pointer-events: none;
      filter: blur(80px);
      z-index: 0;
    }

/* --- sla.html --- */
.sla-table {
      width: 100%;
      border-collapse: collapse;
      margin-top: var(--space-lg);
      margin-bottom: var(--space-lg);
      border: 1px solid var(--frost-border);
    }
.sla-table th {
      background: rgba(255, 255, 255, 0.05);
      color: var(--color-white);
      text-align: left;
      padding: 12px 16px;
      font-weight: 500;
      border-bottom: 1px solid var(--frost-border);
    }
.sla-table td {
      padding: 12px 16px;
      border-bottom: 1px solid var(--frost-border);
      color: var(--color-silver);
    }
.sla-table tr:last-child td {
      border-bottom: none;
    }

/* --- vps-hosting.html --- */
.product-hero-glow {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 600px;
      background: radial-gradient(ellipse at center, rgba(255, 128, 31, 0.08) 0%, rgba(255, 128, 31, 0.02) 40%, transparent 70%);
      pointer-events: none;
      filter: blur(80px);
      z-index: 0;
    }

/* --- wordpress-hosting.html --- */
.product-hero-glow {
      position: absolute;
      top: 40%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 600px;
      background: radial-gradient(ellipse at center, rgba(59, 158, 255, 0.08) 0%, rgba(59, 158, 255, 0.02) 40%, transparent 70%);
      pointer-events: none;
      filter: blur(80px);
      z-index: 0;
    }

/* ==========================================
   DOMAIN SEARCH SECTION
   ========================================== */
.domain-section {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 128, 31, 0.025) 50%, transparent 100%);
}

.domain-search-box {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-section);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  background: rgba(255, 255, 255, 0.015);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.domain-search-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 128, 31, 0.4), transparent);
}

.domain-input-row {
  display: flex;
  gap: var(--space-sm);
  align-items: stretch;
}

.domain-input-wrap {
  position: relative;
  flex: 1;
}

.domain-input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  pointer-events: none;
  z-index: 1;
}

.domain-input {
  width: 100%;
  height: 52px;
  padding: 0 44px 0 48px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--frost-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-white);
  font-family: 'JetBrains Mono', monospace;
  font-size: 16px;
  letter-spacing: 0.3px;
  outline: none;
  transition: all var(--transition-base);
}

.domain-input::placeholder {
  color: var(--color-medium-gray);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  letter-spacing: 0;
}

.domain-input:focus {
  border-color: rgba(255, 128, 31, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 3px rgba(255, 128, 31, 0.08);
}

.domain-input-clear {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: var(--color-dark-gray);
  cursor: pointer;
  opacity: 0;
  transition: opacity var(--transition-fast), color var(--transition-fast);
  line-height: 1;
  user-select: none;
}

.domain-input-clear:hover {
  color: var(--color-silver);
}

.domain-search-btn {
  height: 52px;
  padding: 0 var(--space-xl);
  border-radius: var(--radius-pill) !important;
  font-size: 15px !important;
  flex-shrink: 0;
  min-width: 120px;
}

.domain-search-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

.domain-tlds {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  flex-wrap: wrap;
}

.domain-tlds-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--color-dark-gray);
  flex-shrink: 0;
}

.domain-tld-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tld-chip {
  cursor: pointer;
  user-select: none;
}

.tld-chip input {
  display: none;
}

.tld-chip span {
  display: inline-block;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--frost-border);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-dark-gray);
  transition: all var(--transition-fast);
  background: transparent;
}

.tld-chip:hover span {
  border-color: rgba(214, 235, 253, 0.35);
  color: var(--color-silver);
}

.tld-chip input:checked + span {
  background: rgba(255, 128, 31, 0.12);
  border-color: rgba(255, 128, 31, 0.4);
  color: var(--color-orange-11);
}

.domain-results {
  max-width: 820px;
  margin: var(--space-lg) auto 0;
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-large);
  overflow: hidden;
  animation: fadeInUp 0.4s ease both;
}

.domain-loading {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-xl);
  font-size: 14px;
  color: var(--color-silver);
  justify-content: center;
}

.domain-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 128, 31, 0.2);
  border-top-color: var(--color-orange-10);
  border-radius: 50%;
  display: inline-block;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.domain-error {
  padding: var(--space-xl);
  text-align: center;
  font-size: 14px;
  color: var(--color-red-5);
}

.domain-results-header {
  padding: 14px var(--space-xl);
  border-bottom: 1px solid var(--frost-border);
  background: rgba(255, 255, 255, 0.02);
  font-size: 13px;
  color: var(--color-silver);
}

.domain-results-header .domain-query {
  font-family: 'JetBrains Mono', monospace;
  color: var(--color-white);
}

.domain-results-list {
  display: flex;
  flex-direction: column;
}

.domain-result-row {
  display: grid;
  grid-template-columns: 1fr 110px 110px 150px;
  align-items: center;
  gap: var(--space-md);
  padding: 16px var(--space-xl);
  border-bottom: 1px solid var(--frost-border);
  transition: background var(--transition-fast);
}

.domain-result-row:last-child {
  border-bottom: none;
}

.domain-result-row:hover {
  background: rgba(255, 255, 255, 0.02);
}

.domain-result-row.taken .domain-result-name {
  opacity: 0.45;
}

.domain-result-name {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
}

.domain-result-sld { color: var(--color-white); }
.domain-result-tld { color: var(--color-orange-10); }
.domain-result-row.taken .domain-result-tld { color: var(--color-dark-gray); }

.domain-badge { font-size: 11px !important; }

.domain-price {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
}

.domain-price span {
  font-size: 12px;
  color: var(--color-silver);
  font-weight: 400;
}

.domain-add-btn {
  font-size: 13px !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-pill) !important;
  white-space: nowrap;
  text-align: center;
  display: block;
}

/* ==========================================
   FAQ SECTION
   ========================================== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg) var(--space-xl);
  max-width: 1100px;
  margin: 0 auto;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  border: 1px solid var(--frost-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: border-color var(--transition-base);
}

.faq-item:hover {
  border-color: rgba(214, 235, 253, 0.28);
}

.faq-item.open {
  border-color: rgba(255, 128, 31, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: 18px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-near-white);
  transition: background var(--transition-fast);
  user-select: none;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.025);
}

.faq-item.open .faq-question {
  color: var(--color-white);
  background: rgba(255, 128, 31, 0.04);
}

.faq-chevron {
  width: 18px;
  height: 18px;
  color: var(--color-dark-gray);
  transition: transform var(--transition-base), color var(--transition-base);
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-orange-10);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.open .faq-answer {
  max-height: 240px;
}

.faq-answer-inner {
  padding: 14px 20px 18px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-silver);
  border-top: 1px solid var(--frost-border);
}

/* Responsive for new sections */
@media (max-width: 900px) {
  .domain-result-row {
    grid-template-columns: 1fr 90px 80px 120px;
    padding: 14px var(--space-lg);
    gap: var(--space-sm);
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .domain-input-row {
    flex-direction: column;
  }
  .domain-search-btn {
    width: 100%;
    height: 48px;
  }
  .domain-result-row {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 10px 12px;
  }
  .domain-result-status { justify-self: end; }
  .domain-result-price  { display: none; }
  .domain-result-action { grid-column: 1 / -1; }
  .domain-add-btn { width: 100%; }
}

/* ==========================================
   ELEMENTOR WRAPPER OVERRIDES
   Neutralise Elementor's default padding on
   sections so our custom hero CSS takes over
   ========================================== */
.elementor-section.elementor-top-section {
    padding: 0 !important;
}
.elementor-widget-wrap {
    padding: 0 !important;
}
.elementor-widget-html {
    /* Whitespace reset removed - caused text overlap */
}
.elementor-widget-html > .elementor-widget-container {
    /* Standard line-height restored */
}
