/* =========================================================
   RobertHost â€” Premium Design System
   ========================================================= */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('assets/fonts/inter-latin-variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Sora';
  font-style: normal;
  font-weight: 300 800;
  font-display: swap;
  src: url('assets/fonts/sora-latin-variable.woff2') format('woff2');
}

:root {
  /* Brand */
  --orange:        #ff5a00;
  --orange-2:      #f26a27;
  --orange-glow:   rgba(255,90,0,0.35);
  --orange-soft:   rgba(255,90,0,0.08);
  --orange-mid:    rgba(255,90,0,0.14);

  /* Dark palette */
  --ink:           #0d1117;
  --ink-2:         #161b22;
  --ink-3:         #21262d;
  --ink-4:         #30363d;
  --muted:         #7d8590;
  --muted-2:       #b1bac4;
  --muted-3:       #c9d1d9;

  /* Light palette */
  --paper:         #ffffff;
  --surface:       #f6f8fa;
  --surface-2:     #eaeef2;
  --line:          #d0d7de;
  --line-dark:     rgba(255,255,255,0.08);

  /* Accents */
  --green:         #3fb950;
  --green-glow:    rgba(63,185,80,0.2);
  --blue:          #58a6ff;

  /* Typography */
  --font-sans:     'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display:  'Sora', 'Inter', sans-serif;

  /* Sizing */
  --radius:        10px;
  --radius-lg:     16px;
  --radius-xl:     24px;
  --max-w:         1280px;

  /* Shadows */
  --shadow-sm:     0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:     0 4px 24px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.08);
  --shadow-lg:     0 8px 48px rgba(0,0,0,0.2), 0 4px 16px rgba(0,0,0,0.12);
  --shadow-orange: 0 8px 40px rgba(255,90,0,0.32);
  --shadow-glow:   0 0 0 1px rgba(255,90,0,0.3), 0 8px 40px rgba(255,90,0,0.25);
}

/* â”€â”€â”€ Reset â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
p, h1, h2, h3, h4, h5 { margin-top: 0; }

/* â”€â”€â”€ Typography â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.02em; }
h1 { font-size: clamp(44px, 5.5vw, 80px); letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 3.8vw, 54px); margin-bottom: 16px; }
h3 { font-size: clamp(20px, 2vw, 26px); margin-bottom: 10px; font-weight: 600; }
h4 { font-size: 18px; font-weight: 600; }
.lead { font-size: clamp(17px, 2vw, 20px); line-height: 1.65; color: var(--muted); }
.muted { color: var(--muted); }

/* â”€â”€â”€ Layout helpers â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container {
  width: min(var(--max-w), calc(100% - 48px));
  margin-inline: auto;
}
.section { padding: 100px 0; }
.section-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-lg { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 80px; align-items: center; }
.center { text-align: center; }
.center .section-kicker { justify-content: center; }
.section-heading { max-width: 800px; margin-bottom: 56px; }
.section-heading.center { margin-inline: auto; }

/* â”€â”€â”€ Kicker / eyebrow â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
}
.section-kicker::before, .eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,90,0,0.18);
  flex-shrink: 0;
}

/* â”€â”€â”€ Buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 22px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: all 180ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--orange) 0%, #d94800 100%);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #ff6a1a 0%, var(--orange) 100%);
  box-shadow: 0 12px 48px rgba(255,90,0,0.42);
}

.btn-secondary {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { border-color: #b1bac4; box-shadow: var(--shadow-md); }

.btn-ghost-light {
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.14); color: #fff; }

.btn-lg { min-height: 54px; padding: 14px 28px; font-size: 15px; }
.btn-xl { min-height: 60px; padding: 16px 32px; font-size: 16px; }

/* â”€â”€â”€ Header / Nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--surface-2);
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 4px 24px rgba(0,0,0,0.04);
  transition: background 200ms ease;
}
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 72px;
  width: min(var(--max-w), calc(100% - 48px));
  margin-inline: auto;
}
.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-right: 8px;
}
.brand img { width: 200px; height: auto; max-height: 52px; object-fit: contain; object-position: left; }
.brand span { display: none; }
.brand b { color: var(--orange); }

.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #444d56;
  transition: all 160ms ease;
}
.nav-links a:hover { background: var(--surface); color: var(--ink); }

.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.mobile-toggle { display: none; }

/* â”€â”€â”€ Mobile nav drawer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-drawer {
  display: none;
  position: fixed;
  inset: 72px 0 0;
  z-index: 99;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(24px);
  padding: 24px;
  border-top: 1px solid var(--surface-2);
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  border: 1px solid transparent;
  transition: all 160ms ease;
}
.nav-drawer a:hover { background: var(--surface); border-color: var(--line); }
.nav-drawer .btn { margin-top: 8px; }

/* â”€â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: 100vh;
  display: flex;
  align-items: center;
}

/* Animated mesh gradient background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 70%;
  height: 100%;
  background: radial-gradient(ellipse at 60% 30%, rgba(255,90,0,0.25) 0%, rgba(255,90,0,0.08) 40%, transparent 70%);
  animation: pulse-glow 8s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse at 30% 70%, rgba(88,166,255,0.08) 0%, transparent 60%);
  animation: pulse-glow 10s ease-in-out infinite reverse;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.05); }
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: min(var(--max-w), calc(100% - 48px));
  margin-inline: auto;
  padding: 120px 0 100px;
}

.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  background: rgba(255,90,0,0.12);
  border: 1px solid rgba(255,90,0,0.25);
  color: #ff8a50;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,90,0,0.25), 0 0 12px rgba(255,90,0,0.5);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.5} }

.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  font-size: clamp(46px, 5.8vw, 84px);
}
.hero h1 .highlight {
  background: linear-gradient(135deg, #ff8a50, var(--orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero .lead { color: var(--muted-2); margin-bottom: 36px; font-size: 18px; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 500;
}
.hero-trust-item svg { color: var(--green); flex-shrink: 0; }

/* â”€â”€â”€ Dashboard widget (hero right) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-widget {
  position: relative;
}
.widget-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255,90,0,0.2) 0%, transparent 70%);
  pointer-events: none;
  filter: blur(40px);
}

.dashboard {
  background: var(--ink-2);
  border: 1px solid var(--ink-4);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.04);
}
.dash-topbar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.03);
  border-bottom: 1px solid var(--ink-4);
}
.traffic-lights { display: flex; gap: 6px; }
.traffic-lights span {
  width: 12px; height: 12px;
  border-radius: 50%;
}
.tl-red   { background: #ff5f56; }
.tl-yel   { background: #febc2e; }
.tl-grn   { background: #28c840; }
.dash-title {
  flex: 1;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}
.dash-status-dot {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
}
.dash-status-dot::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-glow);
  animation: blink 2s ease-in-out infinite;
}

.dash-body { padding: 16px; display: grid; gap: 12px; }

.dash-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.dash-metric {
  padding: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ink-4);
  border-radius: var(--radius);
}
.dash-metric-label { font-size: 10px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.dash-metric-value { font-size: 22px; font-weight: 800; color: #fff; margin-top: 6px; font-family: var(--font-display); }
.dash-metric-value.orange { color: var(--orange); }
.dash-metric-value.green  { color: var(--green); }

/* Sparkline */
.dash-chart {
  height: 80px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--ink-4);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}
.dash-chart-line {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 80' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23ff5a00' stop-opacity='0.3'/%3E%3Cstop offset='1' stop-color='%23ff5a00' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 70 C30 60 60 55 90 45 C120 35 150 30 180 25 C210 20 240 22 270 18 C300 14 330 10 360 8 C380 6 400 5 400 5 L400 80 L0 80Z' fill='url(%23g)'/%3E%3Cpath d='M0 70 C30 60 60 55 90 45 C120 35 150 30 180 25 C210 20 240 22 270 18 C300 14 330 10 360 8 C380 6 400 5 400 5' fill='none' stroke='%23ff5a00' stroke-width='2'/%3E%3C/svg%3E") no-repeat center/cover;
}
.dash-chart-label {
  position: absolute;
  bottom: 8px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dash-chart-val {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
}

.dash-sites { display: grid; gap: 8px; }
.dash-site-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ink-4);
  border-radius: var(--radius);
  font-size: 13px;
}
.dash-site-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted-3);
  font-weight: 500;
}
.dash-site-status {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
}
.status-live { color: var(--green); background: var(--green-glow); }
.status-staging { color: #58a6ff; background: rgba(88,166,255,0.15); }
.status-backup  { color: #e3b341; background: rgba(227,179,65,0.15); }

/* â”€â”€â”€ Stats bar â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-bar {
  background: var(--ink-2);
  border-top: 1px solid var(--ink-4);
  border-bottom: 1px solid var(--ink-4);
  padding: 0;
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max-w), calc(100% - 48px));
  margin-inline: auto;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 28px 20px;
  border-right: 1px solid var(--ink-4);
  text-align: center;
  transition: background 200ms ease;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-value .unit { font-size: 18px; font-weight: 600; color: var(--orange); }
.stat-label { font-size: 12px; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }

/* â”€â”€â”€ Section backgrounds â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.bg-dark {
  background: var(--ink);
  color: #fff;
}
.bg-dark h2, .bg-dark h3 { color: #fff; }
.bg-dark .lead, .bg-dark .muted { color: var(--muted-2); }
.bg-dark .section-kicker { color: #ff8a50; }
.bg-dark .section-kicker::before { box-shadow: 0 0 0 4px rgba(255,90,0,0.2); }

.bg-surface { background: var(--surface); }
.bg-surface-2 { background: var(--ink-2); }

.section-divider { height: 1px; background: var(--line); }

/* â”€â”€â”€ Feature cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 240ms ease;
}
.card:hover {
  border-color: #b1bac4;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.card-icon {
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: var(--orange-soft);
  margin-bottom: 18px;
  font-size: 20px;
}
.card-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-dark .card-icon svg,
.bg-dark .card-icon svg {
  stroke: #ff8a50;
}
.card-dark {
  background: var(--ink-2);
  border-color: var(--ink-4);
}
.card-dark:hover { border-color: rgba(255,90,0,0.3); }
.card-dark h3, .card-dark h4 { color: #fff; }
.card-dark p { color: var(--muted-2); }

.card-highlight {
  border-color: rgba(255,90,0,0.35);
  box-shadow: 0 0 0 1px rgba(255,90,0,0.15), var(--shadow-md);
}

/* â”€â”€â”€ Feature list â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--muted-3);
}
.feature-list li::before {
  content: "\2713";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-glow);
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-list.light li { color: var(--ink); }
.feature-list.light li::before { background: rgba(63,185,80,0.12); }

/* â”€â”€â”€ Tech stack section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.tech-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ink-4);
  border-radius: var(--radius);
  transition: all 200ms ease;
}
.tech-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,90,0,0.25);
}
.tech-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,90,0,0.12);
  border: 1px solid rgba(255,90,0,0.2);
  border-radius: var(--radius);
  font-size: 18px;
}
.tech-name { font-size: 14px; font-weight: 700; color: #fff; }
.tech-desc { font-size: 13px; color: var(--muted); margin-top: 3px; }

/* â”€â”€â”€ Comparison table â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.comparison-table th {
  padding: 20px 24px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.comparison-table th:first-child {
  background: var(--surface);
  color: var(--muted);
  border-bottom: 2px solid var(--line);
  width: 32%;
}
.comparison-table th.col-roberthost {
  background: var(--orange);
  color: #fff;
  border-bottom: 2px solid rgba(255,255,255,0.2);
  text-align: center;
}
.comparison-table th.col-shared {
  background: var(--surface);
  color: var(--muted);
  border-bottom: 2px solid var(--line);
  text-align: center;
}
.comparison-table th.col-diy {
  background: var(--surface);
  color: var(--muted);
  border-bottom: 2px solid var(--line);
  text-align: center;
}

.comparison-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.comparison-table td:first-child {
  font-weight: 600;
  color: var(--ink);
  background: var(--surface);
}
.comparison-table td:not(:first-child) {
  text-align: center;
}
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background-color: rgba(255,90,0,0.03); }
.comparison-table tr:hover td:first-child { background-color: var(--surface-2); }
.comparison-table tr:hover td.col-rh { background-color: rgba(255,90,0,0.06); }

.col-rh {
  background: rgba(255,90,0,0.04) !important;
}

.check-yes { color: var(--green); font-size: 18px; font-weight: 900; }
.check-partial { color: #e3b341; font-size: 14px; font-weight: 700; }
.check-no { color: #f85149; font-size: 18px; font-weight: 900; }

/* â”€â”€â”€ Pricing â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all 240ms ease;
  position: relative;
}
.price-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: #b1bac4; }
.price-card.featured {
  background: var(--ink);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange), 0 0 0 1px var(--orange);
  color: #fff;
}
.price-card.featured h3 { color: #fff; }
.price-card.featured .muted { color: var(--muted-2); }
.price-card.featured li { color: var(--muted-2); }
.price-card.featured:hover { transform: translateY(-4px); box-shadow: 0 16px 64px rgba(255,90,0,0.35), 0 0 0 1px var(--orange); }

.plan-badge {
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}
.badge-starter  { background: var(--surface); color: var(--muted); }
.badge-popular  { background: var(--orange); color: #fff; }
.badge-commerce { background: var(--surface); color: var(--muted); }
.badge-agency   { background: var(--surface); color: var(--muted); }
.plan-name { font-size: 22px; font-weight: 800; margin-bottom: 6px; font-family: var(--font-display); }
.plan-desc { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.plan-price {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  color: var(--ink);
}
.price-card.featured .plan-price { color: #fff; }
.plan-price sup { font-size: 22px; vertical-align: super; margin-right: 2px; }
.plan-price small { font-size: 15px; font-weight: 500; color: var(--muted); }
.plan-billing { font-size: 12px; color: var(--muted); margin-bottom: 24px; }
.plan-divider { height: 1px; background: var(--line); margin: 20px 0; }
.price-card.featured .plan-divider { background: rgba(255,255,255,0.12); }
.plan-features {
  flex: 1;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 14px;
  color: var(--ink);
}
.price-card.featured .plan-features li { color: var(--muted-2); }
.plan-features li::before {
  content: "\2713";
  display: flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: rgba(63,185,80,0.15);
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card.featured .plan-features li::before { background: rgba(63,185,80,0.2); }
.price-card .btn { margin-top: auto; width: 100%; justify-content: center; }

/* â”€â”€â”€ Testimonials â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 240ms ease;
}
.testimonial-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #f0a731; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-quote { font-size: 15px; line-height: 1.7; color: var(--ink); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 800;
  color: var(--orange);
  flex-shrink: 0;
  border: 2px solid rgba(255,90,0,0.2);
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testimonial-role { font-size: 12px; color: var(--muted); }

/* â”€â”€â”€ Migration steps â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.migration-steps { display: grid; gap: 16px; }
.migration-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--ink-4);
  border-radius: var(--radius);
  transition: all 200ms ease;
}
.migration-step:hover { border-color: rgba(255,90,0,0.3); background: rgba(255,255,255,0.06); }
.migration-num {
  width: 36px; height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,90,0,0.15);
  border: 1px solid rgba(255,90,0,0.3);
  color: var(--orange);
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font-display);
}
.migration-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.migration-desc { font-size: 13px; color: var(--muted-2); }

/* â”€â”€â”€ Who we serve (proof matrix) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.proof-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: all 240ms ease;
}
.proof-card:hover { border-color: rgba(255,90,0,0.3); box-shadow: var(--shadow-md); background: var(--paper); }
.proof-icon { font-size: 28px; margin-bottom: 14px; }
.proof-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.proof-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* â”€â”€â”€ Affiliate CTA strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.affiliate-strip {
  background: var(--ink);
  border-top: 1px solid var(--ink-4);
  padding: 0;
}
.affiliate-strip-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  width: min(var(--max-w), calc(100% - 48px));
  margin-inline: auto;
}
.affiliate-commission {
  font-family: var(--font-display);
  font-size: clamp(56px, 8vw, 110px);
  font-weight: 900;
  color: var(--orange);
  line-height: 0.9;
  letter-spacing: -0.02em;
}

/* â”€â”€â”€ CTA section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-section {
  background: var(--ink);
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255,90,0,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 18px; }
.cta-section .lead { color: var(--muted-2); margin-bottom: 36px; max-width: 560px; margin-inline: auto; margin-bottom: 36px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* â”€â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  background: var(--ink);
  border-top: 1px solid var(--ink-4);
  color: var(--muted-2);
}
.footer-main {
  width: min(var(--max-w), calc(100% - 48px));
  margin-inline: auto;
  padding: 64px 0 40px;
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
}
.footer-brand { display: flex; flex-direction: column; }
.footer-logo-wrap {
  display: inline-block;
  padding: 8px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  margin-bottom: 16px;
  width: fit-content;
}
.footer-logo-wrap img { width: 160px; max-height: 44px; }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.6; max-width: 220px; }
.footer-col h5 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-3);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  padding: 5px 0;
  transition: color 160ms ease;
}
.footer-col a:hover { color: var(--muted-3); }
.footer-bottom {
  width: min(var(--max-w), calc(100% - 48px));
  margin-inline: auto;
  padding: 20px 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--ink-4);
  font-size: 13px;
  color: var(--muted);
}

/* â”€â”€â”€ Page hero (inner pages) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  background: linear-gradient(180deg, var(--surface) 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--line);
}
.page-hero-inner {
  width: min(var(--max-w), calc(100% - 48px));
  margin-inline: auto;
  padding: 72px 0 60px;
}
.page-hero h1 { font-size: clamp(38px, 4.5vw, 60px); }

/* â”€â”€â”€ Scroll reveal animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 100ms; }
.reveal-delay-2 { transition-delay: 200ms; }
.reveal-delay-3 { transition-delay: 300ms; }
.reveal-delay-4 { transition-delay: 400ms; }

/* â”€â”€â”€ Badge pill â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.badge {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
}
.badge-orange { background: rgba(255,90,0,0.1); color: var(--orange); border: 1px solid rgba(255,90,0,0.2); }
.badge-green  { background: rgba(63,185,80,0.12); color: var(--green); border: 1px solid rgba(63,185,80,0.2); }

/* â”€â”€â”€ Contact / form â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form { display: grid; gap: 14px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.form-input {
  width: 100%;
  min-height: 46px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 14px;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 160ms ease, box-shadow 160ms ease;
  outline: none;
}
.form-input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,90,0,0.1); }
.form-textarea { min-height: 120px; resize: vertical; }

/* â”€â”€â”€ FAQ â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.faq { display: grid; gap: 10px; }
.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
}
.faq summary {
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}
.faq summary::after { content: '+'; font-size: 20px; font-weight: 400; color: var(--muted); transition: transform 200ms ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin: 0; padding: 0 20px 18px; font-size: 14px; color: var(--muted); line-height: 1.65; }

/* â”€â”€â”€ Mini nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.mini-nav { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.mini-nav a {
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  transition: all 160ms ease;
}
.mini-nav a:hover { background: var(--surface); border-color: #b1bac4; }

/* â”€â”€â”€ Assurance panel â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.assurance-panel {
  background: rgba(255,90,0,0.06);
  border: 1px solid rgba(255,90,0,0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
}

/* â”€â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 80px 0 64px; }
  .hero-content { max-width: 100%; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--ink-4); }
  .affiliate-strip-inner { grid-template-columns: 1fr; gap: 24px; }
  .footer-main { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: inline-flex; }
  .nav-actions .btn-secondary:not(.mobile-toggle) { display: none; }
  .split, .split-lg { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .proof-grid { grid-template-columns: 1fr; }
}

/* â”€â”€â”€ Hero model image â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero-model-wrap {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero-model-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-model-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
  object-position: top;
  max-height: 600px;
  display: block;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255,255,255,0.06);
}

/* Floating trust cards */
.hero-float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18), 0 2px 8px rgba(0,0,0,0.1);
  animation: float-card 6s ease-in-out infinite;
  min-width: 180px;
}
.hero-float-card--top {
  top: 24px;
  right: -20px;
  animation-delay: 0s;
}
.hero-float-card--bottom {
  bottom: 48px;
  left: -24px;
  animation-delay: 3s;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hfc-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--orange-soft);
  border-radius: 10px;
}
.hfc-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.hfc-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-display);
  margin-top: 1px;
}

/* â”€â”€â”€ Homepage currency buttons â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
/* â”€â”€â”€ 3-column pricing grid â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) { .pricing-grid-3 { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; } }

/* â”€â”€â”€ Responsive 640px â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 640px) {
  .container, .hero-inner, .stats-bar-inner, .affiliate-strip-inner { width: calc(100% - 32px); }
  .section { padding: 64px 0; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 20px 16px; }
  .stat-value { font-size: 26px; }
  .pricing-grid, .pricing-grid-3 { grid-template-columns: 1fr; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero-trust { gap: 12px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-actions { flex-direction: column; align-items: center; }
  .btn-xl { min-height: 52px; padding: 14px 24px; font-size: 15px; }
  .trust-spotlight-inner { grid-template-columns: 1fr; }
  .trust-model-col { max-width: 260px; margin-inline: auto; }
  .deal-hero-inner { flex-direction: column; gap: 28px; }
  .deal-hero-off { font-size: 100px; }
  .deal-hero-prices { flex-direction: column; gap: 10px; }
}

/* â”€â”€â”€ Deal hero banner (pricing page) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.deal-hero {
  background: linear-gradient(135deg, #0f0a06 0%, #1a0c00 40%, #0f0a06 100%);
  border-bottom: 1px solid rgba(255,90,0,0.2);
  overflow: hidden;
  position: relative;
}
.deal-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 15% 50%, rgba(255,90,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.deal-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 56px 32px;
  display: flex;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 1;
}
.deal-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,90,0,0.12);
  border: 1px solid rgba(255,90,0,0.3);
  font-size: 13px;
  font-weight: 800;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.deal-blink {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,90,0,0.25);
  animation: blink 1.5s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 3px rgba(255,90,0,0.25); }
  50% { opacity: 0.6; box-shadow: 0 0 0 6px rgba(255,90,0,0.1); }
}
.deal-hero-off {
  font-family: var(--font-display);
  font-size: 160px;
  font-weight: 900;
  line-height: 0.85;
  color: var(--orange);
  text-shadow: 0 0 80px rgba(255,90,0,0.5);
  letter-spacing: -0.04em;
  flex-shrink: 0;
  text-align: center;
}
.deal-hero-off span { font-size: 0.5em; vertical-align: super; }
.deal-hero-off-label {
  display: block;
  font-size: 0.35em;
  font-weight: 900;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.12em;
  margin-top: 8px;
}
.deal-hero-copy { flex: 1; }
.deal-hero-title {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 10px;
}
.deal-hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  line-height: 1.6;
}
.deal-hero-prices {
  display: flex;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.deal-price-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px 18px;
  min-width: 140px;
  transition: border-color 200ms ease;
}
.deal-price-chip:hover { border-color: rgba(255,90,0,0.3); }
.deal-chip-featured {
  background: rgba(255,90,0,0.1);
  border-color: rgba(255,90,0,0.3);
}
.deal-chip-plan {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--orange);
  margin-bottom: 6px;
}
.deal-chip-was {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  text-decoration: line-through;
  margin-bottom: 3px;
}
.deal-chip-now {
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  font-family: var(--font-display);
}

/* â”€â”€â”€ Trust spotlight (model + big quote) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-spotlight {
  background: var(--paper);
  position: relative;
  overflow: hidden;
}
.trust-spotlight::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 50% 80% at 90% 50%, rgba(255,90,0,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.trust-spotlight-inner {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.trust-model-col { position: relative; }
.trust-model-photo {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top center;
  border-radius: 20px;
  display: block;
  box-shadow: var(--shadow-lg);
}
.trust-quote-col { padding: 16px 0; }
.trust-stars {
  font-size: 22px;
  color: #f59e0b;
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.trust-blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 600;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 28px;
  border: none;
  padding: 0;
}
.trust-author { margin-bottom: 32px; }
.trust-author-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}
.trust-author-role {
  font-size: 14px;
  color: var(--muted);
  margin-top: 2px;
}
.trust-metrics {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 24px 28px;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--line);
}
.trust-metric { text-align: center; flex: 1; }
.trust-metric-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--orange);
}
.trust-metric-label {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}
.trust-metric-divider {
  width: 1px;
  height: 48px;
  background: var(--line);
  margin: 0 8px;
}
@media (max-width: 900px) {
  .trust-spotlight-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-model-photo { height: 320px; }
}

/* â”€â”€â”€ Prominent discount row on pricing cards â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.promo-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}
.promo-was {
  font-size: 18px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: line-through;
  text-decoration-color: rgba(255,90,0,0.6);
  text-decoration-thickness: 2px;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 2px 12px rgba(255,90,0,0.4);
  animation: pulse-badge 2.5s ease-in-out infinite;
}
@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 2px 12px rgba(255,90,0,0.4); }
  50% { box-shadow: 0 4px 24px rgba(255,90,0,0.7); transform: scale(1.04); }
}

/* â”€â”€â”€ Lifestyle section (GoDaddy-style) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.lifestyle-section {
  background: linear-gradient(135deg, #0e0b08 0%, #1c1008 50%, #0e0b08 100%);
  overflow: hidden;
  position: relative;
}
.lifestyle-section::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 50%;
  background: radial-gradient(ellipse 80% 100% at 80% 50%, rgba(255,90,0,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.lifestyle-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
}
.lifestyle-photo-col {
  position: relative;
  overflow: hidden;
}
.lifestyle-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 500px;
}
.lifestyle-copy-col {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.lifestyle-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 32px;
}
.lifestyle-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lifestyle-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.lc-icon {
  font-size: 22px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,90,0,0.12);
  border: 1px solid rgba(255,90,0,0.2);
  border-radius: 12px;
  margin-top: 2px;
}
.lifestyle-checklist li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.lifestyle-checklist li strong {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.lifestyle-checklist li span {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.lifestyle-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .lifestyle-inner { grid-template-columns: 1fr; }
  .lifestyle-photo { min-height: 320px; height: 320px; }
  .lifestyle-copy-col { padding: 48px 32px; }
}
@media (max-width: 640px) {
  .lifestyle-copy-col { padding: 40px 20px; }
  .lifestyle-actions { flex-direction: column; }
}


/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MODEL HERO SECTION
   Dark content left | Full-bleed photo right
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.hero-model-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  background: #0b0805;
  position: relative;
  overflow: hidden;
}
.hm-left {
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0b0805 0%, #130e06 100%);
  position: relative;
  z-index: 2;
}
.hm-left-inner {
  padding: 0 56px 0 48px;
  max-width: 680px;
}
.hm-right {
  position: relative;
  overflow: hidden;
}
.hm-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  min-height: 600px;
  filter: brightness(0.9);
}
.hm-fade {
  position: absolute;
  top: 0; left: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(to right, #0b0805 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.hm-metrics {
  display: flex;
  align-items: center;
  margin-top: 40px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
}
.hm-metric {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.hm-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: #fff;
}
.hm-lbl {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hm-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  margin: 0 4px;
}
.hm-float-card {
  position: absolute;
  bottom: 80px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(15,12,8,0.88);
  border: 1px solid rgba(255,90,0,0.25);
  border-radius: 16px;
  padding: 14px 18px;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  z-index: 10;
  animation: float-card 4s ease-in-out infinite;
}
@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hm-float-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  background: rgba(255,90,0,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hm-float-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}
.hm-float-lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}
.hm-live-badge {
  position: absolute;
  top: 48px;
  right: 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(15,12,8,0.8);
  border: 1px solid rgba(34,197,94,0.3);
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  backdrop-filter: blur(12px);
  z-index: 10;
}
.hm-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.25);
  animation: blink 1.5s ease-in-out infinite;
}
@media (max-width: 900px) {
  .hero-model-section { grid-template-columns: 1fr; min-height: auto; }
  .hm-right { order: -1; max-height: 380px; }
  .hm-photo { min-height: 380px; object-position: center 20%; }
  .hm-fade { display: none; }
  .hm-left { padding: 60px 0 48px; }
  .hm-left-inner { padding: 0 24px; max-width: 100%; }
}
@media (max-width: 640px) {
  .hm-right { max-height: 280px; }
  .hm-photo { min-height: 280px; }
  .hm-metrics { padding: 16px 12px; }
  .hm-val { font-size: 18px; }
  .hm-float-card { bottom: 16px; right: 12px; padding: 10px 14px; }
  .hm-live-badge { top: 16px; right: 12px; }
}

/* =================================================================
   BRAND STRIP â€” Signature model, cinematic editorial style
   Photo left (40%) | Dark copy right (60%)
   ================================================================= */
.brand-strip {
  display: grid;
  grid-template-columns: 40% 60%;
  min-height: 580px;
  background: #070503;
  overflow: hidden;
  position: relative;
}

.brand-strip-photo-col {
  position: relative;
  overflow: hidden;
}
.brand-strip-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.85) contrast(1.05);
  min-height: 440px;
}
.brand-strip-photo-fade {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 140px;
  background: linear-gradient(to right, transparent 0%, #070503 100%);
  pointer-events: none;
}

.brand-strip-copy-col {
  display: flex;
  align-items: center;
  padding: 80px 80px 80px 48px;
  background: #070503;
  position: relative;
}
.brand-strip-copy-col::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 60%;
  background: radial-gradient(ellipse 80% 100% at 80% 50%, rgba(255,90,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.brand-strip-copy-inner {
  position: relative;
  z-index: 1;
  max-width: 540px;
}

.brand-strip-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  margin-bottom: 24px;
}
.brand-strip-line {
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.brand-strip-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.brand-strip-lead {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 28px;
}

.brand-strip-list {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.brand-strip-list li {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.bs-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,90,0,0.15);
  border: 1px solid rgba(255,90,0,0.3);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

.brand-strip-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .brand-strip-copy-col { padding: 60px 40px 60px 32px; }
}
@media (max-width: 900px) {
  .brand-strip { grid-template-columns: 1fr; }
  .brand-strip-photo-col { max-height: 360px; }
  .brand-strip-photo { min-height: 360px; object-position: center 20%; }
  .brand-strip-photo-fade { display: none; }
  .brand-strip-copy-col { padding: 48px 24px; }
  .brand-strip-copy-inner { max-width: 100%; }
}
@media (max-width: 640px) {
  .brand-strip-actions { flex-direction: column; }
  .brand-strip-photo-col { max-height: 280px; }
  .brand-strip-photo { min-height: 280px; }
}

/* â”€â”€â”€ Logo sizing â€” vigilant / prominent â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.brand-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  /* Remove background from logo image */
  mix-blend-mode: normal;
}

/* Override old brand link styles to remove the text */
.brand span { display: none; }

/* Make header brand link larger */
.brand {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

/* Footer uses dark logo too (footer is dark background) */
.footer-logo-wrap img,
.footer-brand img {
  height: 36px;
  width: auto;
  object-fit: contain;
  display: block;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LOGO OVERHAUL â€” vigilant, clean, prominent
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Remove ALL old logo box / background */
.brand,
.brand img,
.brand-logo-img {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

/* Header logo â€” light version, prominent */
.site-header .brand img,
.site-header .brand .brand-logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 220px;
}

/* Footer logo â€” dark version, prominent */
.footer .brand img,
.footer-logo-wrap img,
.footer-brand img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  max-width: 200px;
}

/* Hide the old text span (logo image has the wordmark) */
.brand > span { display: none !important; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LOGO â€” final clean version
   Light logo in header (matches white nav background)
   Dark logo in footer (matches dark footer background)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Header nav logo */
.site-header .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0;
  background: none;
}
.site-header .brand img {
  height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
  /* Crop the light grey padding from the logo PNG */
  object-position: center;
}

/* Hide old text fallback */
.site-header .brand > span { display: none !important; }

/* Footer logo */
.footer .footer-brand img,
.footer .footer-logo-wrap img,
.footer .brand img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  background: none;
  border: none;
  box-shadow: none;
  border-radius: 0;
}
.footer .footer-brand > span,
.footer .brand > span { display: none !important; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   LOGO â€” FINAL VIGILANT SIZING
   White bg in header, full-size, prominent
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* Nuke all previous logo overrides */
.site-header .brand { all: unset; display: flex; align-items: center; cursor: pointer; text-decoration: none; }

.site-header .brand img {
  height: 52px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
  background: #ffffff !important;
  border-radius: 8px !important;
  padding: 4px 10px !important;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08) !important;
}

.site-header .brand > span { display: none !important; }

/* Footer logo */
.footer .brand img,
.footer-logo-wrap img,
.footer-brand img {
  height: 48px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
  background: none !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.footer .brand > span,
.footer-brand > span { display: none !important; }

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   INNER PAGE CLASSES (page-hero, section-inner, split, panel)
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.page-hero {
  background: linear-gradient(135deg, #0d1117 0%, #161b22 100%);
  padding: 120px 0 80px;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--line-dark);
}
.page-hero .eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  color: #fff;
  max-width: 760px;
  line-height: 1.1;
  margin: 0 0 20px;
}
.page-hero .lead {
  color: var(--muted-2);
  font-size: 18px;
  max-width: 600px;
  line-height: 1.7;
  margin: 0;
}

.section-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .section-inner { padding: 0 20px; }
  .page-hero { padding: 80px 0 60px; }
}

.section-soft {
  background: var(--surface);
}

/* Split two-col layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 40px; }
}

/* Panel card */
.panel {
  background: var(--ink-2);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.assurance-panel { background: var(--surface); border-color: var(--line); }
.assurance-panel li { color: var(--ink); }

/* Contact form */
.form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.form input,
.form select,
.form textarea {
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: var(--font-sans);
  background: var(--surface);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255,90,0,0.1);
}
.form.was-validated input:invalid,
.form.was-validated select:invalid,
.form.was-validated textarea:invalid {
  border-color: #d94820;
  box-shadow: 0 0 0 3px rgba(217, 72, 32, 0.12);
}
.form textarea { resize: vertical; min-height: 120px; }
.form-status {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.form-status:not(:empty) {
  padding: 12px 14px;
  border: 1px solid #f0c3b3;
  border-radius: var(--radius);
  background: #fff4ef;
  color: #8d3211;
  font-weight: 700;
}

.form-status.is-success:not(:empty) {
  border-color: #b8dfc2;
  background: #effaf2;
  color: #176a32;
}

.form-status.is-error:not(:empty) {
  border-color: #efb7a5;
  background: #fff1ec;
  color: #8d3211;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

#contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MISSING FOOTER STRUCTURE CLASSES
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.footer-main {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 64px 0 48px;
}
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; padding: 40px 0 32px; }
}

.footer-brand { display: flex; flex-direction: column; gap: 16px; }
.footer-logo-wrap { display: block; }
.footer-logo-wrap img {
  height: 48px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
  background: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
}
.footer-tagline { color: var(--muted); font-size: 14px; line-height: 1.6; max-width: 260px; margin: 0; }

.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 6px;
}
.footer-col a {
  color: var(--muted-2);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }

/* bg-surface */
.bg-surface { background: var(--surface) !important; }
.bg-surface h2, .bg-surface p, .bg-surface li { color: var(--ink) !important; }
.bg-surface .section-kicker { color: var(--orange) !important; }
.bg-surface .muted { color: var(--muted) !important; }

/* card-link */
.card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
  transition: opacity 0.2s;
}
.card-link:hover { opacity: 0.75; }

/* Final brand treatment: dark premium header with a vigilant, readable logo */
.site-header {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 90, 0, 0.16), transparent 26%),
    rgba(12, 17, 23, 0.96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 18px 48px rgba(12, 17, 23, 0.26) !important;
}

.site-header .nav {
  min-height: 88px !important;
}

.site-header .brand {
  min-width: 276px !important;
}

.site-header .brand img {
  height: 58px !important;
  width: auto !important;
  max-width: 276px !important;
  object-fit: contain !important;
  background: transparent !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.site-header .nav-links a {
  color: rgba(244, 247, 250, 0.82) !important;
}

.site-header .nav-links a:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.site-header .btn-secondary {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
  box-shadow: none !important;
}

.site-header .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
}

.footer .brand img,
.footer-logo-wrap img,
.footer-brand img {
  height: 58px !important;
  width: auto !important;
  max-width: 276px !important;
  object-fit: contain !important;
  background: transparent !important;
  padding: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

@media (max-width: 720px) {
  .site-header .nav {
    min-height: 76px !important;
  }

  .site-header .brand {
    min-width: auto !important;
  }

  .site-header .brand img {
    height: 44px !important;
    max-width: 188px !important;
  }
}

/* Final soft-header correction: transparent logo on a light premium bar */
.site-header {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 248, 245, 0.94)) !important;
  border-bottom: 1px solid rgba(215, 221, 228, 0.82) !important;
  box-shadow: 0 14px 36px rgba(21, 26, 31, 0.07) !important;
}

.site-header .nav {
  min-height: 84px !important;
}

.site-header .brand {
  min-width: 246px !important;
}

.site-header .brand img,
.site-header .brand .brand-logo-img {
  height: 54px !important;
  width: auto !important;
  max-width: 246px !important;
  object-fit: contain !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
}

.site-header .nav-links a {
  color: #38434d !important;
}

.site-header .nav-links a:hover {
  color: var(--orange) !important;
  background: rgba(255, 90, 0, 0.08) !important;
}

.site-header .btn-secondary {
  color: var(--ink) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  border-color: rgba(199, 207, 216, 0.9) !important;
  box-shadow: 0 8px 22px rgba(21, 26, 31, 0.06) !important;
}

.site-header .btn-secondary:hover {
  background: #fff !important;
  border-color: #b7c1cb !important;
}

@media (max-width: 720px) {
  .site-header .nav {
    min-height: 72px !important;
  }

  .site-header .brand {
    min-width: auto !important;
  }

  .site-header .brand img,
  .site-header .brand .brand-logo-img {
    height: 42px !important;
    max-width: 176px !important;
  }
}

/* Logo clarity pass: no baked-in or wrapper backgrounds in header/footer */
.site-header,
.site-header.scrolled {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 248, 245, 0.95)) !important;
  border-bottom: 1px solid rgba(214, 220, 227, 0.78) !important;
  box-shadow: 0 16px 38px rgba(21, 26, 31, 0.07) !important;
}

.site-header .brand,
.site-header .brand:hover,
.footer-logo-wrap,
.footer-brand .footer-logo-wrap {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
  padding: 0 !important;
}

.site-header .brand img,
.site-header .brand .brand-logo-img {
  display: block !important;
  height: 54px !important;
  max-width: 246px !important;
  width: auto !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  object-fit: contain !important;
  padding: 0 !important;
}

.footer-logo-wrap img,
.footer-brand img,
.footer .brand img {
  display: block !important;
  height: 58px !important;
  max-width: 276px !important;
  width: auto !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  object-fit: contain !important;
  padding: 0 !important;
}

@media (max-width: 720px) {
  .site-header .brand img,
  .site-header .brand .brand-logo-img {
    height: 42px !important;
    max-width: 176px !important;
  }

  .footer-logo-wrap img,
  .footer-brand img,
  .footer .brand img {
    height: 50px !important;
    max-width: 232px !important;
  }
}

/* Final readability pass: protect dark surfaces from earlier light-section overrides */
.price-card.featured,
.card-dark,
.bg-dark,
.cta-section,
.footer,
[style*="background:var(--ink"],
[style*="background: var(--ink"],
[style*="background:var(--ink-2"],
[style*="background: var(--ink-2"] {
  color: #f8fafc !important;
}

.price-card.featured h1,
.price-card.featured h2,
.price-card.featured h3,
.price-card.featured h4,
.price-card.featured h5,
.price-card.featured .plan-name,
.price-card.featured .plan-price,
.card-dark h1,
.card-dark h2,
.card-dark h3,
.card-dark h4,
.card-dark h5,
.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.bg-dark h5,
.cta-section h1,
.cta-section h2,
.cta-section h3,
.footer h1,
.footer h2,
.footer h3,
.footer h4,
.footer h5,
[style*="background:var(--ink"] h1,
[style*="background:var(--ink"] h2,
[style*="background:var(--ink"] h3,
[style*="background:var(--ink"] h4,
[style*="background:var(--ink"] h5,
[style*="background: var(--ink"] h1,
[style*="background: var(--ink"] h2,
[style*="background: var(--ink"] h3,
[style*="background: var(--ink"] h4,
[style*="background: var(--ink"] h5 {
  color: #ffffff !important;
}

.price-card.featured p,
.price-card.featured li,
.price-card.featured .muted,
.price-card.featured .lead,
.price-card.featured .plan-desc,
.price-card.featured .plan-billing,
.price-card.featured .plan-annual-note,
.price-card.featured .plan-price small,
.price-card.featured .plan-features li,
.card-dark p,
.card-dark li,
.card-dark .muted,
.card-dark .lead,
.bg-dark p,
.bg-dark li,
.bg-dark .muted,
.bg-dark .lead,
.cta-section p,
.cta-section li,
.cta-section .muted,
.cta-section .lead,
[style*="background:var(--ink"] p,
[style*="background:var(--ink"] li,
[style*="background:var(--ink"] .muted,
[style*="background:var(--ink"] .lead,
[style*="background: var(--ink"] p,
[style*="background: var(--ink"] li,
[style*="background: var(--ink"] .muted,
[style*="background: var(--ink"] .lead {
  color: #d7dee8 !important;
}

.footer p,
.footer span,
.footer .footer-tagline,
.footer-bottom {
  color: #b8c2ce !important;
}

.footer a,
.footer-col a {
  color: #d7dee8 !important;
}

.footer a:hover,
.footer-col a:hover {
  color: #ffffff !important;
}

.price-card.featured .plan-divider,
.card-dark .plan-divider,
.bg-dark .plan-divider,
[style*="background:var(--ink"] .plan-divider,
[style*="background: var(--ink"] .plan-divider {
  background: rgba(255, 255, 255, 0.16) !important;
}

.price-card.featured .plan-features li::before,
.card-dark .feature-list li::before,
.bg-dark .feature-list li::before,
[style*="background:var(--ink"] .feature-list li::before,
[style*="background: var(--ink"] .feature-list li::before {
  background: rgba(63, 185, 80, 0.22) !important;
  color: #5ee070 !important;
}

/* Editorial maturity pass: reduce template gloss and make RobertHost feel established */
:root {
  --orange: #f15a24;
  --orange-2: #e6541f;
  --orange-soft: rgba(241, 90, 36, 0.08);
  --ink: #11161c;
  --ink-2: #171d24;
  --ink-3: #242b34;
  --muted: #697481;
  --muted-2: #c4cbd3;
  --paper: #ffffff;
  --surface: #f6f7f8;
  --surface-2: #eceff2;
  --line: #d8dee4;
  --radius: 8px;
  --radius-lg: 10px;
  --radius-xl: 14px;
  --shadow-sm: 0 1px 2px rgba(17, 22, 28, 0.06), 0 8px 22px rgba(17, 22, 28, 0.05);
  --shadow-md: 0 12px 30px rgba(17, 22, 28, 0.08);
  --shadow-lg: 0 18px 48px rgba(17, 22, 28, 0.16);
  --shadow-orange: 0 10px 24px rgba(241, 90, 36, 0.22);
}

body {
  background: #fbfaf8 !important;
  color: #11161c !important;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.01em !important;
}

.site-header,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(216, 222, 228, 0.9) !important;
  box-shadow: 0 10px 28px rgba(17, 22, 28, 0.06) !important;
}

.btn {
  border-radius: 8px !important;
  box-shadow: none !important;
}

.btn-primary {
  background: #f15a24 !important;
  color: #fff !important;
  border-color: #f15a24 !important;
  box-shadow: 0 10px 22px rgba(241, 90, 36, 0.22) !important;
}

.btn-primary:hover {
  background: #df4f1d !important;
  box-shadow: 0 12px 26px rgba(241, 90, 36, 0.26) !important;
}

.btn-secondary,
.btn-ghost-light {
  box-shadow: none !important;
}

.hero {
  min-height: auto !important;
  background: #11161c !important;
}

.hero-bg,
.hero-grid-overlay,
.widget-glow,
.cta-section::before,
.cta-section::after {
  display: none !important;
}

.hero-inner {
  padding-top: 132px !important;
  padding-bottom: 86px !important;
  gap: 72px !important;
}

.hero-badge,
.section-kicker,
.eyebrow {
  letter-spacing: 0.04em !important;
}

.hero h1 {
  max-width: 780px !important;
  font-size: clamp(44px, 5.4vw, 72px) !important;
}

.highlight {
  background: none !important;
  -webkit-text-fill-color: currentColor !important;
  color: #fff !important;
}

.hero .lead {
  max-width: 680px !important;
  color: #c8d0d8 !important;
}

.hero-trust {
  gap: 14px 22px !important;
  margin-top: 10px !important;
}

.hero-trust-item {
  color: #d9dee5 !important;
  background: transparent !important;
}

.dashboard {
  background: #171d24 !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.22) !important;
}

.dash-topbar,
.dash-metric,
.dash-chart,
.site-row,
.tech-item {
  background: rgba(255, 255, 255, 0.035) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
}

.section {
  padding: 88px 0 !important;
}

.section-heading.center {
  max-width: 820px !important;
}

.card,
.price-card,
.testimonial-card,
.proof-card,
.contact-card,
.faq details {
  border-radius: 10px !important;
  border-color: #dce1e6 !important;
  box-shadow: 0 1px 2px rgba(17, 22, 28, 0.04), 0 12px 28px rgba(17, 22, 28, 0.05) !important;
}

.card:hover,
.price-card:hover,
.proof-card:hover {
  transform: none !important;
  border-color: #c8d0d8 !important;
  box-shadow: 0 1px 2px rgba(17, 22, 28, 0.05), 0 14px 32px rgba(17, 22, 28, 0.07) !important;
}

.card-icon,
.tech-icon {
  border-radius: 8px !important;
  background: rgba(241, 90, 36, 0.08) !important;
  border: 1px solid rgba(241, 90, 36, 0.12) !important;
}

.bg-dark {
  background: #121820 !important;
}

.card-dark,
.price-card.featured {
  background: #151b22 !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
  box-shadow: 0 18px 42px rgba(17, 22, 28, 0.18) !important;
}

.price-card.featured {
  outline: 1px solid rgba(241, 90, 36, 0.42) !important;
}

.brand-strip {
  background: #11161c !important;
  min-height: auto !important;
}

.brand-strip-photo-col {
  display: none !important;
}

.brand-strip-copy-col {
  width: 100% !important;
  min-height: auto !important;
  padding: 92px 0 !important;
}

.brand-strip-copy-inner {
  max-width: 980px !important;
  margin-inline: auto !important;
  padding: 0 48px !important;
}

.brand-strip-heading {
  max-width: 780px !important;
}

.brand-strip-lead {
  max-width: 720px !important;
  color: #c7ced6 !important;
}

.brand-strip-list {
  max-width: 760px !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.cta-section {
  background: #121820 !important;
  padding: 92px 0 !important;
}

.footer {
  background: #0f141a !important;
}

.footer-main {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

@media (max-width: 900px) {
  .hero-inner {
    padding-top: 112px !important;
    gap: 46px !important;
  }

  .brand-strip-list {
    grid-template-columns: 1fr !important;
  }
}

/* Big hosting company pass: mature product UI, lighter hero, restrained conversion */
.site-header,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98) !important;
  border-bottom: 1px solid #e1e5ea !important;
  box-shadow: 0 6px 20px rgba(17, 22, 28, 0.045) !important;
}

.nav {
  min-height: 78px !important;
}

.nav-links {
  gap: 2px !important;
}

.nav-links a {
  color: #35404b !important;
  font-size: 14px !important;
  font-weight: 650 !important;
  padding: 10px 12px !important;
}

.nav-actions .btn {
  min-height: 42px !important;
}

.hero {
  background:
    linear-gradient(180deg, #fbfaf8 0%, #f3f5f7 100%) !important;
  color: #11161c !important;
  border-bottom: 1px solid #e1e5ea !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(241, 90, 36, 0.08), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(241, 90, 36, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-inner {
  min-height: 760px !important;
  padding-top: 132px !important;
  padding-bottom: 72px !important;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr) !important;
}

.hero-content {
  max-width: 720px !important;
}

.hero-badge {
  background: #fff !important;
  border: 1px solid #dfe4e9 !important;
  color: #4d5966 !important;
  box-shadow: 0 8px 24px rgba(17, 22, 28, 0.05) !important;
}

.hero-badge-dot {
  box-shadow: none !important;
  animation: none !important;
}

.hero h1 {
  color: #10151b !important;
  font-size: clamp(44px, 5vw, 70px) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.025em !important;
}

.hero .lead {
  color: #56616e !important;
  font-size: clamp(17px, 1.5vw, 20px) !important;
}

.hero .btn-ghost-light,
.hero .btn-secondary {
  background: #fff !important;
  color: #11161c !important;
  border-color: #d7dde4 !important;
}

.hero-trust {
  border-top: 1px solid #dde3e9 !important;
  padding-top: 22px !important;
}

.hero-trust-item {
  color: #35404b !important;
  font-weight: 650 !important;
}

.hero-trust-item svg {
  color: #2ea043 !important;
}

.dashboard {
  background: #121820 !important;
  border: 1px solid rgba(17, 22, 28, 0.14) !important;
  border-radius: 14px !important;
  box-shadow:
    0 24px 64px rgba(17, 22, 28, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset !important;
}

.dash-topbar {
  background: #171f28 !important;
}

.dash-title {
  color: #f7fafc !important;
}

.dash-status-dot {
  color: #76d982 !important;
}

.dash-body {
  padding: 26px !important;
}

.dash-metric,
.dash-chart,
.dash-site-row {
  border-radius: 10px !important;
}

.stats-bar {
  background: #fff !important;
  border-top: 1px solid #e1e5ea !important;
  border-bottom: 1px solid #e1e5ea !important;
}

.stats-bar-inner {
  gap: 0 !important;
}

.stat-item {
  background: #fff !important;
  border-right: 1px solid #e8ecef !important;
  padding: 34px 24px !important;
}

.stat-value {
  color: #10151b !important;
  font-size: 30px !important;
}

.stat-label {
  color: #687381 !important;
  letter-spacing: 0.04em !important;
}

.brand-strip,
.bg-dark,
.affiliate-strip,
.cta-section {
  background: #111820 !important;
}

.brand-strip-copy-col {
  padding: 78px 0 !important;
}

.brand-strip-copy-inner {
  display: grid !important;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.75fr) !important;
  gap: 56px !important;
  align-items: start !important;
}

.brand-strip-eyebrow,
.brand-strip-heading,
.brand-strip-lead,
.brand-strip-actions {
  grid-column: 1 !important;
}

.brand-strip-list {
  grid-column: 2 !important;
  grid-row: 1 / span 4 !important;
  grid-template-columns: 1fr !important;
  background: rgba(255, 255, 255, 0.045) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 12px !important;
  padding: 24px !important;
  margin: 0 !important;
}

.brand-strip-list li {
  color: #e5ebf2 !important;
}

.section {
  padding: 82px 0 !important;
}

.section-heading {
  margin-bottom: 44px !important;
}

.section-heading h2,
.brand-strip-heading {
  letter-spacing: -0.02em !important;
}

.grid-3,
.grid-4,
.proof-grid {
  gap: 18px !important;
}

.card,
.proof-card {
  padding: 30px !important;
  background: #fff !important;
  border: 1px solid #dde3e9 !important;
}

.card h3,
.card h4,
.proof-title {
  color: #10151b !important;
}

.muted,
.proof-desc {
  color: #697481 !important;
}

.bg-dark .muted,
.bg-dark .lead,
.card-dark .muted,
.card-dark p {
  color: #c5cdd6 !important;
}

.tech-grid {
  gap: 12px !important;
}

.tech-item {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.09) !important;
  padding: 18px !important;
}

.comparison-table {
  background: #fff !important;
}

.comparison-table th.col-roberthost {
  background: #111820 !important;
}

.comparison-table td,
.comparison-table th {
  padding: 18px 22px !important;
}

.pricing-grid-3 {
  gap: 20px !important;
}

.price-card {
  padding: 30px !important;
}

.promo-price-row {
  margin-bottom: 8px !important;
}

.promo-badge {
  background: rgba(241, 90, 36, 0.1) !important;
  color: #c44719 !important;
  border: 1px solid rgba(241, 90, 36, 0.16) !important;
  font-size: 11px !important;
}

.price-card.featured .promo-badge {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
}

.affiliate-strip {
  border-top: 0 !important;
}

.affiliate-strip-inner {
  padding: 64px 0 !important;
}

.affiliate-commission {
  color: #fff !important;
  font-size: clamp(58px, 8vw, 96px) !important;
  line-height: 0.95 !important;
}

.footer {
  border-top: 0 !important;
}

@media (max-width: 1000px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
    min-height: auto !important;
  }

  .hero-widget {
    max-width: 620px !important;
  }

  .brand-strip-copy-inner {
    grid-template-columns: 1fr !important;
  }

  .brand-strip-list {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

/* Home trust section fix: remove the abandoned split-image column */
.brand-strip {
  display: block !important;
  width: 100% !important;
  min-height: auto !important;
  background:
    linear-gradient(90deg, #0f141a 0%, #111820 54%, #131b24 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  overflow: hidden !important;
}

.brand-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(241, 90, 36, 0.08), transparent 36%),
    radial-gradient(circle at 82% 28%, rgba(241, 90, 36, 0.1), transparent 32%);
  pointer-events: none;
}

.brand-strip-photo-col,
.brand-strip-photo,
.brand-strip-photo-fade {
  display: none !important;
}

.brand-strip-copy-col {
  width: min(var(--max-w), calc(100% - 48px)) !important;
  margin-inline: auto !important;
  padding: 84px 0 !important;
  background: transparent !important;
}

.brand-strip-copy-col::before {
  display: none !important;
}

.brand-strip-copy-inner {
  width: 100% !important;
  max-width: none !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px) !important;
  gap: clamp(40px, 6vw, 92px) !important;
  align-items: center !important;
}

.brand-strip-eyebrow,
.brand-strip-heading,
.brand-strip-lead,
.brand-strip-actions {
  grid-column: 1 !important;
}

.brand-strip-eyebrow {
  margin-bottom: 24px !important;
}

.brand-strip-heading {
  max-width: 680px !important;
  font-size: clamp(34px, 3.8vw, 56px) !important;
  line-height: 1.05 !important;
  margin-bottom: 24px !important;
}

.brand-strip-lead {
  max-width: 620px !important;
  margin-bottom: 32px !important;
  color: #c9d2dc !important;
  font-size: 17px !important;
}

.brand-strip-list {
  grid-column: 2 !important;
  grid-row: 1 / span 4 !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 28px !important;
  background: rgba(255, 255, 255, 0.055) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 12px !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18) !important;
}

.brand-strip-list li {
  align-items: flex-start !important;
  color: #f4f7fa !important;
  font-size: 15px !important;
  line-height: 1.55 !important;
  padding: 0 !important;
}

.brand-strip-list li + li {
  margin-top: 16px !important;
}

.brand-strip-actions {
  margin-top: 0 !important;
}

@media (max-width: 900px) {
  .brand-strip-copy-col {
    width: calc(100% - 32px) !important;
    padding: 64px 0 !important;
  }

  .brand-strip-copy-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  .brand-strip-list {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
}

/* Brand-strip spacing correction: keep copy rhythm natural */
.brand-strip-copy-col {
  padding: 72px 0 !important;
}

.brand-strip-copy-inner {
  grid-template-columns: minmax(0, 650px) minmax(340px, 460px) !important;
  gap: clamp(44px, 7vw, 100px) !important;
  align-items: center !important;
}

.brand-strip-copy-main {
  grid-column: 1 !important;
  max-width: 650px !important;
}

.brand-strip-eyebrow,
.brand-strip-heading,
.brand-strip-lead,
.brand-strip-actions {
  grid-column: auto !important;
}

.brand-strip-eyebrow {
  margin: 0 0 26px !important;
}

.brand-strip-heading {
  margin: 0 0 26px !important;
  max-width: 650px !important;
  font-size: clamp(34px, 3.6vw, 54px) !important;
  line-height: 1.08 !important;
}

.brand-strip-lead {
  margin: 0 0 34px !important;
  max-width: 610px !important;
  line-height: 1.68 !important;
}

.brand-strip-actions {
  margin: 0 !important;
}

.brand-strip-list {
  grid-column: 2 !important;
  grid-row: auto !important;
  align-self: center !important;
  padding: 26px 28px !important;
}

@media (max-width: 900px) {
  .brand-strip-copy-col {
    padding: 58px 0 !important;
  }

  .brand-strip-copy-inner {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .brand-strip-copy-main,
  .brand-strip-list {
    grid-column: 1 !important;
  }

  .brand-strip-heading {
    font-size: clamp(32px, 8vw, 44px) !important;
  }
}

/* Homepage platform cards: keep the Why RobertHost block balanced */
.platform-card-grid {
  max-width: 1120px !important;
  margin: 0 auto !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px !important;
  align-items: stretch !important;
}

.platform-card {
  min-height: 260px !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 30px !important;
}

.platform-card .card-icon {
  margin-bottom: 22px !important;
}

.platform-card h3 {
  margin: 0 0 14px !important;
  font-size: 21px !important;
  line-height: 1.24 !important;
}

.platform-card p {
  margin: 0 !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}

@media (max-width: 960px) {
  .platform-card-grid {
    grid-template-columns: 1fr !important;
    max-width: 620px !important;
  }

  .platform-card {
    min-height: auto !important;
  }
}

/* Homepage affiliate strip: tighten the composition and anchor the offer */
.affiliate-strip {
  background:
    radial-gradient(circle at 82% 45%, rgba(255, 92, 31, 0.12), transparent 34%),
    linear-gradient(135deg, #111820 0%, #101820 52%, #151b23 100%) !important;
}

.affiliate-strip-inner {
  width: min(1120px, calc(100% - 48px)) !important;
  grid-template-columns: minmax(0, 560px) minmax(280px, 360px) !important;
  gap: clamp(34px, 6vw, 72px) !important;
  justify-content: space-between !important;
  align-items: center !important;
  padding: 76px 0 !important;
}

.affiliate-copy .section-kicker {
  margin-bottom: 18px !important;
}

.affiliate-copy h2 {
  color: #fff !important;
  max-width: 560px !important;
  margin: 0 0 24px !important;
  font-size: clamp(40px, 4.6vw, 62px) !important;
  line-height: 1.05 !important;
  letter-spacing: 0 !important;
}

.affiliate-copy p {
  color: rgba(237, 241, 245, 0.82) !important;
  max-width: 500px !important;
  margin: 0 0 30px !important;
  font-size: 17px !important;
  line-height: 1.68 !important;
}

.affiliate-copy .hero-actions {
  margin: 0 !important;
  gap: 12px !important;
}

.affiliate-commission-card {
  justify-self: end !important;
  width: min(100%, 360px) !important;
  padding: 34px 36px 32px !important;
  text-align: center !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.045) !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22) !important;
}

.affiliate-commission {
  color: #fff !important;
  font-size: clamp(64px, 7vw, 104px) !important;
  line-height: 0.92 !important;
  letter-spacing: 0 !important;
}

.affiliate-commission-label {
  color: rgba(237, 241, 245, 0.78) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  margin-top: 12px !important;
}

@media (max-width: 900px) {
  .affiliate-strip-inner {
    width: calc(100% - 32px) !important;
    grid-template-columns: 1fr !important;
    gap: 30px !important;
    padding: 58px 0 !important;
  }

  .affiliate-copy h2 {
    font-size: clamp(34px, 9vw, 46px) !important;
    margin-bottom: 18px !important;
  }

  .affiliate-commission-card {
    justify-self: stretch !important;
    width: 100% !important;
    max-width: 420px !important;
  }
}

/* RobertHost premium managed WordPress homepage */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.rh-homepage {
  --rh-container: 1200px;
  --rh-warm: #f7f3ee;
  --rh-paper: #ffffff;
  --rh-soft: #f6f7f8;
  --rh-ink: var(--ink);
  --rh-text: #18212b;
  --rh-muted: #64707c;
  --rh-line: #dfe4e9;
  color: var(--rh-text);
  background: var(--rh-paper);
}

.rh-container {
  width: min(var(--rh-container), calc(100% - 64px));
  margin-inline: auto;
}

.rh-site-header {
  background: rgba(255, 255, 255, 0.88) !important;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(216, 222, 228, 0.82) !important;
  box-shadow: none !important;
}

.rh-nav {
  width: min(var(--rh-container), calc(100% - 64px)) !important;
  min-height: 76px !important;
  height: 76px !important;
}

.rh-site-header .brand-logo-img {
  height: 46px !important;
  max-width: 220px !important;
  object-fit: contain !important;
}

.rh-nav-links {
  gap: 4px !important;
}

.rh-nav-links a {
  color: #36414c !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  padding: 10px 12px !important;
}

.rh-nav-links a:hover {
  color: var(--orange) !important;
  background: rgba(241, 90, 36, 0.08) !important;
}

.rh-header-link {
  color: #303a44;
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
}

.rh-header-link:hover {
  color: var(--orange);
}

.rh-nav-drawer {
  background: rgba(255, 255, 255, 0.98) !important;
}

.rh-hero {
  padding: 132px 0 96px;
  background:
    linear-gradient(90deg, rgba(247, 243, 238, 0.98) 0%, rgba(255, 255, 255, 0.98) 56%, rgba(247, 243, 238, 0.9) 100%);
  border-bottom: 1px solid var(--rh-line);
}

.rh-hero-grid,
.rh-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  gap: clamp(48px, 7vw, 88px);
  align-items: center;
}

.rh-split-media-first {
  grid-template-columns: minmax(360px, 0.86fr) minmax(0, 1fr);
}

.rh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rh-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(241, 90, 36, 0.13);
}

.rh-hero h1 {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--rh-ink);
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 76px);
  line-height: 0.98;
  letter-spacing: 0;
}

.rh-hero-lead {
  max-width: 620px;
  margin: 0 0 32px;
  color: #52606d;
  font-size: 19px;
  line-height: 1.68;
}

.rh-hero-actions,
.rh-inline-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.rh-reassurance {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  color: #596571;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
}

.rh-hero-media {
  position: relative;
  min-height: 560px;
}

.rh-image-placeholder {
  position: relative;
  display: flex;
  min-height: 420px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 228, 0.92);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(246, 247, 248, 0.92)),
    var(--rh-warm);
  box-shadow: 0 22px 58px rgba(17, 22, 28, 0.11);
  color: #6b7681;
  text-align: center;
}

.rh-image-placeholder::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(100, 112, 124, 0.24);
  border-radius: 14px;
}

.rh-image-placeholder::after {
  content: attr(data-asset);
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  color: #818b96;
  font-size: 12px;
  font-weight: 700;
}

.rh-image-placeholder span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rh-image-placeholder strong {
  margin-top: 10px;
  color: #1d252f;
  font-size: 17px;
}

.rh-image-placeholder-hero {
  min-height: 560px;
  border-radius: 24px;
}

.rh-image-placeholder-dark {
  background:
    linear-gradient(145deg, rgba(28, 35, 43, 0.98), rgba(17, 22, 28, 0.98));
  border-color: rgba(255, 255, 255, 0.12);
  color: #c7d0d9;
}

.rh-image-placeholder-dark strong {
  color: #fff;
}

.rh-float-label {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(216, 222, 228, 0.92);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 34px rgba(17, 22, 28, 0.11);
  color: #242d36;
  font-size: 14px;
  font-weight: 850;
}

.rh-float-backups { top: 12%; left: -22px; }
.rh-float-malware { right: -12px; top: 43%; }
.rh-float-cdn { left: 36px; bottom: 10%; }

.rh-benefit-strip {
  background: var(--rh-ink);
  color: #fff;
}

.rh-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rh-benefit-item {
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}

.rh-benefit-item:last-child {
  border-right: 0;
}

.rh-benefit-item h2 {
  margin: 16px 0 8px;
  color: #fff;
  font-size: 20px;
  line-height: 1.2;
}

.rh-benefit-item p {
  margin: 0;
  color: rgba(237, 241, 245, 0.76);
  font-size: 15px;
  line-height: 1.55;
}

.rh-section {
  padding: 112px 0;
  background: #fff;
}

.rh-section-warm {
  background: var(--rh-warm);
}

.rh-section-dark {
  background: var(--rh-ink);
  color: #fff;
}

.rh-section-dark h2,
.rh-section-dark h3 {
  color: #fff;
}

.rh-section-dark p,
.rh-section-dark li {
  color: rgba(237, 241, 245, 0.77);
}

.rh-section-intro {
  max-width: 720px;
  margin: 0 auto 54px;
  text-align: center;
}

.rh-section-intro-left {
  margin-inline: 0;
  text-align: left;
}

.rh-section-intro h2,
.rh-split-copy h2,
.rh-final-cta h2,
.rh-partner-strip h2 {
  margin: 0 0 18px;
  color: var(--rh-ink);
  font-family: var(--font-display);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}

.rh-section-intro p,
.rh-split-copy > p,
.rh-final-cta p,
.rh-partner-strip p {
  margin: 0;
  color: var(--rh-muted);
  font-size: 18px;
  line-height: 1.68;
}

.rh-value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 58px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rh-value-grid article {
  padding: 34px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.rh-value-grid article:last-child {
  border-right: 0;
}

.rh-value-grid h3,
.rh-tool-card h3,
.rh-use-card h3,
.rh-feature-rows h3,
.rh-steps h3 {
  margin: 16px 0 10px;
  color: var(--rh-ink);
  font-size: 21px;
  line-height: 1.24;
}

.rh-value-grid p,
.rh-tool-card p,
.rh-use-card p,
.rh-feature-rows p,
.rh-steps p {
  margin: 0;
  color: var(--rh-muted);
  font-size: 15px;
  line-height: 1.66;
}

.rh-split-copy {
  max-width: 620px;
}

.rh-feature-rows {
  display: grid;
  gap: 18px;
  margin: 30px 0 22px;
}

.rh-feature-rows article {
  padding-left: 22px;
  border-left: 3px solid rgba(241, 90, 36, 0.34);
}

.rh-feature-rows h3 {
  margin-top: 0;
}

.rh-checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  margin: 30px 0 24px;
  padding: 0;
  list-style: none;
}

.rh-checklist li,
.rh-plan-list li {
  position: relative;
  padding-left: 28px;
}

.rh-checklist li::before,
.rh-plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 17px;
  height: 17px;
  border-radius: 999px;
  background: rgba(63, 185, 80, 0.15);
}

.rh-checklist li::after,
.rh-plan-list li::after {
  content: "";
  position: absolute;
  left: 5px;
  top: calc(0.35em + 4px);
  width: 7px;
  height: 4px;
  border-left: 2px solid #238636;
  border-bottom: 2px solid #238636;
  transform: rotate(-45deg);
}

.rh-text-link {
  display: inline-flex;
  align-items: center;
  color: var(--orange);
  font-weight: 850;
}

.rh-text-link::after {
  content: "->";
  margin-left: 8px;
}

.rh-text-link-light {
  color: #ff8a55;
}

.rh-steps {
  display: grid;
  gap: 14px;
  margin: 30px 0;
}

.rh-steps article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  column-gap: 18px;
  padding: 20px;
  border: 1px solid rgba(216, 222, 228, 0.85);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.rh-steps span {
  grid-row: 1 / span 2;
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
}

.rh-steps h3 {
  margin: 0 0 7px;
}

.rh-card-grid {
  display: grid;
  gap: 22px;
}

.rh-card-grid-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.rh-card-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.rh-tool-card,
.rh-use-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid var(--rh-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(17, 22, 28, 0.05);
}

.rh-tool-card:hover,
.rh-use-card:hover,
.rh-price-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(17, 22, 28, 0.09);
}

.rh-pricing-section {
  background: #fff;
}

.rh-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.rh-home-currency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: -18px auto 34px;
  padding: 7px;
  gap: 8px;
  border: 1px solid #d8e0e8;
  border-radius: 999px;
  background: #f7f9fb;
  box-shadow: 0 10px 28px rgba(17, 22, 28, 0.06);
}

.rh-home-currency-bar > span {
  padding-left: 12px;
  color: #65717d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rh-home-currency-options {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(207, 215, 223, 0.75);
}

.rh-price-card {
  display: flex;
  flex-direction: column;
  padding: 34px;
  border: 1px solid #cfd7df;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(17, 22, 28, 0.06);
}

.rh-price-featured {
  background: var(--rh-ink);
  border-color: var(--orange);
  color: #fff;
  box-shadow: 0 18px 48px rgba(17, 22, 28, 0.22);
}

.rh-price-card h3 {
  margin: 18px 0 8px;
  color: var(--rh-ink);
  font-size: 28px;
  line-height: 1.12;
}

.rh-price-featured h3 {
  color: #fff;
}

.rh-plan-for {
  min-height: 48px;
  margin: 0 0 22px;
  color: var(--rh-muted);
  font-size: 15px;
  line-height: 1.5;
}

.rh-price-featured .rh-plan-for,
.rh-price-featured .rh-billing,
.rh-price-featured .rh-plan-list li,
.rh-price-featured .rh-plan-details,
.rh-price-featured .rh-plan-details li {
  color: rgba(237, 241, 245, 0.78);
}

.rh-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.rh-was {
  color: #65717d;
  font-weight: 850;
  text-decoration: line-through;
}

.rh-price-featured .rh-was {
  color: rgba(255, 255, 255, 0.48);
}

.rh-price {
  color: var(--rh-ink);
  font-family: var(--font-display);
  font-size: clamp(46px, 5vw, 62px);
  font-weight: 900;
  line-height: 0.98;
}

.rh-price sup {
  margin-right: 2px;
  font-size: 24px;
  vertical-align: super;
}

.rh-price small {
  margin-left: 4px;
  color: var(--rh-muted);
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
}

.rh-price-featured .rh-price,
.rh-price-featured .rh-price small {
  color: #fff;
}

.rh-billing {
  margin: 10px 0 26px;
  color: var(--rh-muted);
  font-size: 14px;
  font-weight: 700;
}

.rh-plan-list {
  display: grid;
  gap: 14px;
  margin: 0 0 22px;
  padding: 24px 0 0;
  border-top: 1px solid var(--rh-line);
  list-style: none;
  color: var(--rh-text);
  font-size: 15px;
  line-height: 1.45;
}

.rh-price-featured .rh-plan-list {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.rh-plan-details {
  margin: auto 0 24px;
  color: var(--rh-muted);
  font-size: 14px;
}

.rh-plan-details summary {
  cursor: pointer;
  color: var(--orange);
  font-weight: 850;
}

.rh-plan-details ul {
  display: grid;
  gap: 10px;
  margin: 14px 0 0;
  padding-left: 18px;
}

.rh-pricing-reassurance {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
}

.rh-pricing-reassurance span {
  padding: 10px 14px;
  border: 1px solid var(--rh-line);
  border-radius: 999px;
  background: var(--rh-soft);
  color: #4c5965;
  font-size: 14px;
  font-weight: 800;
}

.rh-comparison {
  overflow: hidden;
  border: 1px solid var(--rh-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(17, 22, 28, 0.06);
}

.rh-comparison > div {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
}

.rh-comparison > div > div {
  padding: 20px 22px;
  border-bottom: 1px solid var(--rh-line);
  color: #46525e;
  font-size: 15px;
  line-height: 1.5;
}

.rh-comparison > div > div:first-child {
  color: var(--rh-ink);
  font-weight: 800;
}

.rh-comparison > div:last-child > div {
  border-bottom: 0;
}

.rh-comparison-head > div {
  background: var(--rh-ink);
  color: #fff !important;
  font-weight: 900;
}

.rh-table-check {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  border-radius: 999px;
  background: rgba(63, 185, 80, 0.14);
  vertical-align: -4px;
}

.rh-table-check::after {
  content: "";
  display: block;
  width: 8px;
  height: 5px;
  margin: 5px 0 0 5px;
  border-left: 2px solid #238636;
  border-bottom: 2px solid #238636;
  transform: rotate(-45deg);
}

.rh-faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.rh-faq-list {
  display: grid;
  gap: 12px;
}

.rh-faq-item {
  border: 1px solid var(--rh-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(17, 22, 28, 0.04);
  overflow: hidden;
}

.rh-faq-question {
  position: relative;
  width: 100%;
  min-height: 58px;
  padding: 18px 54px 18px 20px;
  border: 0;
  background: transparent;
  color: var(--rh-ink);
  font: inherit;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.rh-faq-question::after {
  content: "+";
  position: absolute;
  top: 50%;
  right: 20px;
  color: var(--orange);
  font-size: 24px;
  font-weight: 700;
  transform: translateY(-50%);
}

.rh-faq-question[aria-expanded="true"]::after {
  content: "-";
}

.rh-faq-answer {
  padding: 0 20px 20px;
}

.rh-faq-answer p {
  margin: 0;
  color: var(--rh-muted);
  font-size: 15px;
  line-height: 1.65;
}

.rh-final-cta {
  padding: 104px 0;
  background: var(--rh-ink);
  color: #fff;
  text-align: center;
}

.rh-final-cta h2 {
  max-width: 720px;
  margin-inline: auto;
  color: #fff;
}

.rh-final-cta p {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(237, 241, 245, 0.78);
}

.rh-final-cta .rh-hero-actions {
  justify-content: center;
  margin-top: 30px;
}

.rh-reassurance-light {
  justify-content: center;
  color: rgba(237, 241, 245, 0.72) !important;
}

.rh-partner-strip {
  padding: 40px 0;
  background: #fff;
  border-bottom: 1px solid var(--rh-line);
}

.rh-partner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.rh-partner-strip .rh-eyebrow {
  margin-bottom: 10px;
}

.rh-partner-strip h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 3vw, 36px);
}

.rh-partner-strip p {
  max-width: 620px;
  font-size: 16px;
}

.rh-footer .footer-main {
  grid-template-columns: minmax(240px, 1.35fr) repeat(5, minmax(135px, 1fr));
}

.rh-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(241, 90, 36, 0.18);
  border-radius: 10px;
  background: rgba(241, 90, 36, 0.08);
  color: var(--orange);
}

.rh-icon::before {
  content: "";
  width: 22px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 7px;
}

.rh-icon-cloud::before {
  width: 24px;
  height: 15px;
  border-radius: 999px;
  border-top-left-radius: 14px;
}

.rh-icon-globe::before {
  border-radius: 999px;
  box-shadow: inset 7px 0 0 -5px currentColor, inset -7px 0 0 -5px currentColor;
}

.rh-icon-backup::before,
.rh-icon-refresh::before {
  border-radius: 999px;
  border-left-color: transparent;
}

.rh-icon-shield::before {
  border-radius: 12px 12px 16px 16px;
}

.rh-icon-speed::before {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border-bottom-color: transparent;
  transform: rotate(-25deg);
}

.rh-icon-cache::before {
  width: 22px;
  height: 16px;
  border-radius: 999px;
  box-shadow: inset 0 -5px 0 -3px currentColor;
}

.rh-icon-database::before {
  width: 22px;
  height: 18px;
  border-radius: 999px / 8px;
  box-shadow: inset 0 -6px 0 -4px currentColor;
}

.rh-icon-grow::before {
  width: 18px;
  height: 18px;
  border-left: 0;
  border-bottom: 0;
  transform: rotate(-45deg);
}

.rh-icon-copy::before {
  box-shadow: 5px -5px 0 -2px #fff, 5px -5px 0 0 currentColor;
}

.rh-icon-mail::before {
  height: 16px;
  border-radius: 4px;
}

.rh-icon-terminal::before {
  height: 16px;
  border-radius: 4px;
}

.rh-icon-settings::before {
  border-radius: 999px;
  box-shadow: inset 0 0 0 5px #fff;
}

.rh-section-dark .rh-icon {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ff8a55;
}

.rh-section-dark .rh-icon-copy::before,
.rh-section-dark .rh-icon-settings::before {
  box-shadow: none;
}

@media (max-width: 1100px) {
  .rh-nav-links {
    display: none !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
  }

  .rh-nav-actions .btn-primary,
  .rh-header-link {
    display: none !important;
  }

  .rh-hero-grid,
  .rh-split,
  .rh-split-media-first,
  .rh-faq-layout {
    grid-template-columns: 1fr;
  }

  .rh-card-grid-4,
  .rh-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rh-value-grid article:nth-child(2) {
    border-right: 0;
  }

  .rh-pricing-grid,
  .rh-card-grid-6 {
    grid-template-columns: 1fr;
  }

  .rh-price-card {
    max-width: 680px;
    width: 100%;
    margin-inline: auto;
  }

  .rh-footer .footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .rh-container,
  .rh-nav {
    width: calc(100% - 36px) !important;
  }

  .rh-site-header .brand-logo-img {
    height: 42px !important;
    max-width: 178px !important;
  }

  .rh-hero {
    padding: 104px 0 70px;
  }

  .rh-hero h1 {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 1.02;
  }

  .rh-hero-lead,
  .rh-section-intro p,
  .rh-split-copy > p {
    font-size: 16px;
  }

  .rh-hero-actions,
  .rh-inline-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .rh-hero-actions .btn,
  .rh-inline-actions .btn,
  .rh-final-cta .btn {
    width: 100%;
    min-height: 48px;
  }

  .rh-hero-media,
  .rh-image-placeholder-hero {
    min-height: 420px;
  }

  .rh-float-label {
    position: static;
    margin: 10px 8px 0 0;
  }

  .rh-hero-media {
    display: flex;
    min-height: auto;
    flex-wrap: wrap;
  }

  .rh-image-placeholder-hero {
    width: 100%;
  }

  .rh-benefit-grid,
  .rh-card-grid-4,
  .rh-value-grid,
  .rh-checklist {
    grid-template-columns: 1fr;
  }

  .rh-benefit-item,
  .rh-value-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .rh-value-grid article:last-child {
    border-bottom: 0;
  }

  .rh-section {
    padding: 76px 0;
  }

  .rh-section-intro {
    margin-bottom: 36px;
    text-align: left;
  }

  .rh-image-placeholder,
  .rh-image-placeholder-split {
    min-height: 330px;
  }

  .rh-steps article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .rh-steps span {
    grid-row: auto;
  }

  .rh-price-card {
    padding: 26px;
  }

  .rh-comparison,
  .rh-comparison > div {
    display: grid;
  }

  .rh-comparison-head {
    display: none !important;
  }

  .rh-comparison > div {
    grid-template-columns: 1fr;
    border-bottom: 1px solid var(--rh-line);
  }

  .rh-comparison > div:last-child {
    border-bottom: 0;
  }

  .rh-comparison > div > div {
    border-bottom: 0;
    padding: 12px 18px;
  }

  .rh-comparison > div > div:nth-child(2)::before {
    content: "RobertHost: ";
    color: var(--rh-ink);
    font-weight: 900;
  }

  .rh-comparison > div > div:nth-child(3)::before {
    content: "Traditional shared hosting: ";
    color: var(--rh-ink);
    font-weight: 900;
  }

  .rh-partner-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .rh-partner-inner .btn {
    width: 100%;
  }

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

@media (max-width: 430px) {
  .rh-footer .footer-main {
    grid-template-columns: 1fr;
  }

  .rh-pricing-reassurance {
    justify-content: flex-start;
  }

  .rh-reassurance {
    display: block;
  }

  .rh-reassurance span {
    display: none;
  }
}

/* Homepage hero photography */
.rh-hero-media.rh-hero-media-photo {
  display: flex;
  min-height: 560px !important;
  align-items: center;
}

.rh-hero-photo {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid #d6dce1;
  border-top: 4px solid #f15a24;
  border-radius: 8px;
  background: #101820;
  box-shadow: 0 24px 64px rgba(17, 24, 32, 0.16);
}

.rh-hero-photo img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: 50% center;
}

.rh-hero-photo figcaption {
  display: grid;
  gap: 7px;
  padding: 22px 24px 24px;
  background: #101820;
}

.rh-hero-photo figcaption span {
  color: #ff7a45;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rh-hero-photo figcaption strong {
  max-width: 480px;
  color: #ffffff;
  font-size: 18px;
  line-height: 1.35;
}

@media (max-width: 1100px) {
  .rh-hero-media.rh-hero-media-photo {
    min-height: 0 !important;
  }

  .rh-hero-photo img {
    height: 520px;
    object-position: center 44%;
  }
}

@media (max-width: 760px) {
  .homepage-pricing-section {
    overflow-x: clip;
  }

  .rh-hero-photo img {
    height: 340px;
    object-position: 51% center;
  }

  .rh-hero-photo figcaption {
    padding: 18px;
  }

  .rh-hero-photo figcaption strong {
    font-size: 16px;
  }
}

/* Homepage finishing pass */
.rh-homepage :focus-visible {
  outline: 3px solid rgba(241, 90, 36, 0.45);
  outline-offset: 3px;
}

.rh-image-placeholder {
  isolation: isolate;
}

.rh-image-placeholder::before {
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(241, 90, 36, 0.06) 44% 56%, transparent 56%),
    radial-gradient(circle at 50% 36%, rgba(241, 90, 36, 0.09), transparent 28%);
}

.rh-image-placeholder span,
.rh-image-placeholder strong {
  position: relative;
  z-index: 1;
  max-width: 72%;
}

.rh-image-placeholder strong {
  line-height: 1.28;
}

.rh-image-placeholder-dark::before {
  background:
    linear-gradient(135deg, transparent 0 44%, rgba(241, 90, 36, 0.12) 44% 56%, transparent 56%),
    radial-gradient(circle at 50% 36%, rgba(241, 90, 36, 0.16), transparent 30%);
}

.rh-price-card > .btn {
  justify-content: center;
  width: 100%;
  margin-top: 0;
}

.rh-price-card .promo-badge {
  white-space: normal;
  line-height: 1.2;
  text-align: center;
}

.rh-plan-details summary {
  list-style-position: outside;
}

.rh-partner-strip .btn {
  flex-shrink: 0;
}

@media (min-width: 1101px) {
  .rh-price-card {
    min-height: 760px;
  }
}

@media (max-width: 520px) {
  .rh-container,
  .rh-nav {
    width: calc(100% - 32px) !important;
  }

  .rh-hero {
    padding-top: 96px;
  }

  .rh-hero h1,
  .rh-section-intro h2,
  .rh-split-copy h2,
  .rh-final-cta h2 {
    word-break: normal;
    overflow-wrap: break-word;
  }

  .rh-reassurance {
    display: grid;
    gap: 6px;
  }

  .rh-reassurance span {
    display: none;
  }

  .rh-image-placeholder span,
  .rh-image-placeholder strong {
    max-width: calc(100% - 52px);
  }

  .rh-price-line {
    align-items: flex-start;
    flex-direction: column;
  }

  .rh-price {
    font-size: clamp(42px, 14vw, 54px);
  }

  .rh-faq-question {
    padding-right: 46px;
    font-size: 15px;
    line-height: 1.35;
  }
}

/* Final contrast guard for the premium homepage dark sections */
.rh-section-dark .rh-section-intro h2,
.rh-section-dark .rh-split-copy h2,
.rh-section-dark .rh-value-grid h3,
.rh-section-dark .rh-feature-rows h3,
.rh-section-dark .rh-section-intro p,
.rh-section-dark .rh-split-copy > p,
.rh-section-dark .rh-value-grid p,
.rh-section-dark .rh-feature-rows p {
  color: inherit;
}

.rh-section-dark .rh-section-intro h2,
.rh-section-dark .rh-split-copy h2,
.rh-section-dark .rh-value-grid h3,
.rh-section-dark .rh-feature-rows h3 {
  color: #fff !important;
}

.rh-section-dark .rh-section-intro p,
.rh-section-dark .rh-split-copy > p,
.rh-section-dark .rh-value-grid p,
.rh-section-dark .rh-feature-rows p {
  color: rgba(237, 241, 245, 0.78) !important;
}

.rh-price-featured .promo-badge {
  background: #fff !important;
  color: var(--orange) !important;
  box-shadow: none !important;
}

.anchor-offset {
  display: block;
  position: relative;
  top: -96px;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.rh-photo-panel {
  position: relative;
  display: block;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 228, 0.84);
  border-radius: 22px;
  background: var(--rh-warm, #f7f3ee);
  box-shadow: 0 24px 70px rgba(17, 22, 28, 0.14);
  isolation: isolate;
}

.rh-photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 55%, rgba(17, 22, 28, 0.24)),
    radial-gradient(circle at 18% 18%, rgba(241, 90, 36, 0.12), transparent 30%);
  pointer-events: none;
}

.rh-photo-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.02);
}

.rh-photo-panel-hero {
  min-height: 560px;
  border-radius: 26px;
}

.rh-photo-panel-hero img {
  object-position: 55% center;
}

.rh-photo-performance img {
  object-position: 50% 20%;
}

.rh-photo-security {
  background: var(--rh-ink, #11161c);
  border-color: rgba(255, 255, 255, 0.12);
}

.rh-photo-security::after {
  background:
    linear-gradient(90deg, rgba(17, 22, 28, 0.35), transparent 44%),
    radial-gradient(circle at 84% 34%, rgba(241, 90, 36, 0.28), transparent 24%);
}

.rh-photo-security img {
  object-position: center;
  filter: saturate(0.88) contrast(1.05) brightness(0.9);
}

.rh-photo-migration img {
  object-position: 57% center;
}

.rh-nav {
  width: min(var(--rh-container, 1200px), calc(100% - 64px)) !important;
}

/* Softer final CTA typography and trust line */
.rh-final-cta {
  padding: 86px 0 92px !important;
}

.rh-final-cta .rh-eyebrow {
  margin-bottom: 16px !important;
}

.rh-final-cta h2 {
  max-width: 760px !important;
  margin-bottom: 20px !important;
  font-size: clamp(38px, 5vw, 62px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

.rh-final-cta p:not(.rh-reassurance) {
  max-width: 660px !important;
  font-size: clamp(17px, 1.6vw, 21px) !important;
  line-height: 1.62 !important;
}

.rh-final-cta .rh-hero-actions {
  margin-top: 34px !important;
  gap: 14px !important;
}

.rh-final-cta .btn-xl {
  min-width: 240px;
  min-height: 56px;
  font-size: 16px;
}

.rh-final-cta .rh-reassurance-light {
  display: flex !important;
  max-width: 760px;
  justify-content: center;
  gap: 10px !important;
  margin: 28px auto 0 !important;
  color: rgba(237, 241, 245, 0.82) !important;
  font-size: 14px !important;
  font-weight: 750 !important;
  line-height: 1.3 !important;
}

.rh-final-cta .rh-reassurance-light span {
  display: none;
}

.rh-final-cta .rh-reassurance-light::before,
.rh-final-cta .rh-reassurance-light::after {
  content: none;
}

.rh-final-cta .rh-reassurance-light {
  text-wrap: balance;
}

@media (max-width: 760px) {
  .rh-nav {
    width: calc(100% - 36px) !important;
  }

  .rh-photo-panel,
  .rh-photo-panel-hero {
    min-height: 380px;
  }

  .rh-photo-panel-hero img,
  .rh-photo-migration img {
    object-position: 60% center;
  }

  .rh-final-cta {
    padding: 72px 0 78px !important;
  }

  .rh-final-cta h2 {
    font-size: clamp(34px, 10vw, 46px) !important;
  }

  .rh-final-cta .rh-hero-actions {
    max-width: 420px;
    margin-inline: auto;
  }

  .rh-final-cta .btn-xl {
    width: 100%;
    min-width: 0;
  }

  .rh-final-cta .rh-reassurance-light {
    display: grid !important;
    max-width: 420px;
    gap: 8px !important;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .rh-nav {
    width: calc(100% - 32px) !important;
  }

  .rh-photo-panel,
  .rh-photo-panel-hero {
    min-height: 320px;
    border-radius: 18px;
  }

  .rh-final-cta p:not(.rh-reassurance) {
    font-size: 16px !important;
  }
}

/* Product-owned visuals for the homepage */
.rh-platform-dashboard {
  max-width: 560px;
  margin-left: auto;
}

.rh-platform-dashboard .dashboard {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 78% 8%, rgba(241, 90, 36, 0.18), transparent 30%),
    linear-gradient(145deg, #151c24 0%, #10161d 100%);
  box-shadow: 0 30px 90px rgba(17, 22, 28, 0.28);
}

.rh-platform-dashboard .dash-body {
  display: grid;
  gap: 14px;
  padding: 22px !important;
}

.rh-platform-dashboard .dash-metric {
  min-height: 92px;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.rh-platform-dashboard .dash-metric-value {
  font-size: clamp(18px, 2.6vw, 24px);
  letter-spacing: 0;
}

.rh-stack-panel {
  display: grid;
  gap: 20px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    radial-gradient(circle at 18% 18%, rgba(241, 90, 36, 0.16), transparent 38%);
}

.rh-stack-panel span {
  color: rgba(237, 241, 245, 0.64);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rh-stack-panel strong {
  display: block;
  max-width: 420px;
  margin-top: 8px;
  color: #fff;
  font-size: 22px;
  line-height: 1.18;
}

.rh-stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.rh-stack-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.rh-platform-dashboard .dash-site-row {
  justify-content: flex-start;
  border-color: rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.045);
}

.rh-platform-dashboard .dash-site-row > div {
  flex: 1;
  min-width: 0;
}

.rh-platform-dashboard .dash-site-row strong {
  display: block;
  color: #fff;
  font-size: 13px;
  line-height: 1.25;
}

.rh-platform-dashboard .dash-site-row small {
  display: block;
  margin-top: 3px;
  color: rgba(237, 241, 245, 0.58);
  font-size: 12px;
}

.site-dot {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.14);
}

.site-dot.green {
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(30, 181, 73, 0.14);
}

.site-badge {
  flex: 0 0 auto;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 850;
}

.rh-visual-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(216, 222, 228, 0.86);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 18%, rgba(241, 90, 36, 0.11), transparent 30%),
    linear-gradient(145deg, #fff 0%, #f6f8fa 100%);
  box-shadow: 0 24px 68px rgba(17, 22, 28, 0.12);
  padding: clamp(28px, 4vw, 40px);
}

.rh-visual-panel h3 {
  max-width: 380px;
  margin: 12px 0 26px;
  color: var(--rh-ink);
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.08;
  letter-spacing: 0;
}

.rh-panel-kicker {
  display: inline-flex;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rh-panel-list,
.rh-security-list,
.rh-migration-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.rh-panel-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(216, 222, 228, 0.72);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 32px rgba(17, 22, 28, 0.055);
}

.rh-panel-row strong,
.rh-migration-flow strong {
  display: block;
  color: var(--rh-ink);
  font-size: 15px;
  line-height: 1.25;
}

.rh-panel-row small,
.rh-migration-flow small {
  display: block;
  margin-top: 4px;
  color: var(--rh-muted);
  font-size: 13px;
  line-height: 1.45;
}

.rh-mini-icon {
  display: inline-grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(241, 90, 36, 0.2);
  border-radius: 10px;
  background: rgba(241, 90, 36, 0.08);
  color: var(--orange);
}

.rh-mini-icon::before {
  content: "";
  width: 17px;
  height: 17px;
  border: 2px solid currentColor;
  border-radius: 6px;
}

.rh-mini-icon.rh-icon-cloud::before {
  width: 20px;
  height: 13px;
  border-radius: 999px;
  border-top-left-radius: 13px;
}

.rh-mini-icon.rh-icon-speed::before {
  border-radius: 999px;
  border-bottom-color: transparent;
  transform: rotate(-25deg);
}

.rh-mini-icon.rh-icon-cache::before {
  width: 19px;
  height: 13px;
  border-radius: 999px;
  box-shadow: inset 0 -5px 0 -3px currentColor;
}

.rh-mini-icon.rh-icon-database::before {
  width: 19px;
  height: 15px;
  border-radius: 999px / 8px;
  box-shadow: inset 0 -6px 0 -4px currentColor;
}

.rh-performance-orbit {
  position: absolute;
  top: 34px;
  right: 28px;
  width: 150px;
  height: 150px;
  opacity: 0.75;
}

.rh-performance-orbit span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(241, 90, 36, 0.22);
  border-radius: 999px;
}

.rh-performance-orbit span:nth-child(2) {
  inset: 24px;
  border-color: rgba(17, 22, 28, 0.14);
}

.rh-performance-orbit span:nth-child(3) {
  inset: 54px;
  background: var(--orange);
  box-shadow: 0 0 0 12px rgba(241, 90, 36, 0.12);
}

.rh-security-panel {
  border-color: rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 78% 18%, rgba(241, 90, 36, 0.2), transparent 32%),
    linear-gradient(145deg, #151c24 0%, #0f151b 100%);
  color: #fff;
}

.rh-security-panel h3 {
  color: #fff;
}

.rh-shield-mark {
  width: 74px;
  height: 86px;
  margin: 22px 0 8px;
  border: 2px solid rgba(241, 90, 36, 0.78);
  border-radius: 28px 28px 34px 34px;
  background:
    linear-gradient(145deg, rgba(241, 90, 36, 0.28), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 40px rgba(241, 90, 36, 0.18);
}

.rh-security-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.rh-security-list span {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.3;
}

.rh-migration-panel {
  background:
    radial-gradient(circle at 82% 12%, rgba(241, 90, 36, 0.12), transparent 28%),
    linear-gradient(145deg, #fffaf6 0%, #ffffff 62%, #f6f8fa 100%);
}

.rh-migration-flow {
  gap: 14px;
}

.rh-migration-flow div {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 14px;
  padding: 18px;
  border: 1px solid rgba(216, 222, 228, 0.76);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 32px rgba(17, 22, 28, 0.055);
}

.rh-migration-flow span {
  grid-row: 1 / span 2;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 999px;
  background: rgba(241, 90, 36, 0.1);
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.rh-final-cta .rh-reassurance-light {
  display: flex !important;
  flex-wrap: wrap;
  max-width: 840px;
  justify-content: center;
  gap: 10px !important;
  text-wrap: initial;
}

.rh-final-cta .rh-reassurance-light span {
  display: inline-flex !important;
  min-height: 36px;
  align-items: center;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(237, 241, 245, 0.84);
  box-shadow: none;
}

@media (max-width: 960px) {
  .rh-platform-dashboard {
    max-width: none;
    margin: 0;
  }

  .rh-visual-panel {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .rh-hero-media {
    min-height: 0;
  }

  .rh-platform-dashboard .dash-metrics,
  .rh-security-list {
    grid-template-columns: 1fr;
  }

  .rh-stack-panel strong {
    font-size: 20px;
  }

  .rh-visual-panel {
    padding: 26px;
    border-radius: 18px;
  }

  .rh-performance-orbit {
    width: 112px;
    height: 112px;
    opacity: 0.42;
  }

  .rh-final-cta .rh-reassurance-light {
    display: flex !important;
    max-width: 420px;
  }

  .rh-final-cta .rh-reassurance-light span {
    width: 100%;
    justify-content: center;
  }
}

/* Premium product UI refinements and readability pass */
.rh-dashboard-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
}

.rh-dashboard-tabs span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  color: rgba(237, 241, 245, 0.66);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rh-dashboard-tabs .is-active {
  background: rgba(241, 90, 36, 0.18);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(241, 90, 36, 0.2);
}

.rh-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(160px, 0.65fr);
  gap: 14px;
}

.rh-dashboard-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.rh-dashboard-card > span {
  color: rgba(237, 241, 245, 0.64);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rh-dashboard-card ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rh-dashboard-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  font-weight: 750;
  line-height: 1.35;
}

.rh-dashboard-card li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(30, 181, 73, 0.13);
}

.rh-infra-map {
  position: relative;
  z-index: 1;
  min-height: 210px;
  margin: 2px 0 22px;
  border: 1px solid rgba(216, 222, 228, 0.7);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(17, 22, 28, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(17, 22, 28, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, rgba(241, 90, 36, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.64);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.rh-infra-map::before,
.rh-infra-map::after {
  content: "";
  position: absolute;
  inset: 50% 14%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 90, 36, 0.5), transparent);
}

.rh-infra-map::after {
  transform: rotate(90deg);
}

.rh-infra-core,
.rh-infra-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 222, 228, 0.9);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(17, 22, 28, 0.08);
  color: var(--rh-ink);
  font-size: 12px;
  font-weight: 900;
}

.rh-infra-core {
  top: 50%;
  left: 50%;
  min-width: 112px;
  min-height: 112px;
  transform: translate(-50%, -50%);
  border-color: rgba(241, 90, 36, 0.26);
  background: linear-gradient(145deg, #fff, #fff4ee);
  color: var(--orange);
}

.rh-infra-node {
  min-width: 72px;
  min-height: 38px;
}

.rh-node-cdn { top: 24px; left: 28px; }
.rh-node-cache { top: 24px; right: 28px; }
.rh-node-cloud { bottom: 24px; left: 34px; }
.rh-node-wpcli { right: 34px; bottom: 24px; }

.rh-security-console {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 18px 0 22px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.055);
}

.rh-security-console .rh-shield-mark {
  flex: 0 0 auto;
  margin: 0;
}

.rh-security-console strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.25;
}

.rh-security-console span {
  display: block;
  margin-top: 5px;
  color: rgba(237, 241, 245, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

.rh-migration-route {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 4px 0 22px;
}

.rh-migration-route::before {
  content: "";
  position: absolute;
  top: 17px;
  right: 9%;
  left: 9%;
  height: 2px;
  background: linear-gradient(90deg, var(--orange) 0 62%, rgba(216, 222, 228, 0.9) 62% 100%);
}

.rh-migration-route span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(216, 222, 228, 0.82);
  border-radius: 999px;
  background: #fff;
  color: #5c6874;
  font-size: 12px;
  font-weight: 850;
}

.rh-migration-route .is-complete,
.rh-migration-route .is-active {
  border-color: rgba(241, 90, 36, 0.26);
  background: #fff4ee;
  color: var(--orange);
}

.rh-migration-route .is-active {
  box-shadow: 0 0 0 5px rgba(241, 90, 36, 0.1);
}

.page-hero h1,
.section h1,
.section h2,
.section h3,
.section-heading h2,
.card h3,
.card h4,
.faq summary,
.legal-body h2,
.legal-body h3 {
  color: #10151b !important;
}

.page-hero .lead,
.section .lead,
.section .muted,
.card p,
.card li,
.faq p,
.legal-body p,
.legal-body li {
  color: #566371 !important;
}

.bg-dark h1,
.bg-dark h2,
.bg-dark h3,
.bg-dark h4,
.card-dark h3,
.card-dark h4,
.cta-section h2,
.cta-section h3,
.hero h1,
.rh-section-dark h2,
.rh-section-dark h3,
.rh-final-cta h2 {
  color: #ffffff !important;
}

.bg-dark p,
.bg-dark li,
.bg-dark .lead,
.bg-dark .muted,
.card-dark p,
.card-dark li,
.card-dark .muted,
.cta-section p,
.cta-section li,
.cta-section .lead,
.cta-section .muted,
.hero .lead,
.rh-section-dark p,
.rh-section-dark li,
.rh-final-cta p {
  color: #d8e0ea !important;
}

.price-card.featured p,
.price-card.featured li,
.price-card.featured .muted,
.price-card.featured .plan-desc,
.price-card.featured .plan-billing,
.price-card.featured .plan-annual-note,
.price-card.featured .plan-price small {
  color: #d8e0ea !important;
}

.rh-price-featured p,
.rh-price-featured li,
.rh-price-featured .rh-plan-details,
.rh-price-featured .rh-plan-details li,
.rh-price-featured .rh-price small,
.rh-price-featured .rh-billed {
  color: #d8e0ea !important;
}

.card-dark .section-kicker,
.bg-dark .section-kicker,
.cta-section .section-kicker,
.hero-badge,
.rh-section-dark .rh-eyebrow,
.rh-final-cta .rh-eyebrow {
  color: #ff8a55 !important;
}

@media (max-width: 760px) {
  .rh-dashboard-grid,
  .rh-migration-route {
    grid-template-columns: 1fr;
  }

  .rh-dashboard-tabs {
    border-radius: 16px;
  }

  .rh-infra-map {
    min-height: 250px;
  }

  .rh-node-cdn { top: 22px; left: 18px; }
  .rh-node-cache { top: 22px; right: 18px; }
  .rh-node-cloud { bottom: 22px; left: 20px; }
  .rh-node-wpcli { right: 20px; bottom: 22px; }

  .rh-security-console {
    align-items: flex-start;
  }
}

/* Agency page contrast repair */
.agency-hero.page-hero {
  background:
    radial-gradient(circle at 78% 18%, rgba(241, 90, 36, 0.12), transparent 30%),
    linear-gradient(135deg, #111820 0%, #0f151c 100%) !important;
}

.agency-hero.page-hero h1 {
  color: #ffffff !important;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.agency-hero.page-hero .lead {
  color: #d8e0ea !important;
}

.agency-hero .btn-secondary {
  background: #ffffff !important;
  border-color: #ffffff !important;
  color: #111820 !important;
}

.agency-plan-card.card.card-dark {
  background:
    radial-gradient(circle at 84% 12%, rgba(241, 90, 36, 0.2), transparent 30%),
    linear-gradient(145deg, #151c24 0%, #10161d 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  box-shadow: 0 24px 64px rgba(17, 22, 28, 0.2) !important;
}

.agency-plan-card .section-kicker {
  color: #ff8a55 !important;
}

.agency-plan-card .agency-plan-was {
  margin-bottom: 4px;
  color: rgba(237, 241, 245, 0.72) !important;
  font-size: 13px;
  text-decoration: line-through;
}

.agency-plan-card .agency-plan-note,
.agency-plan-card span[style*="var(--muted-2)"] {
  color: #d8e0ea !important;
  font-size: 13px;
}

.agency-plan-card .plan-divider {
  background: rgba(255, 255, 255, 0.18) !important;
}

.agency-plan-card .plan-features li {
  color: #f3f7fb !important;
}

.agency-plan-card .plan-features li::before {
  background: rgba(63, 185, 80, 0.24) !important;
  color: #54df70 !important;
}

.agency-migration-steps .migration-step {
  background: #ffffff !important;
  border: 1px solid #c9d2dc !important;
  box-shadow: 0 10px 28px rgba(17, 22, 28, 0.045);
}

.agency-migration-steps .migration-step:hover {
  border-color: rgba(241, 90, 36, 0.36) !important;
  background: #fffaf6 !important;
}

.agency-migration-steps .migration-title {
  color: #10151b !important;
}

.agency-migration-steps .migration-desc {
  color: #5b6876 !important;
}

.agency-migration-steps .migration-num {
  background: rgba(241, 90, 36, 0.12) !important;
  border-color: rgba(241, 90, 36, 0.22) !important;
  color: #d84f1d !important;
}

/* Pricing page professional hero and readability repair */
.pricing-hero {
  position: relative;
  overflow: hidden;
  padding: 118px 0 92px;
  background:
    radial-gradient(circle at 18% 18%, rgba(241, 90, 36, 0.18), transparent 28%),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.07), transparent 24%),
    linear-gradient(135deg, #111820 0%, #0d131a 100%);
  color: #fff;
}

.pricing-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.pricing-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.72fr);
  gap: clamp(42px, 7vw, 84px);
  align-items: center;
}

.pricing-hero-copy {
  max-width: 760px;
}

.pricing-offer-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border: 1px solid rgba(241, 90, 36, 0.28);
  border-radius: 999px;
  background: rgba(241, 90, 36, 0.12);
  color: #ff8a55;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-offer-pill span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.14);
}

.pricing-hero h1 {
  max-width: 760px;
  margin: 22px 0 20px;
  color: #fff !important;
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: 0;
}

.pricing-hero p {
  max-width: 660px;
  margin: 0;
  color: #d8e0ea !important;
  font-size: clamp(17px, 1.8vw, 21px);
  line-height: 1.62;
}

.pricing-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.pricing-hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pricing-hero-trust span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(237, 241, 245, 0.86);
  font-size: 13px;
  font-weight: 750;
}

.pricing-sale-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-top: 3px solid #f15a24;
  border-radius: 12px;
  background: #18212a;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.pricing-sale-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-sale-top > div {
  display: grid;
  gap: 7px;
}

.pricing-sale-top span {
  color: rgba(237, 241, 245, 0.68);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-sale-top strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

.pricing-sale-top small {
  flex-shrink: 0;
  padding-bottom: 5px;
  color: #ff9a6d;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}

.pricing-sale-list {
  display: grid;
  gap: 12px;
}

.pricing-sale-list div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
}

.pricing-sale-list .is-featured {
  border-color: rgba(241, 90, 36, 0.5);
  box-shadow: inset 3px 0 0 #f15a24;
  background: rgba(241, 90, 36, 0.09);
}

.pricing-sale-list span {
  color: #fff;
  font-size: 14px;
  font-weight: 850;
}

.pricing-sale-list strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.2;
}

.pricing-sale-list small {
  grid-column: 1 / -1;
  color: rgba(237, 241, 245, 0.7);
  font-size: 12px;
  line-height: 1.45;
}

.pricing-sale-list small b {
  color: #ff9a6d;
  font-weight: 850;
}

.pricing-sale-card > p {
  margin-top: 18px;
  color: rgba(237, 241, 245, 0.74) !important;
  font-size: 14px;
  line-height: 1.55;
}

.pricing-page .price-card:not(.featured) .plan-name,
.pricing-page .price-card:not(.featured) .plan-price,
.pricing-page .price-card:not(.featured) .plan-features li,
.pricing-page .price-card:not(.featured) .plan-desc,
.pricing-page .price-card:not(.featured) .plan-annual-note {
  color: #10151b !important;
}

.pricing-page .price-card:not(.featured) .plan-desc,
.pricing-page .price-card:not(.featured) .plan-annual-note,
.pricing-page .price-card:not(.featured) .plan-price small {
  color: #5b6876 !important;
}

.pricing-page .price-card.featured .plan-name,
.pricing-page .price-card.featured .plan-price {
  color: #ffffff !important;
}

.pricing-page .price-card.featured .promo-was,
.pricing-page .price-card.featured .plan-desc,
.pricing-page .price-card.featured .plan-annual-note,
.pricing-page .price-card.featured .plan-price small,
.pricing-page .price-card.featured .plan-features li {
  color: #d8e0ea !important;
}

.pricing-page .faq details {
  border-color: #dde3e9 !important;
  background: #ffffff !important;
  box-shadow: 0 8px 22px rgba(17, 22, 28, 0.045) !important;
}

.pricing-page .faq summary {
  color: #10151b !important;
}

.pricing-page .faq details p {
  color: #566371 !important;
}

.pricing-page .compare-table td,
.pricing-page .compare-table th {
  color: #10151b;
}

.pricing-page .compare-table th.col-r {
  color: #fff !important;
}

@media (max-width: 900px) {
  .pricing-hero {
    padding: 92px 0 78px;
  }

  .pricing-hero-grid {
    grid-template-columns: 1fr;
  }

  .pricing-sale-card {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  .pricing-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .pricing-sale-card {
    padding: 22px;
  }

  .pricing-sale-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .pricing-sale-list div {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 14px;
  }

  .pricing-sale-list strong {
    font-size: 16px;
    white-space: nowrap;
  }
}

/* Final inner-page readability and homepage dashboard scale pass */
.page-hero {
  background:
    radial-gradient(circle at 82% 16%, rgba(241, 90, 36, 0.12), transparent 30%),
    linear-gradient(135deg, #111820 0%, #0f151c 100%) !important;
}

.page-hero h1 {
  color: #ffffff !important;
}

.page-hero .lead {
  color: #d8e0ea !important;
}

.page-hero .eyebrow {
  color: #ff7a3d !important;
}

.section:not(.bg-dark) .migration-steps .migration-step {
  background: #ffffff !important;
  border: 1px solid #cfd7e1 !important;
  box-shadow: 0 10px 28px rgba(17, 22, 28, 0.045);
}

.section:not(.bg-dark) .migration-steps .migration-step:hover {
  border-color: rgba(241, 90, 36, 0.34) !important;
  background: #fffaf6 !important;
}

.section:not(.bg-dark) .migration-steps .migration-title {
  color: #10151b !important;
}

.section:not(.bg-dark) .migration-steps .migration-desc {
  color: #5b6876 !important;
}

.section:not(.bg-dark) .migration-steps .migration-num {
  background: rgba(241, 90, 36, 0.12) !important;
  border-color: rgba(241, 90, 36, 0.22) !important;
  color: #d84f1d !important;
}

.section:not(.bg-dark) .card:not(.card-dark) h3,
.section:not(.bg-dark) .card:not(.card-dark) h4 {
  color: #10151b !important;
}

.section:not(.bg-dark) .card:not(.card-dark) p,
.section:not(.bg-dark) .card:not(.card-dark) li,
.section:not(.bg-dark) .card:not(.card-dark) .muted {
  color: #596776 !important;
}

.contact-info-list {
  display: grid;
  gap: 16px;
}

.contact-info-card.card {
  display: flex !important;
  min-height: auto !important;
  align-items: flex-start !important;
  gap: 16px !important;
  padding: 22px 24px !important;
  border-radius: 14px !important;
}

.contact-info-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(241, 90, 36, 0.16);
  border-radius: 10px;
  background: rgba(241, 90, 36, 0.08);
  color: var(--orange);
}

.contact-info-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-info-card h3 {
  margin: 0 0 6px !important;
  color: #10151b !important;
  font-size: 17px !important;
  line-height: 1.25 !important;
}

.contact-info-card p,
.contact-info-card a {
  font-size: 15px !important;
  line-height: 1.55 !important;
}

.legal-body h2,
.legal-body h3 {
  color: #10151b !important;
}

.legal-body p,
.legal-body li,
.legal-body ul {
  color: #566371 !important;
}

.rh-hero-media {
  min-height: 500px !important;
}

.rh-platform-dashboard {
  max-width: 470px !important;
  margin-left: auto;
}

.rh-platform-dashboard .dashboard {
  border-radius: 18px !important;
  box-shadow: 0 24px 64px rgba(17, 22, 28, 0.22) !important;
}

.rh-platform-dashboard .dash-topbar {
  padding: 12px 15px !important;
}

.rh-platform-dashboard .dash-body {
  gap: 10px !important;
  padding: 16px !important;
}

.rh-dashboard-tabs {
  gap: 5px !important;
  padding: 5px !important;
}

.rh-dashboard-tabs span {
  min-height: 24px !important;
  padding: 0 9px !important;
  font-size: 10px !important;
}

.rh-platform-dashboard .dash-metrics {
  gap: 8px !important;
}

.rh-platform-dashboard .dash-metric {
  min-height: 72px !important;
  padding: 11px !important;
}

.rh-platform-dashboard .dash-metric-label {
  font-size: 9px !important;
}

.rh-platform-dashboard .dash-metric-value {
  margin-top: 4px !important;
  font-size: 19px !important;
}

.rh-dashboard-grid {
  gap: 10px !important;
}

.rh-stack-panel,
.rh-dashboard-card {
  padding: 15px !important;
  border-radius: 12px !important;
}

.rh-stack-panel {
  gap: 13px !important;
}

.rh-stack-panel span,
.rh-dashboard-card > span {
  font-size: 9px !important;
}

.rh-stack-panel strong {
  max-width: 290px !important;
  font-size: 18px !important;
  line-height: 1.12 !important;
}

.rh-stack-tags {
  gap: 6px !important;
}

.rh-stack-tags span {
  min-height: 24px !important;
  padding: 0 9px !important;
  font-size: 10px !important;
}

.rh-dashboard-card ul {
  gap: 7px !important;
}

.rh-dashboard-card li {
  font-size: 11px !important;
  padding-left: 15px !important;
}

.rh-platform-dashboard .dash-sites {
  gap: 7px !important;
}

.rh-platform-dashboard .dash-site-row {
  gap: 10px !important;
  padding: 9px 11px !important;
  border-radius: 10px !important;
}

.rh-platform-dashboard .dash-site-row strong {
  font-size: 12px !important;
}

.rh-platform-dashboard .dash-site-row small {
  font-size: 11px !important;
}

.site-badge {
  padding: 4px 8px !important;
  font-size: 10px !important;
}

.rh-hero .rh-float-label {
  min-height: 32px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  box-shadow: 0 10px 24px rgba(17, 22, 28, 0.12) !important;
}

.rh-hero .rh-float-backups {
  top: 12% !important;
  left: -16px !important;
}

.rh-hero .rh-float-malware {
  top: 45% !important;
  right: -18px !important;
}

.rh-hero .rh-float-cdn {
  bottom: 13% !important;
  left: 18px !important;
}

@media (max-width: 1040px) {
  .rh-platform-dashboard {
    max-width: 520px !important;
    margin-inline: auto;
  }

  .rh-hero .rh-float-label {
    display: none !important;
  }
}

@media (max-width: 520px) {
  .rh-home-currency-bar {
    width: 100%;
    max-width: 360px;
    flex-direction: column;
    align-items: stretch;
    border-radius: 18px;
  }

  .rh-home-currency-bar > span {
    padding: 6px 8px 0;
    text-align: center;
  }

  .rh-home-currency-options {
    justify-content: center;
  }
}

/* Affiliate page and shared footer final pass */
.affiliate-page .affiliate-hero {
  position: relative;
  overflow: hidden;
  padding: 150px 0 96px;
  background:
    radial-gradient(circle at 82% 22%, rgba(255, 90, 0, 0.1), transparent 34%),
    linear-gradient(135deg, #fff8f5 0%, #ffffff 48%, #f5f8fb 100%);
}

.affiliate-page .affiliate-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
}

.affiliate-page .affiliate-hero-copy {
  max-width: 690px;
}

.affiliate-page .affiliate-hero h1 {
  margin: 24px 0 24px;
  color: #111820 !important;
  font-size: clamp(52px, 6.6vw, 96px);
  line-height: 0.98;
  letter-spacing: 0;
}

.affiliate-page .affiliate-hero .lead {
  max-width: 610px;
  color: #526170 !important;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.65;
}

.affiliate-commission-panel {
  padding: clamp(34px, 4vw, 48px);
  border: 1px solid rgba(17, 24, 32, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 80px rgba(17, 24, 32, 0.12);
}

.affiliate-commission-panel span:first-child {
  display: inline-flex;
  margin-bottom: 18px;
  color: #f15a24;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.affiliate-commission-panel strong {
  display: block;
  color: #f15a24;
  font-family: var(--font-display);
  font-size: clamp(86px, 10vw, 142px);
  font-weight: 900;
  line-height: 0.9;
}

.affiliate-commission-panel p {
  max-width: 380px;
  margin: 22px 0 26px;
  color: #3f4f61;
  font-size: 17px;
  line-height: 1.65;
}

.affiliate-mini-list {
  display: grid;
  gap: 10px;
}

.affiliate-mini-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #15202b;
  font-size: 14px;
  font-weight: 850;
}

.affiliate-mini-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2fb65d;
  box-shadow: 0 0 0 5px rgba(47, 182, 93, 0.12);
}

.affiliate-page .section-heading p {
  max-width: 680px;
  margin: 16px auto 0;
  color: #5d6d7d !important;
  font-size: 17px;
  line-height: 1.7;
}

.affiliate-application-card {
  padding: clamp(28px, 4vw, 42px) !important;
}

.rh-footer {
  background: #0d131a !important;
  color: #dbe7f3 !important;
}

.rh-footer .footer-main {
  width: min(1680px, calc(100% - 120px));
  grid-template-columns: minmax(260px, 1.45fr) repeat(5, minmax(145px, 1fr)) !important;
  gap: clamp(44px, 5vw, 86px) !important;
  padding: 86px 0 70px !important;
  border-top: 0 !important;
}

.rh-footer .footer-logo-wrap img {
  height: 58px !important;
  max-width: 280px !important;
}

.rh-footer .footer-tagline {
  max-width: 330px !important;
  color: #c8d7e6 !important;
  font-size: 18px !important;
  line-height: 1.55 !important;
}

.rh-footer .footer-col {
  gap: 20px !important;
}

.rh-footer .footer-col h5 {
  margin: 0 0 6px !important;
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
}

.rh-footer .footer-col a {
  color: #e8f1fb !important;
  font-size: 19px !important;
  line-height: 1.4 !important;
}

.rh-footer .footer-col a:hover {
  color: #ff6a2a !important;
}

.rh-footer .footer-bottom {
  width: min(1680px, calc(100% - 120px));
  padding: 32px 0 44px !important;
  border-top: 1px solid rgba(255, 255, 255, 0.16) !important;
  color: #c8d7e6 !important;
  font-size: 17px !important;
}

@media (max-width: 1180px) {
  .affiliate-page .affiliate-hero-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-commission-panel {
    max-width: 620px;
  }

  .rh-footer .footer-main {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    width: min(1120px, calc(100% - 64px));
  }

  .rh-footer .footer-brand {
    grid-column: 1 / -1;
  }

  .rh-footer .footer-bottom {
    width: min(1120px, calc(100% - 64px));
  }
}

@media (max-width: 700px) {
  .affiliate-page .affiliate-hero {
    padding: 118px 0 72px;
  }

  .affiliate-page .affiliate-hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .rh-footer .footer-main,
  .rh-footer .footer-bottom {
    width: calc(100% - 36px);
  }

  .rh-footer .footer-main {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    padding: 58px 0 42px !important;
  }

  .rh-footer .footer-col a {
    font-size: 17px !important;
  }

  .rh-footer .footer-bottom {
    align-items: flex-start !important;
  }
}

/* WordPress Hosting and Security page card readability */
.wordpress-page .wp-performance-card {
  background: #ffffff !important;
  border-color: #d5dde5 !important;
  box-shadow: 0 20px 58px rgba(17, 24, 32, 0.1) !important;
}

.wordpress-page .wp-performance-card .badge {
  color: #20a84a !important;
}

.wordpress-page .wp-performance-card .dash-metric {
  min-height: 104px;
  padding: 18px 20px;
  border: 1px solid #edf1f5;
  border-radius: 14px;
  background: #fbfdff;
}

.wordpress-page .wp-performance-card .dash-metric-label {
  color: #65717d !important;
  font-size: 13px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
}

.wordpress-page .wp-performance-card .dash-metric-value {
  margin-top: 12px;
  color: #111820 !important;
  font-size: clamp(24px, 2.2vw, 34px) !important;
  line-height: 1.05 !important;
}

.wordpress-page .wp-performance-card .dash-metric-value.orange {
  color: #f15a24 !important;
}

.wordpress-page .wp-performance-card .dash-metric-value.green {
  color: #2fb65d !important;
}

.wordpress-page .wp-performance-card .wp-card-note {
  margin: 18px 0 0 !important;
  color: #5d6d7d !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
}

.wordpress-page .wp-security-card,
.security-page .security-feature-card {
  min-height: 280px;
  padding: clamp(28px, 3vw, 42px) !important;
  background: #ffffff !important;
  border: 1px solid #d5dde5 !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.16) !important;
}

.wordpress-page .wp-security-card h3,
.security-page .security-feature-card h3 {
  margin-top: 26px !important;
  color: #111820 !important;
  font-size: clamp(24px, 2.1vw, 32px) !important;
  line-height: 1.12 !important;
}

.wordpress-page .wp-security-card p,
.wordpress-page .wp-security-card .muted,
.security-page .security-feature-card p,
.security-page .security-feature-card .muted {
  margin-top: 14px !important;
  color: #4f6072 !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
}

.wordpress-page .bg-dark .section-heading h2,
.security-page .bg-dark .section-heading h2 {
  color: #ffffff !important;
}

.wordpress-page .bg-dark .section-heading .lead,
.security-page .bg-dark .section-heading .lead {
  color: #dce6f0 !important;
}

@media (max-width: 760px) {
  .wordpress-page .wp-performance-card .dash-metric {
    min-height: 88px;
  }

  .wordpress-page .wp-security-card,
  .security-page .security-feature-card {
    min-height: auto;
  }
}

/* Four-plan pricing tables */
.pricing-page .pricing-grid-4,
.rh-pricing-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 18px !important;
}

.pricing-page .pricing-grid-4 .price-card,
.rh-pricing-grid-4 .rh-price-card {
  min-height: auto !important;
  padding: 26px !important;
}

.pricing-page .pricing-grid-4 .plan-name,
.rh-pricing-grid-4 .rh-price-card h3 {
  font-size: clamp(22px, 1.7vw, 28px) !important;
  line-height: 1.08 !important;
}

.pricing-page .pricing-grid-4 .plan-desc,
.rh-pricing-grid-4 .rh-plan-for {
  min-height: 68px;
  font-size: 14px !important;
}

.pricing-page .pricing-grid-4 .plan-price,
.rh-pricing-grid-4 .rh-price {
  font-size: clamp(40px, 3.8vw, 54px) !important;
}

.plan-ribbon {
  margin: -26px -26px 20px;
  padding: 10px 14px;
  border-radius: 16px 16px 0 0;
  background: #f15a24;
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-specs {
  display: grid;
  gap: 10px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  color: #1f2933;
  font-size: 14px;
}

.plan-specs li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.plan-specs li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #2fb65d;
  box-shadow: 0 0 0 4px rgba(47, 182, 93, 0.12);
}

.price-card.featured .plan-specs {
  color: #edf3f8;
}

.plan-full-features {
  gap: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 1.35;
}

.plan-full-features li {
  align-items: flex-start;
}

.plan-full-features li::before {
  flex: 0 0 auto;
  margin-top: 6px;
}

.rh-plan-full-features {
  gap: 9px !important;
  margin-bottom: 26px !important;
  font-size: 13px !important;
  line-height: 1.35 !important;
}

.rh-plan-full-features li {
  align-items: flex-start;
}

.rh-plan-full-features li::before {
  flex: 0 0 auto;
  margin-top: 4px;
}

.savings-badge {
  border: 1px solid rgba(241, 90, 36, 0.32) !important;
  background: linear-gradient(180deg, #fff7f2, #ffe8db) !important;
  color: #b83b11 !important;
  box-shadow: 0 10px 24px rgba(241, 90, 36, 0.16) !important;
  font-weight: 900 !important;
  letter-spacing: 0.02em !important;
}

.price-card.featured .savings-badge,
.rh-price-featured .savings-badge {
  background: rgba(255, 255, 255, 0.12) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.24) !important;
  box-shadow: 0 10px 24px rgba(241, 90, 36, 0.24) !important;
}

.plan-full-features .feature-group-title,
.rh-plan-full-features .feature-group-title {
  display: block !important;
  margin: 15px 0 2px !important;
  padding: 8px 10px !important;
  border-radius: 8px !important;
  background: #f6f8fa !important;
  color: #111820 !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.plan-full-features .feature-group-title:first-child,
.rh-plan-full-features .feature-group-title:first-child {
  margin-top: 0 !important;
}

.plan-full-features .feature-group-title::before,
.rh-plan-full-features .feature-group-title::before {
  display: none !important;
}

.price-card.featured .plan-full-features .feature-group-title,
.rh-price-featured .rh-plan-full-features .feature-group-title {
  background: rgba(255, 255, 255, 0.09) !important;
  color: #ffffff !important;
}

/* Final pricing card polish */
.promo-price-row,
.rh-price-line {
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
}

.rh-price-line .rh-was,
.promo-price-row .promo-was {
  color: #65717d !important;
  font-size: 16px !important;
  font-weight: 850 !important;
  line-height: 1 !important;
  text-decoration-line: line-through !important;
  text-decoration-color: rgba(241, 90, 36, 0.78) !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px !important;
}

.rh-price-featured .rh-price-line .rh-was,
.price-card.featured .promo-price-row .promo-was {
  color: rgba(255, 255, 255, 0.52) !important;
}

.savings-badge {
  min-height: 30px !important;
  padding: 6px 12px !important;
  border-radius: 999px !important;
  font-size: 12px !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  white-space: nowrap !important;
  animation: none !important;
}

.savings-badge span {
  font-weight: 950 !important;
}

.plan-full-features .feature-group-title,
.rh-plan-full-features .feature-group-title {
  padding-left: 10px !important;
}

.plan-full-features .feature-group-title::after,
.rh-plan-full-features .feature-group-title::after {
  display: none !important;
  content: none !important;
}

.plan-feature-toggle {
  margin: 4px 0 22px;
}

.plan-feature-toggle summary {
  cursor: pointer;
  color: #f15a24;
  font-size: 14px;
  font-weight: 900;
}

.plan-feature-group {
  margin-top: 16px;
}

.plan-feature-group h4 {
  margin: 0 0 6px;
  color: #111820;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-feature-group p {
  margin: 0;
  color: #5a6876;
  font-size: 13px;
  line-height: 1.55;
}

.price-card.featured .plan-feature-group h4 {
  color: #fff;
}

.price-card.featured .plan-feature-group p {
  color: #d7e0ea;
}

.compare-wrap {
  overflow-x: auto;
}

.pricing-page .compare-table {
  min-width: 980px;
}

@media (max-width: 1180px) {
  .pricing-page .pricing-grid-4,
  .rh-pricing-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .pricing-page .pricing-grid-4,
  .rh-pricing-grid-4 {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: stretch;
    gap: 14px !important;
    width: auto;
    max-width: none !important;
    margin-inline: -16px;
    padding: 8px 16px 26px;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-inline: contain;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-page .pricing-grid-4::-webkit-scrollbar,
  .rh-pricing-grid-4::-webkit-scrollbar {
    display: none;
  }

  .pricing-page .pricing-grid-4 .price-card,
  .rh-pricing-grid-4 .rh-price-card {
    flex: 0 0 min(86vw, 390px);
    width: min(86vw, 390px);
    max-width: min(86vw, 390px);
    scroll-snap-align: center;
    scroll-snap-stop: always;
  }

  .pricing-page .pricing-grid-4 .plan-desc,
  .rh-pricing-grid-4 .rh-plan-for {
    min-height: 0;
  }
}

/* Mobile pricing carousel controls */
.plan-carousel-toolbar {
  display: none;
}

@media (max-width: 680px) {
  .plan-carousel-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 18px 0 4px;
  }

  .plan-carousel-status {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
  }

  .plan-carousel-count {
    color: #5d6874;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
  }

  .plan-carousel-dots {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .plan-carousel-dot {
    width: 7px;
    height: 7px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #c9d0d7;
    box-shadow: none;
    cursor: pointer;
    transition: width 180ms ease, border-radius 180ms ease, background-color 180ms ease;
  }

  .plan-carousel-dot.is-active {
    width: 22px;
    border-radius: 999px;
    background: #f15a24;
  }

  .plan-carousel-actions {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .plan-carousel-arrow {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #d3dae1;
    border-radius: 50%;
    background: #ffffff;
    color: #111820;
    box-shadow: 0 7px 18px rgba(17, 24, 32, 0.08);
    cursor: pointer;
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
  }

  .plan-carousel-arrow:active {
    transform: scale(0.95);
  }

  .plan-carousel-arrow:focus-visible,
  .plan-carousel-dot:focus-visible {
    outline: 3px solid rgba(241, 90, 36, 0.28);
    outline-offset: 3px;
  }

  .plan-carousel-arrow:disabled {
    color: #aeb6bf;
    border-color: #e3e7eb;
    box-shadow: none;
    cursor: default;
  }
}

/* Shared currency switcher for pricing tables */
.currency-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.currency-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.currency-code {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
}

/* Homepage pricing placement and presentation */
.homepage-pricing-section {
  padding: 88px 0 104px;
  border-top: 1px solid #e2e7eb;
  border-bottom: 1px solid #e2e7eb;
  background: #f5f7f8 !important;
}

.homepage-pricing-header {
  display: grid;
  grid-template-columns: minmax(0, 720px) auto;
  align-items: end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 36px;
}

.homepage-pricing-copy .section-kicker {
  margin-bottom: 14px;
}

.homepage-pricing-copy h2 {
  margin: 0 0 16px;
  color: #111820;
  font-size: 46px;
  line-height: 1.08;
  letter-spacing: 0;
}

.homepage-pricing-copy p {
  max-width: 680px;
  margin: 0;
  color: #52606d !important;
  font-size: 17px;
  line-height: 1.65;
}

.homepage-pricing-header .currency-bar {
  justify-content: flex-end;
  margin: 0 0 4px;
}

.homepage-pricing-assurance {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 30px;
  border-top: 1px solid #dce2e7;
  border-bottom: 1px solid #dce2e7;
  background: rgba(255, 255, 255, 0.72);
}

.homepage-pricing-assurance > div {
  display: grid;
  gap: 3px;
  padding: 17px 22px;
  border-right: 1px solid #dce2e7;
}

.homepage-pricing-assurance > div:last-child {
  border-right: 0;
}

.homepage-pricing-assurance strong {
  color: #111820;
  font-size: 14px;
  line-height: 1.2;
}

.homepage-pricing-assurance span {
  color: #63707c;
  font-size: 12px;
  line-height: 1.35;
}

.homepage-pricing-section .pricing-grid-4 {
  align-items: stretch;
}

.homepage-pricing-section .price-card {
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(17, 24, 32, 0.07);
}

.homepage-pricing-section .price-card.featured {
  box-shadow: 0 12px 38px rgba(17, 24, 32, 0.18), 0 0 0 1px #f15a24;
}

.homepage-pricing-section .plan-ribbon {
  border-radius: 7px 7px 0 0;
}

@media (max-width: 980px) {
  .homepage-pricing-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 24px;
  }

  .homepage-pricing-header .currency-bar {
    justify-content: flex-start;
    margin: 0;
  }

  .homepage-pricing-assurance {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .homepage-pricing-assurance > div:nth-child(2) {
    border-right: 0;
  }

  .homepage-pricing-assurance > div:nth-child(-n + 2) {
    border-bottom: 1px solid #dce2e7;
  }
}

@media (max-width: 680px) {
  .homepage-pricing-section {
    padding: 64px 0 72px;
  }

  .homepage-pricing-header {
    gap: 22px;
    margin-bottom: 28px;
  }

  .homepage-pricing-copy h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .homepage-pricing-copy p {
    font-size: 16px;
  }

  .homepage-pricing-header .currency-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .homepage-pricing-assurance {
    margin-bottom: 18px;
  }

  .homepage-pricing-assurance > div {
    padding: 14px 12px;
  }
}

/* Affiliate paid-traffic funnel */
.affiliate-funnel-page {
  overflow: clip;
  background: #ffffff;
}

.affiliate-funnel-hero {
  padding: 88px 0 90px;
  border-bottom: 1px solid #dde3e8;
  background: #f7f5f2;
}

.affiliate-funnel-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(560px, 1.08fr);
  align-items: start;
  gap: 68px;
}

.affiliate-funnel-copy {
  position: sticky;
  top: 112px;
  padding-top: 14px;
}

.affiliate-eyebrow,
.affiliate-dark-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #d94e1b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.affiliate-eyebrow::before,
.affiliate-dark-kicker::before {
  content: "";
  width: 22px;
  height: 2px;
  background: #f15a24;
}

.affiliate-funnel-copy h1 {
  max-width: 670px;
  margin: 24px 0 24px;
  color: #101820;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

.affiliate-hero-lead {
  max-width: 620px;
  margin: 0 0 28px;
  color: #4e5c69;
  font-size: 18px;
  line-height: 1.68;
}

.affiliate-commission-lockup {
  display: flex;
  align-items: flex-end;
  gap: 22px;
  margin: 0 0 26px;
  padding: 22px 0;
  border-top: 1px solid #d7dce0;
  border-bottom: 1px solid #d7dce0;
}

.affiliate-commission-lockup > div {
  display: grid;
  gap: 3px;
}

.affiliate-commission-lockup span {
  color: #8b3a1e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.affiliate-commission-lockup strong {
  color: #f15a24;
  font-family: var(--font-display);
  font-size: 82px;
  font-weight: 900;
  line-height: 0.9;
}

.affiliate-commission-lockup .affiliate-commission-dual {
  font-size: clamp(42px, 4.2vw, 58px);
  line-height: 0.98;
  white-space: nowrap;
}

.affiliate-commission-lockup .affiliate-commission-dual small {
  font-size: 0.38em;
  font-weight: 800;
  text-transform: lowercase;
}

.affiliate-commission-lockup p {
  max-width: 190px;
  margin: 0 0 7px;
  color: #25313c;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.affiliate-hero-points {
  display: grid;
  gap: 11px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.affiliate-hero-points li {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #26323d;
  font-size: 15px;
  font-weight: 750;
}

.affiliate-hero-points li::before {
  content: "\2713";
  display: grid;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  place-items: center;
  border-radius: 50%;
  background: #dff5e6;
  color: #17883d;
  font-size: 11px;
  font-weight: 900;
}

.affiliate-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
}

.affiliate-text-link {
  color: #273440;
  font-size: 15px;
  font-weight: 850;
  text-decoration: underline;
  text-decoration-color: rgba(241, 90, 36, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.affiliate-text-link:hover {
  color: #d94e1b;
}

.affiliate-review-note {
  margin: 14px 0 0;
  color: #687581;
  font-size: 13px;
  font-weight: 650;
}

.affiliate-lead-card {
  padding: 38px;
  border: 1px solid #d8dee4;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(16, 24, 32, 0.12);
}

.affiliate-form-heading {
  margin-bottom: 26px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e2e6ea;
}

.affiliate-form-heading > span {
  color: #d94e1b;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.affiliate-form-heading h2 {
  margin: 9px 0 9px;
  color: #101820;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: 0;
}

.affiliate-form-heading p {
  margin: 0;
  color: #5d6975;
  font-size: 14px;
  line-height: 1.55;
}

.affiliate-lead-form {
  display: grid;
  gap: 21px;
}

#affiliate-form {
  scroll-margin-top: 112px;
}

.affiliate-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.affiliate-field {
  display: grid;
  gap: 8px;
}

#affiliate-platform-other-field {
  grid-column: 1 / -1;
}

#affiliate-platform-other-field[hidden] {
  display: none;
}

.affiliate-field label,
.affiliate-channel-fieldset legend {
  color: #1e2933;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.affiliate-form-grid .affiliate-field:nth-child(n + 5) label {
  min-height: 36px;
}

.affiliate-field input,
.affiliate-field select,
.affiliate-field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cdd5dc;
  border-radius: 6px;
  outline: none;
  background: #fbfcfd;
  color: #18212a;
  font: 500 15px var(--font-sans);
  line-height: 1.4;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.affiliate-field textarea {
  min-height: 96px;
  resize: vertical;
}

.affiliate-field input::placeholder,
.affiliate-field textarea::placeholder {
  color: #84909b;
}

.affiliate-field input:focus,
.affiliate-field select:focus,
.affiliate-field textarea:focus {
  border-color: #f15a24;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(241, 90, 36, 0.12);
}

.affiliate-lead-form.was-validated .affiliate-field input:invalid,
.affiliate-lead-form.was-validated .affiliate-field select:invalid,
.affiliate-lead-form.was-validated .affiliate-field textarea:invalid {
  border-color: #c8421a;
  background: #fff8f5;
}

.affiliate-lead-form.was-validated .affiliate-channel-fieldset:has(input:invalid) .affiliate-channel-grid {
  padding: 4px;
  border: 1px solid #c8421a;
  border-radius: 6px;
  background: #fff8f5;
}

.affiliate-channel-fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

.affiliate-channel-fieldset legend {
  margin-bottom: 10px;
}

.affiliate-channel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.affiliate-channel-grid label {
  display: flex;
  min-height: 43px;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border: 1px solid #d7dde2;
  border-radius: 6px;
  background: #f8fafb;
  color: #31404d;
  cursor: pointer;
  font-size: 12px;
  font-weight: 750;
}

.affiliate-channel-grid label:has(input:checked) {
  border-color: #f15a24;
  background: #fff3ed;
  color: #9d3713;
}

.affiliate-channel-grid input {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin: 0;
  accent-color: #f15a24;
}

.affiliate-submit {
  width: 100%;
  min-height: 56px;
  justify-content: center;
  border-radius: 6px;
  font-size: 15px;
}

.affiliate-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.affiliate-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border: 1px solid #d7dde2;
  border-radius: 6px;
  background: #f8fafb;
  color: #4d5a66;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.55;
}

.affiliate-consent input {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin: 1px 0 0;
  accent-color: #f15a24;
}

.affiliate-consent > span > a {
  color: #e94b16;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(233, 75, 22, 0.55);
  text-underline-offset: 2px;
}

.affiliate-consent > span > a:hover,
.affiliate-consent > span > a:focus-visible {
  color: #b9360f;
  text-decoration-color: currentColor;
}

.affiliate-consent .affiliate-consent-plain {
  color: #101820;
  font-weight: 400;
  text-decoration: none;
}

.affiliate-lead-form.was-validated .affiliate-consent:has(input:invalid) {
  border-color: #c8421a;
  background: #fff8f5;
  color: #7f2f16;
}

.affiliate-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.affiliate-form-terms,
.affiliate-form-status {
  margin: -7px 0 0;
  color: #6b7782;
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.affiliate-form-terms a {
  color: #a73c16;
  text-decoration: underline;
}

.affiliate-form-status:not(:empty) {
  margin-top: 0;
  padding: 11px 12px;
  border: 1px solid #f0c3b3;
  border-radius: 6px;
  background: #fff4ef;
  color: #8d3211;
  font-size: 13px;
  font-weight: 750;
}

.affiliate-form-status.is-success:not(:empty) {
  border-color: #b8dfc2;
  background: #effaf2;
  color: #176a32;
}

.affiliate-form-status.is-error:not(:empty) {
  border-color: #efb7a5;
  background: #fff1ec;
  color: #8d3211;
}

.affiliate-proof-strip {
  background: #101820;
  color: #ffffff;
}

.affiliate-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.affiliate-proof-grid > div {
  display: grid;
  gap: 4px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.affiliate-proof-grid > div:last-child {
  border-right: 0;
}

.affiliate-proof-grid strong {
  color: #ffffff;
  font-size: 21px;
  line-height: 1.2;
}

.affiliate-proof-grid span {
  color: #bcc8d3;
  font-size: 13px;
}

.affiliate-funnel-section {
  padding: 96px 0;
  background: #ffffff;
  scroll-margin-top: 96px;
}

.affiliate-section-heading {
  max-width: 760px;
  margin-bottom: 46px;
}

.affiliate-section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.affiliate-section-heading.center .section-kicker {
  justify-content: center;
}

.affiliate-section-heading h2,
.affiliate-product-band h2,
.affiliate-audience-section h2,
.affiliate-faq-intro h2,
.affiliate-final-cta h2 {
  margin: 0 0 16px;
  letter-spacing: 0;
}

.affiliate-section-heading h2,
.affiliate-audience-section h2,
.affiliate-faq-intro h2 {
  color: #111820;
  font-size: 48px;
  line-height: 1.08;
}

.affiliate-section-heading > p,
.affiliate-faq-intro > p {
  max-width: 680px;
  margin: 0;
  color: #5b6874;
  font-size: 17px;
  line-height: 1.65;
}

.affiliate-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.affiliate-benefit-grid article {
  min-height: 250px;
  padding: 30px;
  border: 1px solid #dce2e7;
  border-radius: 8px;
  background: #f8fafb;
}

.affiliate-card-number {
  display: block;
  margin-bottom: 46px;
  color: #d94e1b;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.affiliate-benefit-grid h3 {
  margin: 0 0 12px;
  color: #111820;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0;
}

.affiliate-benefit-grid p {
  margin: 0;
  color: #5c6975;
  font-size: 15px;
  line-height: 1.65;
}

.affiliate-product-band {
  padding: 96px 0;
  background: #101820;
  color: #ffffff;
}

.affiliate-product-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.8fr);
  align-items: center;
  gap: 92px;
}

.affiliate-dark-kicker {
  color: #ff7a45;
}

.affiliate-product-band h2 {
  max-width: 700px;
  margin-top: 22px;
  color: #ffffff;
  font-size: 48px;
  line-height: 1.08;
}

.affiliate-product-band p {
  max-width: 660px;
  margin: 0 0 28px;
  color: #c5d0da;
  font-size: 17px;
  line-height: 1.65;
}

.affiliate-product-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.affiliate-product-list li {
  display: grid;
  gap: 5px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.affiliate-product-list strong {
  color: #ffffff;
  font-size: 16px;
}

.affiliate-product-list span {
  color: #b7c4cf;
  font-size: 14px;
}

.affiliate-process-section {
  background: #f5f7f8;
}

.affiliate-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid #cfd7dd;
}

.affiliate-process-grid li {
  min-height: 230px;
  padding: 30px 28px;
  border-right: 1px solid #cfd7dd;
}

.affiliate-process-grid li:last-child {
  border-right: 0;
}

.affiliate-process-grid > li > span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  place-items: center;
  border: 1px solid #f15a24;
  border-radius: 50%;
  color: #d94e1b;
  font-size: 13px;
  font-weight: 900;
}

.affiliate-process-grid h3 {
  margin: 0 0 10px;
  color: #111820;
  font-size: 21px;
  letter-spacing: 0;
}

.affiliate-process-grid p {
  margin: 0;
  color: #5e6b77;
  font-size: 14px;
  line-height: 1.6;
}

.affiliate-audience-section {
  padding: 84px 0;
  border-top: 1px solid #e0e5e9;
  border-bottom: 1px solid #e0e5e9;
  background: #ffffff;
}

.affiliate-audience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 0.8fr);
  align-items: center;
  gap: 88px;
}

.affiliate-audience-section h2 {
  max-width: 680px;
  margin-top: 10px;
}

.affiliate-audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid #d7dde2;
}

.affiliate-audience-list span {
  padding: 17px 12px;
  border-right: 1px solid #d7dde2;
  border-bottom: 1px solid #d7dde2;
  color: #27343f;
  font-size: 14px;
  font-weight: 800;
}

.affiliate-audience-list span:nth-child(even) {
  border-right: 0;
}

.affiliate-faq-section {
  background: #f7f5f2;
}

.affiliate-faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.68fr) minmax(520px, 1fr);
  align-items: start;
  gap: 90px;
}

.affiliate-faq-intro {
  position: sticky;
  top: 112px;
}

.affiliate-faq-intro h2 {
  margin-top: 10px;
}

.affiliate-faq-intro .affiliate-text-link {
  display: inline-block;
  margin-top: 22px;
}

.affiliate-faq-list {
  gap: 0;
  border-top: 1px solid #d5dce1;
}

.affiliate-faq-list details {
  border: 0;
  border-bottom: 1px solid #d5dce1;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.affiliate-faq-list summary {
  min-height: 66px;
  padding: 20px 4px;
  color: #16212a;
  font-size: 15px;
  font-weight: 850;
}

.affiliate-faq-list details p {
  padding: 0 36px 22px 4px;
  color: #586672;
  font-size: 14px;
  line-height: 1.65;
}

.affiliate-final-cta {
  padding: 72px 0;
  background: #171e25;
  color: #ffffff;
}

.affiliate-final-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.affiliate-final-cta span {
  display: block;
  margin-bottom: 9px;
  color: #ff8857;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.affiliate-final-cta h2 {
  max-width: 760px;
  color: #ffffff;
  font-size: 38px;
  line-height: 1.12;
}

.affiliate-mobile-cta {
  display: none;
}

@media (max-width: 1120px) {
  .affiliate-funnel-grid,
  .affiliate-product-grid,
  .affiliate-audience-grid,
  .affiliate-faq-grid {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .affiliate-funnel-copy,
  .affiliate-faq-intro {
    position: static;
  }

  .affiliate-funnel-copy {
    max-width: 760px;
  }

  .affiliate-lead-card {
    max-width: 820px;
  }

  .affiliate-product-list,
  .affiliate-audience-list {
    max-width: 760px;
  }

  .affiliate-benefit-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-benefit-grid article {
    min-height: 0;
  }

  .affiliate-card-number {
    margin-bottom: 24px;
  }

  .affiliate-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .affiliate-process-grid li:nth-child(2) {
    border-right: 0;
  }

  .affiliate-process-grid li:nth-child(-n + 2) {
    border-bottom: 1px solid #cfd7dd;
  }
}

@media (max-width: 1450px) {
  .rh-footer .footer-main {
    width: min(1180px, calc(100% - 64px));
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }

  .rh-footer .footer-brand {
    grid-column: 1 / -1;
  }

  .rh-footer .footer-bottom {
    width: min(1180px, calc(100% - 64px));
  }
}

@media (max-width: 760px) {
  .affiliate-funnel-hero {
    padding: 58px 0 64px;
  }

  .affiliate-funnel-grid {
    gap: 38px;
  }

  .affiliate-funnel-copy {
    padding-top: 0;
  }

  .affiliate-funnel-copy h1 {
    margin-top: 18px;
    font-size: 43px;
    line-height: 1.06;
  }

  .affiliate-hero-lead {
    font-size: 16px;
  }

  .affiliate-commission-lockup strong {
    font-size: 70px;
  }

  .affiliate-lead-card {
    padding: 26px 20px;
  }

  .affiliate-form-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .affiliate-field input,
  .affiliate-field select,
  .affiliate-field textarea {
    font-size: 16px;
  }

  .affiliate-form-grid .affiliate-field:nth-child(n + 5) label {
    min-height: 0;
  }

  .affiliate-commission-lockup,
  .affiliate-hero-actions {
    display: none;
  }

  .affiliate-review-note {
    margin-top: 24px;
  }

  .affiliate-form-heading h2 {
    font-size: 28px;
  }

  .affiliate-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .affiliate-proof-grid > div:nth-child(2) {
    border-right: 0;
  }

  .affiliate-proof-grid > div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .affiliate-proof-grid > div {
    padding: 22px 16px;
  }

  .affiliate-funnel-section,
  .affiliate-product-band {
    padding: 70px 0;
  }

  .affiliate-section-heading h2,
  .affiliate-product-band h2,
  .affiliate-audience-section h2,
  .affiliate-faq-intro h2 {
    font-size: 34px;
    line-height: 1.12;
  }

  .affiliate-section-heading {
    margin-bottom: 34px;
  }

  .affiliate-benefit-grid article {
    padding: 24px 22px;
  }

  .affiliate-process-grid {
    grid-template-columns: 1fr;
  }

  .affiliate-process-grid li,
  .affiliate-process-grid li:nth-child(2) {
    min-height: 0;
    padding: 24px 8px;
    border-right: 0;
    border-bottom: 1px solid #cfd7dd;
  }

  .affiliate-process-grid > li > span {
    margin-bottom: 18px;
  }

  .affiliate-audience-section {
    padding: 66px 0;
  }

  .affiliate-audience-list {
    grid-template-columns: 1fr;
  }

  .affiliate-audience-list span,
  .affiliate-audience-list span:nth-child(even) {
    border-right: 0;
  }

  .affiliate-final-cta {
    padding: 60px 0 104px;
  }

  .affiliate-final-cta-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 26px;
  }

  .affiliate-final-cta h2 {
    font-size: 32px;
  }

  .affiliate-mobile-cta {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 90;
    display: flex;
    min-height: 68px;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 10px 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    background: #101820;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
  }

  .affiliate-mobile-cta > div {
    display: grid;
    gap: 1px;
  }

  .affiliate-mobile-cta strong {
    color: #ffffff;
    font-size: 15px;
  }

  .affiliate-mobile-cta span {
    color: #b9c6d1;
    font-size: 11px;
  }

  .affiliate-mobile-cta .btn {
    min-height: 46px;
    padding: 10px 16px;
    border-radius: 6px;
  }
}

@media (max-width: 430px) {
  .affiliate-funnel-copy h1 {
    font-size: 38px;
  }

  .affiliate-commission-lockup {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .affiliate-commission-lockup p {
    max-width: none;
    margin-bottom: 0;
  }

  .affiliate-hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Homepage hero trust line */
.rh-hero-trust-line {
  margin: 24px 0 0;
  color: #5d6975;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.7;
  white-space: nowrap;
}

.rh-hero-trust-line strong {
  color: #27323c;
  font-weight: 850;
}

.rh-hero-trust-line span {
  display: inline !important;
  margin: 0 7px;
  color: #f15a24;
}

@media (max-width: 520px) {
  .rh-hero-trust-line {
    font-size: 13px;
    white-space: normal;
  }

  .rh-hero-trust-line span {
    margin: 0 4px;
  }
}

@media (max-width: 720px) {
  .rh-footer .footer-main {
    width: calc(100% - 36px);
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }
}

@media (max-width: 1100px) {
  .rh-nav-actions {
    margin-left: auto;
  }
}
/* Affiliate application confirmation */
.affiliate-thankyou-page {
  min-height: 68vh;
  background: #fbfaf8;
}

.affiliate-thankyou {
  padding: 96px 0 104px;
}

.affiliate-thankyou-grid {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.affiliate-thankyou-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.affiliate-thankyou-mark {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 26px;
  border: 1px solid #f7b59f;
  border-radius: 50%;
  background: #fff4ef;
  color: #f4511e;
  font-size: 24px;
  font-weight: 800;
}

.affiliate-thankyou-copy .section-kicker {
  margin-bottom: 18px;
}

.affiliate-thankyou-copy h1 {
  max-width: 720px;
  margin: 0 0 22px;
  color: #101820;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
}

.affiliate-thankyou-copy > p {
  max-width: 700px;
  margin: 0;
  color: #51606f;
  font-size: 19px;
  line-height: 1.7;
}

.affiliate-thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

@media (max-width: 820px) {
  .affiliate-thankyou {
    padding: 70px 0 78px;
  }

}

@media (max-width: 560px) {
  .affiliate-thankyou-copy h1 {
    font-size: 42px;
  }

  .affiliate-thankyou-copy > p {
    font-size: 17px;
  }

  .affiliate-thankyou-actions {
    display: grid;
    width: min(100%, 360px);
  }

  .affiliate-thankyou-actions .btn {
    width: 100% !important;
  }
}
