:root {
  /* Brand palette — extracted DIRECTLY from BlueGorilla logo PNG */
  --brand-900: #0c2560;
  --brand-800: #122e73;
  --brand-700: #1a3a88;
  --brand-600: #23448f;
  --brand-500: #2e52a0;
  --brand-400: #355c9e;
  --brand-300: #557ac2;
  --brand-200: #a9b8d8;
  --brand-100: #d7e0f2;
  --brand-50:  #eef3fb;

  /* Accent palette — blue family, NO orange */
  --accent: #008ca5;
  --accent-dark: #006f84;
  --cta: #23448f;
  --cta-dark: #17306b;
  --cta-soft: #eaf0fb;
  --accent-glow: rgba(35, 68, 143, 0.28);
  --cta-glow: rgba(35, 68, 143, 0.34);

  /* Light theme surfaces (clean white + soft blue) */
  --bg: #ffffff;
  --bg-2: #f7f9fc;
  --bg-3: #eef2f8;
  --bg-surface: rgba(255, 255, 255, 0.92);
  --bg-surface-solid: #ffffff;
  --bg-elev: #ffffff;

  --border: #e4eaf2;
  --border-strong: #c8d3e3;

  --text: #0b1a33;
  --text-soft: #1d2b46;
  --text-muted: #52637f;
  --text-dim: #7a8aa6;

  --ok: #0fa166;
  --warn: #d98a00;
  --bad: #d93636;

  /* Polished professional radius (soft, not cartoon rounded) */
  --radius: 10px;
  --radius-lg: 14px;

  /* Crisp, subtle elevation for business SaaS feel */
  --shadow-sm: 0 2px 8px rgba(11, 26, 51, 0.06);
  --shadow-md: 0 12px 30px rgba(11, 26, 51, 0.09);
  --shadow-lg: 0 28px 64px rgba(11, 26, 51, 0.14);
  --shadow-brand: 0 16px 44px rgba(35, 68, 143, 0.26);

  --container: 1240px;
  --header-h: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-soft);
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg-site {
  background:
    radial-gradient(ellipse 1200px 650px at 50% -10%, rgba(46, 85, 160, 0.10), transparent 65%),
    radial-gradient(ellipse 900px 500px at 100% 10%, rgba(0, 164, 166, 0.09), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7f9fc 40%, #ffffff 100%);
  background-attachment: scroll;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  color: var(--text);
  margin: 0 0 0.6em;
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.85rem); letter-spacing: -0.03em; font-weight: 800; }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); letter-spacing: -0.015em; font-weight: 700; }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

a {
  color: var(--cta-dark);
  text-decoration: none;
  transition: color .2s ease, opacity .2s ease;
}
a:hover { color: var(--cta); }

ul { margin: 0; padding: 0; list-style: none; }

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

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

input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -60px; left: 16px; z-index: 9999;
  background: var(--brand-400); color: #fff; padding: 10px 18px;
  border-radius: var(--radius); font-weight: 700;
}
.skip-link:focus { top: 16px; }

.centered { text-align: center; margin-left: auto; margin-right: auto; }
.centered > * { margin-left: auto; margin-right: auto; }

.muted { color: var(--text-muted); }
.muted-light { color: rgba(228, 228, 231, 0.75); }

.accent { color: var(--brand-700); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand-100);
  padding: 8px 16px;
  border: 1px solid var(--border-strong);
  background: rgba(53, 89, 149, 0.12);
  border-radius: var(--radius);
  margin-bottom: 18px;
}
.eyebrow.light {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.section {
  padding: clamp(72px, 9vw, 128px) 0;
  position: relative;
}

.section-dark {
  background:
    linear-gradient(180deg, rgba(10, 22, 46, 0.98) 0%, rgba(15, 31, 63, 0.95) 100%),
    radial-gradient(circle at 20% 0%, rgba(53, 89, 149, 0.18), transparent 50%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}

.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head h2 { margin-top: 8px; margin-bottom: 18px; }
.section-head h2 .accent { color: var(--brand-600); }
.section-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.section-head.light .section-lead { color: rgba(228, 228, 231, 0.8); }
.section-head.light h2 { color: #fff; }

.surface {
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.link-light { color: var(--brand-100); font-weight: 700; }
.link-light:hover { color: #fff; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  min-height: 52px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--brand-100); outline-offset: 3px; }

.btn-primary {
  background: linear-gradient(180deg, var(--cta) 0%, var(--cta-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow-brand);
  border-color: rgba(255, 255, 255, 0.18);
  font-weight: 800;
  letter-spacing: 0.005em;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #3b67b5 0%, var(--cta) 100%);
  box-shadow: 0 18px 48px rgba(35, 68, 143, 0.32);
}

.btn-ghost {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--border-strong);
  font-weight: 600;
}
.btn-ghost:hover {
  background: var(--cta-soft);
  color: var(--cta-dark);
  border-color: var(--brand-200);
}

.btn-outline {
  background: transparent;
  color: var(--cta-dark);
  border: 1.5px solid var(--brand-200);
  font-weight: 700;
}
.btn-outline:hover {
  background: var(--cta-soft);
  border-color: var(--cta);
  color: var(--cta-dark);
}

.btn-lg {
  min-height: 60px;
  padding: 14px 32px;
  font-size: 1.05rem;
}
.btn-full { width: 100%; }

.btn-label { display: inline-flex; align-items: center; gap: 8px; }
.btn-loader {
  display: none;
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  animation: spin 0.7s linear infinite;
}
.btn.is-loading .btn-label { opacity: 0.6; }
.btn.is-loading .btn-loader { display: inline-block; }
.btn.is-loading { pointer-events: none; }

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

/* Header / Nav — GoDaddy-style white sticky header, blue bottom border */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 3px rgba(13, 27, 51, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
  padding-top: 10px;
  padding-bottom: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand img {
  width: clamp(200px, 26vw, 280px);
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(53, 89, 149, 0.22));
}

.nav { display: flex; align-items: center; flex: 1 1 auto; justify-content: center; }
.nav-links {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav-links a {
  display: inline-block;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-soft);
  border-radius: var(--radius);
  transition: background .15s ease, color .15s ease;
}
.nav-links a:hover {
  color: var(--text);
  background: rgba(53, 89, 149, 0.16);
}

.nav-toggle {
  display: none;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span:not(.sr-only) {
  width: 22px; height: 2px; background: var(--text-soft);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 0 0 auto;
}

/* Hero */
.hero {
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 120px);
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(247,249,252,0.88) 42%, rgba(255,255,255,0.35) 72%, rgba(255,255,255,0.12) 100%),
    url("https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=Modern%20clean%20Melbourne%20skyline%20business%20desk%20hero%20image%3A%20silver%20laptop%20open%20on%20white%20marble%20desk%2C%20white%20keyboard%20key%20showing%20.com.au%2C%20cute%20muscular%20blue%20gorilla%20mascot%20figure%20next%20to%20laptop%2C%20small%20green%20plant%20pot%2C%20holographic%20dotted%20wireframe%20world%20map%20floating%20above%20laptop%20with%20glowing%20connection%20nodes%20focused%20on%20Australia%2C%20blue%20tinted%20skyscrapers%20city%20skyline%20soft%20bokeh%20background%2C%20bright%20morning%20light%2C%20light%20airy%20pale%20blue%20atmosphere%2C%20professional%20GoDaddy%20style%20hero%2C%20soft%20depth%20of%20field%2C%20ultra%20high%20definition%2C%20photorealistic&image_size=landscape_16_9") center right / cover no-repeat,
    radial-gradient(circle at 80% 20%, rgba(86, 120, 174, 0.22), transparent 45%),
    radial-gradient(circle at 0% 80%, rgba(53, 89, 149, 0.18), transparent 48%);
  pointer-events: none;
}
@media (max-width: 960px) {
  .hero-bg {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.95) 0%, rgba(247,249,252,0.92) 100%),
      url("https://coresg-normal.trae.ai/api/ide/v1/text_to_image?prompt=Modern%20clean%20Melbourne%20skyline%20business%20desk%20hero%20image%3A%20silver%20laptop%20open%20on%20white%20marble%20desk%2C%20white%20keyboard%20key%20showing%20.com.au%2C%20cute%20muscular%20blue%20gorilla%20mascot%20figure%20next%20to%20laptop%2C%20small%20green%20plant%20pot%2C%20holographic%20dotted%20wireframe%20world%20map%20floating%20above%20laptop%20with%20glowing%20connection%20nodes%20focused%20on%20Australia%2C%20blue%20tinted%20skyscrapers%20city%20skyline%20soft%20bokeh%20background%2C%20bright%20morning%20light%2C%20light%20airy%20pale%20blue%20atmosphere%2C%20professional%20GoDaddy%20style%20hero%2C%20soft%20depth%20of%20field%2C%20ultra%20high%20definition%2C%20photorealistic&image_size=landscape_16_9") center center / cover no-repeat;
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-copy .eyebrow { margin-bottom: 22px; }
.hero-title { margin-bottom: 20px; }
.hero-title .accent {
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 45%, var(--accent-dark) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-lead {
  font-size: 1.18rem;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 58ch;
  margin-bottom: 32px;
}
.hero-lead strong { color: var(--text); font-weight: 700; }
.hero-lead em { color: var(--brand-100); font-style: normal; font-weight: 600; }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 0;
  margin-bottom: 32px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero-stats > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-stats strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-stats span {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 24px; }
.hero-trust {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
  padding-top: 12px;
}

/* Hero search card */
.hero-search { display: flex; flex-direction: column; gap: 22px; }
.search-card { padding: clamp(24px, 3vw, 36px); }
.search-card h2 { font-size: 1.55rem; margin-bottom: 8px; }
.search-card > .muted { margin-bottom: 22px; }

.domain-form { display: flex; flex-direction: column; gap: 16px; }
.domain-input-row { margin-bottom: 2px; }
.domain-input-wrap {
  display: flex;
  align-items: stretch;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 6px 6px 6px 18px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.domain-input-wrap:focus-within {
  border-color: var(--brand-300);
  box-shadow: 0 0 0 4px var(--accent-glow);
}
.domain-prefix {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  color: var(--text-dim);
  padding-right: 4px;
  user-select: none;
}
.domain-input-wrap input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 12px;
  background: transparent;
  border: 0;
  outline: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.domain-input-wrap input::placeholder { color: var(--text-dim); font-weight: 500; }
.btn-search { min-height: 52px; padding: 0 28px; font-size: 1rem; }

.tld-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tld-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-soft);
  background: rgba(53, 89, 149, 0.14);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: background .15s ease, border-color .15s ease, color .15s ease;
  cursor: pointer;
}
.tld-chip:hover {
  background: rgba(53, 89, 149, 0.28);
  border-color: var(--brand-300);
  color: var(--text);
}
.tld-chip strong { color: var(--brand-100); font-weight: 800; }

.form-note { font-size: 0.85rem; }

.domain-results { margin-top: 22px; }
.domain-results h3 { font-size: 1.1rem; margin-bottom: 14px; }
.results-list { display: flex; flex-direction: column; gap: 10px; }
.result-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.result-main { display: flex; align-items: center; gap: 12px; flex: 1 1 auto; min-width: 0; }
.result-domain {
  font-family: 'Space Grotesk', monospace;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  word-break: break-all;
}
.result-price {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
}
.status-available { background: rgba(58, 210, 159, 0.12); color: var(--ok); border: 1px solid rgba(58, 210, 159, 0.3); }
.status-unavailable { background: rgba(255, 107, 107, 0.12); color: var(--bad); border: 1px solid rgba(255, 107, 107, 0.3); }
.status-pending { background: rgba(255, 183, 77, 0.14); color: var(--warn); border: 1px solid rgba(255, 183, 77, 0.3); }
.result-cta { flex: 0 0 auto; }
.result-cta .btn { padding: 10px 18px; min-height: 42px; font-size: 0.88rem; }

.domain-message { margin-top: 14px; padding: 14px 16px; border-radius: var(--radius); font-size: 0.92rem; font-weight: 500; }
.domain-message.success { background: rgba(58, 210, 159, 0.08); color: var(--ok); border: 1px solid rgba(58, 210, 159, 0.24); }
.domain-message.error { background: rgba(255, 107, 107, 0.08); color: var(--bad); border: 1px solid rgba(255, 107, 107, 0.24); }
.domain-message.info { background: rgba(93, 127, 180, 0.12); color: var(--brand-100); border: 1px solid rgba(93, 127, 180, 0.3); }

/* USP grid */
.usp-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.usp-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(22, 31, 54, 0.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.usp-icon {
  font-size: 1.4rem;
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center; justify-content: center;
  background: rgba(53, 89, 149, 0.2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  flex: 0 0 auto;
}
.usp-card h3 { font-size: 0.98rem; margin: 0 0 6px; }
.usp-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.55; margin: 0; }

/* Brands */
.brands-section { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.brands-copy {
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 22px;
}
.brands-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.brand-chip {
  padding: 10px 20px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.brand-chip:hover { color: var(--brand-100); border-color: var(--brand-300); background: rgba(53, 89, 149, 0.12); }

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.service-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-300);
  box-shadow: var(--shadow-lg);
}
.service-card.featured {
  border-color: var(--brand-400);
  background:
    linear-gradient(180deg, rgba(53, 89, 149, 0.14) 0%, var(--bg-surface) 40%);
  box-shadow: var(--shadow-brand);
}
.service-icon {
  width: 60px; height: 60px;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.8rem;
  background: linear-gradient(135deg, rgba(53, 89, 149, 0.25), rgba(86, 120, 174, 0.12));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  margin-bottom: 22px;
}
.feature-badge {
  position: absolute;
  top: 18px; right: 18px;
  padding: 6px 14px;
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.service-card > p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 18px;
}
.tick-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0 0 22px;
  list-style: none;
}
.tick-list li {
  position: relative;
  padding-left: 28px;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}
.tick-list li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 1px;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--ok);
  background: rgba(58, 210, 159, 0.1);
  border: 1px solid rgba(58, 210, 159, 0.25);
  font-size: 0.72rem;
  font-weight: 900;
  border-radius: var(--radius);
}
.tick-list.compact li { font-size: 0.88rem; }
.service-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-100);
  width: fit-content;
}
.service-cta:hover { color: var(--text); }

/* TLD grid */
.tld-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.tld-card {
  padding: 24px 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color .18s ease, transform .18s ease, background .18s ease;
}
.tld-card:hover {
  border-color: var(--brand-300);
  transform: translateY(-2px);
  background: rgba(53, 89, 149, 0.12);
}
.tld-card > strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.tld-card > span {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.tld-card .tld-price {
  margin-top: 4px;
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
}
.tld-card .tld-price strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-100);
}
.tld-card .tld-price span {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.tld-skeleton {
  padding: 24px 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: rgba(255,255,255,0.02);
}
.tld-skeleton span {
  display: block;
  height: 18px;
  border-radius: var(--radius);
  background: linear-gradient(90deg, rgba(143,167,205,0.08) 0%, rgba(143,167,205,0.18) 50%, rgba(143,167,205,0.08) 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s linear infinite;
}
.tld-skeleton span:last-child { width: 55%; }
@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.tld-note { margin-top: 34px; font-size: 0.95rem; }

/* Hosting / Tabs */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab {
  padding: 12px 20px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-muted);
  border-radius: var(--radius);
  transition: background .15s ease, color .15s ease, box-shadow .15s ease;
}
.tab:hover { color: var(--text-soft); }
.tab.active {
  background: linear-gradient(135deg, var(--brand-500), var(--brand-400));
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.plan-card {
  padding: 34px 28px;
  background: var(--bg-surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  transition: transform .2s ease, border-color .2s ease;
}
.plan-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-300);
}
.plan-card.featured {
  border-color: var(--brand-400);
  background:
    linear-gradient(180deg, rgba(53, 89, 149, 0.18) 0%, var(--bg-surface-solid) 40%);
  box-shadow: var(--shadow-brand);
  transform: scale(1.01);
}
.plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.plan-desc {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.6;
  min-height: 48px;
  margin-bottom: 24px;
}
.plan-price {
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}
.plan-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}
/* ---------- PLAN / PRICING CARDS — contrast & featured fixes ---------- */
.plan-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--brand-800);
  letter-spacing: -0.03em;
}
.plan-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--brand-600);
}
.plan-period {
  font-size: 0.92rem;
  color: var(--text-muted);
  font-weight: 500;
}
.plan-setup {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.plan-card.featured {
  border-color: var(--brand-500);
  background:
    linear-gradient(180deg, rgba(35, 68, 143, 0.94) 0%, rgba(46, 82, 160, 0.95) 100%);
  box-shadow: 0 18px 52px rgba(35, 68, 143, 0.22);
  transform: scale(1.015);
  position: relative;
}
.plan-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #3b67b5, #17306b);
  color: #fff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(35,68,143,0.35);
}
.plan-card.featured .plan-name { color: #fff; }
.plan-card.featured .plan-desc { color: rgba(255,255,255,0.84); }
.plan-card.featured .plan-amount { color: #fff; }
.plan-card.featured .plan-currency { color: rgba(255,255,255,0.86); }
.plan-card.featured .plan-period { color: rgba(255,255,255,0.82); }
.plan-card.featured .plan-setup { color: rgba(255,255,255,0.80); }
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.92); }
.plan-card.featured .plan-features li::before {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.22);
  color: var(--ok);
}
.plan-card.featured .plan-cta.btn-outline {
  border-color: rgba(255,255,255,0.6) !important;
  color: #fff !important;
}
.plan-card.featured .plan-cta.btn-outline:hover {
  background: rgba(255,255,255,0.12) !important;
}
.plan-card.featured .btn-primary {
  background: linear-gradient(180deg, #fff 0%, #e6efff 100%) !important;
  color: var(--brand-700) !important;
}

/* ---------- ACCENT COLOR — BRAND BLUE. NO TEAL. NO ORANGE. ---------- */
.accent,
.section-head h2 .accent,
.split-copy h2 .accent,
.contact-copy h2 .accent,
h2 .accent, h3 .accent {
  color: var(--brand-600);
}
.hero-title .accent {
  color: inherit;
  background: linear-gradient(135deg, var(--brand-500) 0%, var(--brand-600) 45%, var(--brand-700) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- CONTACT SECTION — light surfaces need DARK ink, not ghost grey ---------- */
.contact-grid > div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-copy .eyebrow.light { color: var(--brand-700); }
.contact-copy h2 { color: var(--text); }
.contact-copy .lead {
  color: var(--text-muted);
}
.contact-method {
  background: var(--bg-surface);
  border: 1px solid var(--border);
}
.contact-method h3 { color: var(--text); }
.contact-method a {
  color: var(--brand-700);
  font-weight: 700;
}
.contact-method a:hover { color: var(--brand-600); }
.contact-method .sub {
  color: var(--text-muted);
}
.contact-method p {
  color: var(--text-muted);
}
.contact-icon {
  background: rgba(35, 68, 143, 0.08);
  border: 1px solid var(--brand-200);
  color: var(--brand-600);
}
.contact-method:hover { border-color: var(--brand-300); }
.contact-method:hover .contact-icon { background: rgba(35,68,143,0.14); color: var(--brand-700); }

/* ---------- FAQ ACCORDION — Material Symbols BLUE expand/collapse, NO NAFF SQUARES ---------- */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item[open] {
  border-color: var(--brand-300);
  box-shadow: var(--shadow-md);
}
.faq-item summary {
  list-style: none;
  padding: 20px 24px 20px 24px;
  padding-right: 56px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  position: relative;
  transition: background .15s ease, color .15s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: rgba(35, 68, 143, 0.05); color: var(--brand-700); }
.faq-item[open] summary { color: var(--brand-700); background: rgba(35,68,143,0.04); }
.faq-item summary .faq-toggle {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-600);
  pointer-events: none;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(35, 68, 143, 0.06);
  transition: transform .22s ease, color .2s ease, background .2s ease;
}
.faq-item summary .faq-toggle .material-symbols-outlined {
  font-size: 22px;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
}
.faq-item[open] summary .faq-toggle {
  background: var(--brand-600);
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}
.faq-item > div {
  padding: 0 24px 24px;
}
.faq-item > div p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 12px;
}
.plan-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}
.plan-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.45;
  font-weight: 500;
}
.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  width: 20px; height: 20px;
  display: inline-flex;
  align-items: center; justify-content: center;
  color: var(--ok);
  background: rgba(58, 210, 159, 0.08);
  border: 1px solid rgba(58, 210, 159, 0.22);
  font-size: 0.72rem;
  font-weight: 900;
  border-radius: var(--radius);
}
.plan-cta { width: 100%; }

.plans-footnote { margin-top: 40px; font-size: 0.9rem; max-width: 800px; }

/* Split section (about) */
.split-section { padding-top: clamp(56px, 7vw, 96px); }
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
}
.split-media {
  position: relative;
  min-height: 480px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}
.split-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(46, 85, 160, 0.10) 100%);
  pointer-events: none;
}
.split-media-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
  pointer-events: none;
}
.floating-stat {
  max-width: 320px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.floating-stat strong {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-100);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.floating-stat span {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.6;
}

.split-copy .eyebrow { margin-bottom: 20px; }
.split-copy h2 { margin-bottom: 20px; }
.split-copy h2 .accent { color: var(--brand-600); }
.split-copy .lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 18px;
}
.split-copy p {
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}

.trust-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.trust-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s ease;
}
.trust-item:hover { border-color: var(--brand-300); }
.trust-item h3 { font-size: 1.02rem; margin-bottom: 8px; color: var(--text); }
.trust-item p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* Testimonials */
.testimonials-section {
  background:
    linear-gradient(180deg, rgba(10, 22, 46, 0.96) 0%, rgba(15, 31, 63, 0.94) 100%),
    radial-gradient(circle at 80% 100%, rgba(86, 120, 174, 0.18), transparent 50%);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.testimonial-card {
  padding: 32px 28px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 12px; left: 20px;
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
  color: rgba(93, 127, 180, 0.18);
  pointer-events: none;
}
.testimonial-card p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 0.98rem;
  padding-top: 36px;
  margin-bottom: 24px;
  flex: 1 1 auto;
}
.testimonial-card footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.testimonial-card footer strong {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--text);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card footer span {
  color: var(--text-dim);
  font-size: 0.85rem;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.faq-copy { position: sticky; top: calc(var(--header-h) + 32px); }
.faq-copy .eyebrow { margin-bottom: 20px; }
.faq-copy h2 { margin-bottom: 20px; }
.faq-copy .lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 28px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--bg-surface);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s ease;
}
.faq-item[open] { border-color: var(--brand-300); }
.faq-item summary {
  list-style: none;
  padding: 22px 24px;
  padding-right: 60px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  position: relative;
  transition: background .15s ease;
}
.faq-item summary:hover { background: rgba(53, 89, 149, 0.08); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { display: none !important; content: "" !important; }
.faq-item[open] summary::after { display: none !important; content: "" !important; }
.faq-item > div {
  padding: 0 24px 24px;
}
.faq-item > div p {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 12px;
}
.faq-item > div p:last-child { margin-bottom: 0; }

/* Contact */
.contact-section {
  background:
    linear-gradient(180deg, rgba(10, 22, 46, 0.98) 0%, rgba(15, 31, 63, 0.96) 100%),
    radial-gradient(circle at 0% 0%, rgba(53, 89, 149, 0.22), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(86, 120, 174, 0.18), transparent 55%);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}
.contact-copy .eyebrow { margin-bottom: 22px; }
.contact-copy h2 { margin-bottom: 18px; color: #fff; }
.contact-copy .lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(228, 228, 231, 0.82);
  margin-bottom: 34px;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-method {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color .15s ease;
}
.contact-method:hover { border-color: var(--brand-300); }
.contact-icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center; justify-content: center;
  font-size: 1.3rem;
  background: rgba(53, 89, 149, 0.2);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  flex: 0 0 auto;
}
.contact-method h3 {
  font-size: 1rem;
  color: #fff;
  margin: 0 0 4px;
}
.contact-method a {
  display: inline-block;
  color: var(--brand-100);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-method a:hover { color: #fff; }
.contact-method .sub {
  display: block;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.contact-method p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(228, 228, 231, 0.78);
  line-height: 1.6;
}

.contact-form { padding: clamp(28px, 3vw, 40px); }
.contact-form h3 { font-size: 1.4rem; margin-bottom: 6px; color: #fff; }
.contact-form > .muted { margin-bottom: 28px; }

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-field label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.01em;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  border-radius: var(--radius);
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: var(--text-dim); }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-300);
  box-shadow: 0 0 0 4px var(--accent-glow);
  background: var(--bg-3);
}
.form-field textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--text-dim) 50%),
    linear-gradient(135deg, var(--text-dim) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 50%,
    calc(100% - 14px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 40px;
}
.form-field select option { background: var(--bg-3); color: var(--text); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 4px 0 22px;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.55;
}
.form-check input[type="checkbox"] {
  margin-top: 3px;
  width: 18px; height: 18px;
  accent-color: var(--brand-400);
  flex: 0 0 auto;
  cursor: pointer;
}

.form-hp {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px; height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 18px 0 0;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 500;
  min-height: 0;
  display: none;
}
.form-status.show { display: block; }
.form-status.success { background: rgba(58, 210, 159, 0.08); color: var(--ok); border: 1px solid rgba(58, 210, 159, 0.22); }
.form-status.error { background: rgba(255, 107, 107, 0.08); color: var(--bad); border: 1px solid rgba(255, 107, 107, 0.22); }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0a0f1e 0%, #070b16 100%);
  border-top: 1px solid var(--border);
  padding-top: 72px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo {
  width: 220px;
  height: auto;
  opacity: 0.92;
  filter: drop-shadow(0 6px 18px rgba(53, 89, 149, 0.25));
}
.footer-brand > p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
  max-width: 38ch;
}
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}
.footer-legal p {
  font-size: 0.82rem;
  color: var(--text-dim);
  margin: 0;
}

.footer-col h3 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 22px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a {
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color .15s ease;
}
.footer-col ul a:hover { color: var(--brand-100); }
.service-areas li {
  color: var(--text-dim);
  font-size: 0.86rem;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
}
.service-areas li:last-child { border-bottom: 0; }

.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.footer-bottom a { color: var(--text-muted); font-weight: 600; }
.footer-bottom a:hover { color: var(--brand-100); }

/* Responsive */
@media (max-width: 1080px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .tld-grid { grid-template-columns: repeat(3, 1fr); }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card.featured { transform: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-grid,
  .split-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .faq-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .nav { order: 3; flex: 0 0 auto; width: 100%; }
  .header-inner { flex-wrap: wrap; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 12px;
    background: rgba(10, 15, 30, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 1rem; }
  .header-cta { display: none; }
  .tld-grid { grid-template-columns: repeat(2, 1fr); }
  .plans-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .tld-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .tld-card { padding: 18px 16px; }
  .tld-card > strong { font-size: 1.35rem; }
  .tld-card .tld-price strong { font-size: 1.1rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; padding: 18px 0; }
  .hero-stats strong { font-size: 1.5rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .tabs { width: 100%; }
  .tab { flex: 1 1 auto; width: 100%; text-align: center; }
  .brands-row { gap: 8px; }
  .brand-chip { padding: 8px 14px; font-size: 0.82rem; }
  .split-media { min-height: 360px; }
  .split-media img { min-height: 360px; }
  .floating-stat strong { font-size: 2.4rem; }
  .search-card { padding: 22px 20px; }
  .domain-input-wrap {
    flex-wrap: wrap;
    padding: 8px;
    gap: 8px;
  }
  .domain-input-wrap input { padding: 10px 8px; }
  .btn-search { width: 100%; }
  .result-row { flex-wrap: wrap; }
  .result-cta { width: 100%; }
  .result-cta .btn { width: 100%; }
}

@media (max-width: 420px) {
  .tld-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .btn-lg { padding: 14px 22px; min-height: 54px; }
  .hero-cta .btn { width: 100%; }
}

.cart-toggle-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cart-icon { font-size: 1.05rem; line-height: 1; }
.cart-label { font-weight: 600; }
.cart-badge {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 20px;
  height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--brand-400);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 2px var(--bg-surface-solid);
}

.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity .25s ease;
  z-index: 80;
  pointer-events: none;
}
.cart-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  max-width: 100%;
  background: var(--bg-2);
  border-left: 1px solid var(--border);
  z-index: 90;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
@media (min-width: 640px) {
  .cart-drawer { width: 500px; }
}
.cart-drawer.is-open {
  transform: translateX(0);
}
body.cart-locked { overflow: hidden; }

.cart-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--border);
}
.cart-head h3 { margin: 0 0 2px; font-size: 1.25rem; }
.cart-count { margin: 0; font-size: 0.88rem; }
.cart-close {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-soft);
  width: 36px;
  height: 36px;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}
.cart-close:hover { background: var(--bg-elev); border-color: var(--border-strong); }

.cart-items {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 12px 24px 8px;
}
.cart-empty {
  padding: 56px 20px;
  text-align: center;
}
.cart-empty-icon {
  font-size: 3rem;
  margin-bottom: 14px;
  opacity: 0.55;
}
.cart-empty h4 { margin: 0 0 8px; }
.cart-empty-cta { margin-top: 20px; }

.cart-item {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  font-size: 1.15rem;
  flex-shrink: 0;
}
.cart-item-title {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 3px;
  line-height: 1.35;
}
.cart-item-meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.cart-item-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.cart-item-sub select {
  background: var(--bg-3);
  border: 1px solid var(--border);
  color: var(--text-soft);
  padding: 5px 8px;
  font-size: 0.85rem;
  cursor: pointer;
  min-width: 120px;
}
.cart-item-price {
  font-weight: 700;
  color: var(--text);
  font-size: 0.95rem;
}
.cart-remove {
  background: none;
  border: 1px solid var(--border);
  color: var(--bad);
  width: 28px;
  height: 28px;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s ease, border-color .15s ease;
}
.cart-remove:hover {
  background: rgba(255, 107, 107, 0.12);
  border-color: var(--bad);
}

.cart-foot {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border);
  background: var(--bg-surface-solid);
}
.cart-totals {
  margin-bottom: 16px;
}
.sum-row {
  display: flex;
  justify-content: space-between;
  padding: 5px 0;
  font-size: 0.95rem;
  color: var(--text-soft);
}
.sum-row.sum-total {
  padding-top: 10px;
  margin-top: 6px;
  border-top: 1px solid var(--border);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--text);
}
.cart-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.co-step-row {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0 0 36px;
}
.co-step-row .step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.9rem;
}
.co-step-row .step span {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 800;
}
.co-step-row .step.is-done {
  color: var(--ok);
  border-color: rgba(58, 210, 159, 0.3);
  background: rgba(58, 210, 159, 0.07);
}
.co-step-row .step.is-done span {
  background: var(--ok);
  color: #06251a;
  border-color: var(--ok);
}
.co-step-row .step.is-active {
  color: var(--text);
  border-color: var(--brand-400);
  background: rgba(53, 89, 149, 0.15);
}
.co-step-row .step.is-active span {
  background: var(--brand-400);
  color: #fff;
  border-color: var(--brand-400);
}

.sandbox-banner {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 18px;
  background: #f0f5ff;
  border: 1px solid var(--brand-200);
  border-left: 4px solid var(--brand-500);
  margin-bottom: 28px;
  color: var(--brand-800);
}
.sb-icon { font-size: 1.3rem; line-height: 1.3; color: var(--brand-600); }
.sb-body strong { color: var(--brand-700); display: block; margin-bottom: 3px; font-weight: 700; }
.sb-body code {
  background: #fff;
  border: 1px solid var(--brand-200);
  padding: 1px 6px;
  font-size: 0.82rem;
  color: var(--brand-700);
  border-radius: 6px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 960px) {
  .checkout-grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    align-items: start;
  }
  .checkout-summary { position: sticky; top: calc(var(--header-h) + 16px); }
}
.checkout-form {
  padding: 28px;
}
@media (max-width: 640px) {
  .checkout-form { padding: 22px 18px; }
}

.co-account-row label { display: block; margin-bottom: 10px; }
.radio-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.radio-pill {
  flex: 1 1 160px;
  position: relative;
  cursor: pointer;
  margin: 0;
}
.radio-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.radio-pill span {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
  color: var(--text-soft);
  font-weight: 600;
  transition: all .15s ease;
}
.radio-pill input:checked + span {
  background: rgba(53, 89, 149, 0.2);
  border-color: var(--brand-400);
  color: var(--text);
}

.co-fields-wrap {
  margin-top: 10px;
  padding: 18px 18px 6px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
}
.co-wrap-head {
  font-weight: 700;
  color: var(--text);
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--text-soft);
}
.req { color: var(--bad); font-weight: 700; }
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 11px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  line-height: 1.5;
  transition: border-color .15s ease, background .15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-400);
  background: var(--bg-3);
}
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--bad);
  background: rgba(255, 107, 107, 0.06);
}
.field-error-msg {
  display: block;
  color: var(--bad);
  font-size: 0.82rem;
  margin-top: 5px;
  min-height: 1em;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0;
  cursor: pointer;
  font-size: 0.92rem;
  color: var(--text-soft);
}
.form-check input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--brand-400);
  flex-shrink: 0;
}
.form-check.has-error span:first-of-type { color: var(--bad); }

.co-actions-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.co-actions-row .btn-primary { flex: 1 1 300px; }
.btn-link {
  background: none;
  border: none;
  color: var(--brand-100);
  padding: 4px 0;
  font-size: 0.88rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-family: inherit;
}
.btn-link:hover { color: var(--text); }

.checkout-summary {
  padding: 24px;
}
.summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.summary-head h3 { margin: 0; font-size: 1.1rem; }
.summary-items { margin-bottom: 18px; }
.summary-empty { padding: 14px 0; }
.summary-item {
  display: grid;
  grid-template-columns: 28px 1fr auto;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  align-items: center;
}
.summary-item:last-child { border-bottom: none; }
.summary-icon {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  font-size: 0.88rem;
}
.summary-title {
  font-weight: 600;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.3;
}
.summary-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.summary-price {
  font-weight: 700;
  color: var(--text);
  font-size: 0.92rem;
  white-space: nowrap;
}
.summary-totals {
  padding-top: 14px;
  border-top: 1px solid var(--border);
  margin-bottom: 14px;
}
.summary-reassurance {
  line-height: 1.55;
}
.small { font-size: 0.82rem; }

.success-section {
  padding-top: 48px;
  padding-bottom: 72px;
}
.success-hero {
  padding: 42px;
  background:
    radial-gradient(ellipse 800px 500px at 50% 0%, rgba(58, 210, 159, 0.14), transparent 60%),
    var(--bg-surface);
  border: 1px solid rgba(58, 210, 159, 0.25);
  position: relative;
  overflow: hidden;
}
@media (max-width: 640px) {
  .success-hero { padding: 28px 20px; }
}
.success-check {
  width: 72px;
  height: 72px;
  border-radius: 36px;
  background: var(--ok);
  color: #06251a;
  font-size: 2.4rem;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 30px rgba(58, 210, 159, 0.3);
}
.success-header { margin-bottom: 22px; }
.success-header h2 { margin-bottom: 8px; }
.success-summary ul {
  margin: 14px 0 24px;
  padding: 0;
  list-style: none;
}
.success-summary li {
  padding: 7px 0 7px 26px;
  position: relative;
  color: var(--text-soft);
}
.success-summary li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ok);
  font-weight: 800;
}
.success-ref {
  padding: 18px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  margin: 18px 0;
}
.success-ref.sb {
  border-color: rgba(255, 183, 77, 0.4);
  background: rgba(255, 183, 77, 0.08);
}
.success-ref strong { color: var(--warn); }
.success-ref-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 20px;
  margin-top: 10px;
}
@media (max-width: 640px) { .success-ref-grid { grid-template-columns: 1fr; } }
.success-ref-grid div {
  font-size: 0.88rem;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 4px 0;
  border-bottom: 1px dashed var(--border);
}
.success-ref-grid div span:first-child { color: var(--text-muted); }
.success-ref-grid div span:last-child {
  color: var(--text);
  font-weight: 600;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.85rem;
}

.success-items {
  margin: 22px 0 10px;
  border: 1px solid var(--border);
  background: var(--bg-elev);
}
.si, .si-head {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 10px;
  padding: 12px 16px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
@media (max-width: 720px) {
  .si, .si-head {
    grid-template-columns: 1fr 1fr;
  }
}
.si-head {
  background: var(--bg-3);
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
}
.si:last-child { border-bottom: none; }
.si-total {
  background: var(--bg-3);
  font-weight: 800;
  color: var(--text);
  border-top: 2px solid var(--border-strong);
  padding-top: 14px;
  padding-bottom: 14px;
}
.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-size: 0.78rem;
  font-weight: 700;
  border: 1px solid var(--border-strong);
}
.status-pill::before {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.status-pill.placed { color: var(--brand-100); border-color: rgba(197, 212, 234, 0.4); }
.status-pill.provisioning { color: var(--warn); border-color: rgba(255, 183, 77, 0.4); }
.status-pill.ok { color: var(--ok); border-color: rgba(58, 210, 159, 0.4); }

.success-actions {
  margin-top: 26px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

#toast-wrap {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 360px;
  pointer-events: none;
}
@media (max-width: 640px) {
  #toast-wrap { left: 16px; right: 16px; max-width: none; }
}
.toast {
  background: var(--bg-elev);
  border: 1px solid var(--border-strong);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  font-size: 0.92rem;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  border-left: 4px solid var(--brand-400);
  pointer-events: auto;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-icon {
  font-size: 1.15rem;
  line-height: 1.3;
  flex-shrink: 0;
}
.toast-success { border-left-color: var(--ok); }
.toast-success .toast-icon { color: var(--ok); }
.toast-error { border-left-color: var(--bad); }
.toast-error .toast-icon { color: var(--bad); }
.toast-info { border-left-color: var(--brand-400); }
.toast-info .toast-icon { color: var(--brand-100); }
.toast-msg { flex: 1; line-height: 1.5; }
.toast-msg strong { color: var(--text); }


/* ========================================================================
   GoDaddy-STYLE LIGHT THEME OVERRIDES
   Clean white surfaces · bright orange CTAs · teal accents · rounded cards
   ======================================================================== */

/* Logo sizing — PNG lockups are taller, so constrain proportionally */
.brand-logo {
  width: auto;
  height: 60px;
  max-height: 80%;
  object-fit: contain;
  object-position: left center;
}
footer .brand-logo,
.footer-logo.brand-logo {
  height: 74px;
  width: auto;
  margin-bottom: 14px;
}

/* Eyebrow pill — light GoDaddy blue tint instead of dark tint */
.eyebrow {
  color: var(--brand-700);
  background: var(--brand-50);
  border-color: var(--brand-100);
  font-weight: 700;
}
.eyebrow.light {
  color: var(--brand-800);
  background: var(--brand-50);
  border-color: var(--brand-200);
}

/* Nav links — dark ink, GoDaddy hover underlines with accent orange */
.nav-links a {
  color: var(--text-soft);
  font-weight: 600;
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 10%; right: 10%; bottom: -4px;
  height: 3px;
  border-radius: 3px;
  background: var(--cta);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.nav-links a:hover { color: var(--cta-dark); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Surface & card rework for light theme — white with borders */
.surface {
  background: #ffffff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.surface:hover {
  box-shadow: var(--shadow-md);
}

/* Dark section tint — now LIGHT tinted brand-blue band instead of near-black */
.section-dark {
  background:
    linear-gradient(180deg, #f7f9fc 0%, #eef3fb 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--text-soft);
}
.section-head.light .section-lead { color: var(--text-muted); }
.section-head.light h2 { color: var(--text); }
.section-lead { color: var(--text-muted); }
h1, h2, h3, h4, h5, h6 { color: var(--text); }

/* Domain search box — bright white + blue shadow focus, teal glow */
.domain-search {
  background: #fff;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
}
.domain-search .ds-input {
  color: var(--text);
  background: transparent;
}
.domain-search .ds-input::placeholder { color: var(--text-dim); }
.domain-search:focus-within {
  border-color: var(--brand-300);
  box-shadow: 0 0 0 4px rgba(46, 85, 160, 0.08), var(--shadow-md);
}

/* Domain pricing pills — white with subtle teal/orange accents */
.tld-pill {
  background: #fff;
  border: 1px solid var(--border);
  color: var(--text-soft);
}
.tld-pill:hover {
  border-color: var(--cta);
  background: var(--cta-soft);
  color: var(--cta-dark);
}

/* Pricing cards — GoDaddy lift + orange plan badge */
.plan-card {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--cta);
}
.plan-card.is-featured {
  border-color: var(--cta);
  box-shadow: 0 16px 48px rgba(35, 68, 143, 0.18);
  position: relative;
}
.plan-card.is-featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--cta), var(--cta-dark));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  padding: 6px 14px;
  border-radius: 999px;
}

/* Domain result row — white with bright OK green pill and orange Add CTA */
.domain-result {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
}
.domain-result.is-available .dr-status { color: var(--ok); }
.domain-result.is-unavailable .dr-status { color: var(--bad); }

/* Trust badges strip hero (✓ icons) — dark ink text + subtle pills */
.hero-trust {
  color: var(--text-muted);
  font-size: 0.92rem;
}
.hero-trust .tr-item {
  background: #fff;
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
  color: var(--text-soft);
  font-weight: 600;
}

/* Hero stats — white cards with tiny shadow, brand blue bold numerals */
.hero-stats > div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: var(--shadow-sm);
}
.hero-stats strong {
  color: var(--brand-700);
}

/* Form inputs — clean white with 1.5px border, focus ring teal-orange */
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], input[type="password"],
select, textarea,
.form-field input, .form-field select, .form-field textarea {
  background: #fff;
  border: 1.5px solid var(--border-strong);
  color: var(--text-soft);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="number"]:focus, input[type="password"]:focus,
select:focus, textarea:focus,
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--cta);
  box-shadow: 0 0 0 4px rgba(35, 68, 143, 0.10);
  background: #fff;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-dim); }
.form-field label, .co-fields-wrap label { color: var(--text-soft); font-weight: 600; }

/* Segmented personal/business pill radio */
.radio-pill label {
  background: #fff;
  border: 1.5px solid var(--border-strong);
  color: var(--text-soft);
}
.radio-pill input:checked + label {
  background: var(--brand-50);
  border-color: var(--brand-400);
  color: var(--brand-800);
  font-weight: 700;
}

/* Footer — GoDaddy light-grey footer band, dark ink, blue links */
.site-footer {
  background: #f4f6fa;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
}
.site-footer h3, .site-footer h4 { color: var(--text); }
.site-footer a { color: var(--text-soft); }
.site-footer a:hover { color: var(--cta-dark); }
.footer-legal {
  border-top: 1px solid var(--border);
  color: var(--text-dim);
}

/* Sandbox warning banner — blue info palette, not warm amber */
.sandbox-banner {
  background: #f0f5ff;
  border: 1px solid var(--brand-200);
  border-left: 4px solid var(--brand-500);
  color: var(--brand-800);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.sandbox-banner code {
  background: #fff;
  border: 1px solid var(--brand-200);
  color: var(--brand-700);
  padding: 2px 6px;
  border-radius: 6px;
  font-size: 0.86em;
}

/* Checkout surfaces — pure white cards with shadow */
.checkout-grid > form,
.checkout-summary,
#checkout-form,
.co-fields-wrap,
.form-field-group,
.cart-summary-surface {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.co-step-row .step {
  background: var(--brand-50);
  color: var(--brand-700);
  border: 1px solid var(--brand-100);
}
.co-step-row .step.is-active {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta-dark);
  box-shadow: 0 8px 20px var(--cta-glow);
}
.co-step-row .step.is-done {
  background: var(--ok);
  color: #fff;
  border-color: #0d955c;
}

/* Success section — light green radial instead of dark, with bold orange CTA */
.success-section {
  background: #fff;
  border: 1px solid var(--border);
}
.success-hero {
  background:
    radial-gradient(circle 260px at 50% 0%, rgba(15, 170, 106, 0.10), transparent 70%),
    linear-gradient(180deg, #f6fbf9 0%, #ffffff 100%);
  border-bottom: 1px solid var(--border);
}
.success-check {
  background: var(--ok);
  color: #fff;
  box-shadow: 0 16px 40px rgba(15, 170, 106, 0.28);
}
.status-pill.placed { background: #e6f7ef; color: #0d955c; }
.status-pill.provisioning { background: #eef5ff; color: var(--brand-700); }
.status-pill.ok { background: #eef3fb; color: var(--brand-700); }
.si, .si-head {
  border-bottom: 1px solid var(--border);
}
.si-total {
  background: #fafbfe;
  border: 1px solid var(--border);
  color: var(--text);
}

/* Field error — red border + soft pink bg (light theme) */
.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--bad);
  background: #fff5f5;
  box-shadow: 0 0 0 3px rgba(224, 56, 56, 0.10);
}
.field-error-msg { color: #c82c2c; font-weight: 600; font-size: 0.85rem; }

/* Cart drawer — bright white on light with strong right shadow */
.cart-drawer {
  background: #fff;
  color: var(--text-soft);
  border-left: 1px solid var(--border);
  box-shadow: -24px 0 80px rgba(13, 27, 51, 0.16);
}
.cart-drawer .cart-head h3 { color: var(--text); }
.cart-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.cart-period select {
  background: #f7f9fc;
  border: 1px solid var(--border-strong);
  color: var(--text-soft);
  border-radius: 8px;
  padding: 6px 10px;
}
.cart-remove { color: var(--text-dim); }
.cart-remove:hover { color: var(--bad); }
#cart-foot {
  border-top: 1px solid var(--border);
  background: #fafbfe;
}

/* Overlay — dimmer for bright theme (80% black) */
.cart-overlay {
  background: rgba(0, 0, 0, 0.55);
}

/* Toast surfaces — light bright cards instead of dark */
.toast {
  background: #fff;
  border: 1px solid var(--border-strong);
  color: var(--text-soft);
  box-shadow: var(--shadow-md);
}
.toast-msg strong { color: var(--text); }
.toast-info { border-left-color: var(--brand-500); }
.toast-info .toast-icon { color: var(--brand-600); }

/* Accent/inline highlights — GoDaddy-style teal */
.accent { color: var(--accent-dark); }
.link-light { color: var(--cta-dark); font-weight: 700; }
.link-light:hover { color: var(--cta); }

/* FAQ details — clean white accordions */
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.faq-item[open] {
  border-color: var(--brand-200);
  box-shadow: var(--shadow-md);
}

/* Image card frames (servers.jpg, etc.) */
.media-frame {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Floating stat card in About split */
.floating-stat {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  color: var(--text-soft);
}
.floating-stat strong { color: var(--brand-700); }

/* Testimonial quote cards — white framed with blue quote mark */
.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius);
  border-top: 4px solid var(--cta);
}
.testimonial cite { color: var(--brand-700); font-weight: 700; }

/* Contact surfaces — light band */
.contact-grid > div {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Selection/selection colors — blue brand primary select */
::selection { background: rgba(35, 68, 143, 0.18); color: var(--text); }

/* Focus ring fix — orange for keyboard nav */
:focus-visible {
  outline: 2px solid var(--cta);
  outline-offset: 3px;
}
.btn:focus-visible, button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline-color: var(--cta);
}


/* ========================================================================
   HELP FAB — floating bottom-right (casual: "this is all gobbledy gook")
   ======================================================================== */
.help-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 95;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 16px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(180deg, #3b67b5 0%, var(--brand-600) 55%, var(--accent-dark) 100%);
  box-shadow:
    0 16px 42px rgba(35, 68, 143, 0.38),
    0 2px 6px rgba(13, 27, 51, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font: inherit;
  line-height: 1.1;
  text-align: left;
  max-width: min(520px, calc(100vw - 44px));
  transform: translateY(0) scale(1);
  transition:
    transform .24s cubic-bezier(.2,.9,.25,1.3),
    box-shadow .24s ease,
    filter .2s ease,
    background .2s ease;
  animation: helpFabEntrance .55s cubic-bezier(.2,.9,.25,1.4) .8s both,
             helpFabPulse 3.8s ease-in-out 2.1s infinite;
}
.help-fab:hover {
  filter: brightness(1.04) saturate(1.05);
  transform: translateY(-3px) scale(1.015);
  box-shadow:
    0 22px 58px rgba(35, 68, 143, 0.45),
    0 4px 10px rgba(13, 27, 51, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}
.help-fab:active {
  transform: translateY(0) scale(.985);
}
.help-fab-ico {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  font-size: 1.3rem;
  line-height: 1;
}
.help-fab-text {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.help-fab-text strong {
  font-size: 0.98rem;
  font-weight: 900;
  letter-spacing: -0.005em;
  color: #fff;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.help-fab-sub {
  font-size: 0.80rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.help-fab:focus-visible {
  outline: 3px solid #00a4a6;
  outline-offset: 4px;
}

@keyframes helpFabEntrance {
  0%   { opacity: 0; transform: translateY(40px) scale(.86); filter: blur(3px); }
  60%  { opacity: 1; filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes helpFabPulse {
  0%   { box-shadow: 0 16px 42px rgba(255, 107, 0, 0.38), 0 2px 6px rgba(13, 27, 51, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.28); }
  50%  { box-shadow: 0 20px 58px rgba(255, 107, 0, 0.52), 0 2px 6px rgba(13, 27, 51, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.32); }
  100% { box-shadow: 0 16px 42px rgba(255, 107, 0, 0.38), 0 2px 6px rgba(13, 27, 51, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.28); }
}

/* Mobile: shrink to tight pill (keep subline but cap width) */
@media (max-width: 640px) {
  .help-fab {
    right: 14px;
    bottom: 16px;
    left: 14px;
    max-width: none;
    padding: 12px 16px 12px 14px;
    gap: 12px;
  }
  .help-fab-ico { width: 36px; height: 36px; font-size: 1.15rem; }
  .help-fab-text strong { font-size: 0.92rem; white-space: normal; line-height: 1.15; }
  .help-fab-sub { font-size: 0.76rem; white-space: normal; line-height: 1.25; }
}


/* ========================================================================
   FINAL POLISH: Material Icons blue · NO orange · Typography · Contrast · Spacing
   ======================================================================== */

/* --- Google Material Symbols sizing (consistent, blue brand) --- */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: 500;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
  font-variation-settings: 'FILL' 0, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}
.mi .material-symbols-outlined {
  color: var(--brand-600);
}
.h3-mi, .h-mi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.0rem;
  height: 2.0rem;
  margin-right: 0.55rem;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  border-radius: 10px;
  vertical-align: -0.2em;
  flex-shrink: 0;
}
.h3-mi .material-symbols-outlined, .h-mi .material-symbols-outlined {
  font-size: 1.25rem;
  color: var(--brand-700);
}
.inline-mi { display: inline-flex; align-items: center; gap: 4px; color: inherit; }
.inline-mi .material-symbols-outlined,
.ok-mi .material-symbols-outlined { color: var(--ok); }
.bad-mi .material-symbols-outlined { color: var(--bad); }

/* --- Material icon wrapper sizing (service/USP/cart icons) --- */
.service-icon, .usp-icon, .contact-icon, .summary-icon, .cart-empty-icon, .cart-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-icon.mi, .usp-icon.mi, .contact-icon.mi, .cart-icon.mi, .cart-empty-icon.mi {
  color: var(--brand-600);
}
.service-icon .material-symbols-outlined,
.usp-icon .material-symbols-outlined {
  font-size: 34px;
  color: var(--brand-600);
}
.contact-icon.mi {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  flex-shrink: 0;
}
.contact-icon.mi .material-symbols-outlined { font-size: 22px; color: var(--brand-700); }
.usp-icon.mi {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  flex-shrink: 0;
}
.usp-icon.mi .material-symbols-outlined { font-size: 26px; color: var(--brand-700); }
.service-icon.mi {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--brand-50) 0%, #fff 100%);
  border: 1px solid var(--brand-100);
}
.cart-icon.mi .material-symbols-outlined { font-size: 20px; color: var(--brand-700); }
.cart-empty-icon.mi .material-symbols-outlined { font-size: 64px; color: var(--brand-300); }
.summary-icon.mi, .ci.mi, .pi.mi, .smi.mi, .si-icon.mi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--brand-50);
  border: 1px solid var(--brand-100);
  flex-shrink: 0;
}
.ci.mi .material-symbols-outlined,
.pi.mi .material-symbols-outlined,
.smi.mi .material-symbols-outlined,
.summary-icon.mi .material-symbols-outlined,
.si-icon.mi .material-symbols-outlined {
  font-size: 20px;
  color: var(--brand-700);
}

/* --- Full CTAs: NO ORANGE ANYWHERE · pure BlueGorilla blue --- */
.btn-primary {
  background: linear-gradient(180deg, #2e52a0 0%, #23448f 55%, #17306b 100%);
  box-shadow: 0 14px 40px rgba(35, 68, 143, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
}
.btn-primary:hover {
  background: linear-gradient(180deg, #355c9e 0%, #2e52a0 55%, #23448f 100%);
  box-shadow: 0 20px 52px rgba(35, 68, 143, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-outline {
  border-color: var(--brand-200);
  color: var(--brand-700);
  background: #fff;
}
.btn-outline:hover {
  background: var(--brand-50);
  border-color: var(--brand-400);
  color: var(--brand-800);
}
.btn-ghost:hover {
  background: var(--brand-50);
  color: var(--brand-800);
  border-color: var(--brand-200);
}
:focus-visible, .btn:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 3px;
}
.help-fab {
  background: linear-gradient(180deg, #2e52a0 0%, #23448f 55%, #17306b 100%) !important;
  box-shadow:
    0 16px 42px rgba(35, 68, 143, 0.36),
    0 2px 6px rgba(11, 26, 51, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.22) !important;
}
.help-fab:hover {
  box-shadow:
    0 22px 58px rgba(35, 68, 143, 0.48),
    0 4px 10px rgba(11, 26, 51, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.28) !important;
}
@keyframes helpFabPulse {
  0%   { box-shadow: 0 16px 42px rgba(35,68,143,.36), 0 2px 6px rgba(11,26,51,.12), inset 0 1px 0 rgba(255,255,255,.22); }
  50%  { box-shadow: 0 20px 58px rgba(35,68,143,.50), 0 2px 6px rgba(11,26,51,.12), inset 0 1px 0 rgba(255,255,255,.28); }
  100% { box-shadow: 0 16px 42px rgba(35,68,143,.36), 0 2px 6px rgba(11,26,51,.12), inset 0 1px 0 rgba(255,255,255,.22); }
}
.help-fab:focus-visible { outline-color: var(--accent-dark) !important; }
::selection { background: rgba(35, 68, 143, 0.18); color: var(--text); }

/* --- Nav links underline blue --- */
.nav-links a::after {
  background: linear-gradient(90deg, var(--brand-400), var(--brand-600));
}
.nav-links a:hover { color: var(--brand-800); }

/* --- Plan featured card blue --- */
.plan-card.is-featured {
  border-color: var(--brand-400);
  box-shadow: 0 16px 48px rgba(35, 68, 143, 0.20);
}
.plan-card.is-featured::before {
  background: linear-gradient(90deg, #2e52a0, #17306b);
  letter-spacing: 0.12em;
}
.plan-card:hover { border-color: var(--brand-400); }

/* --- Checkout steps blue --- */
.co-step-row .step.is-active {
  background: linear-gradient(180deg, #2e52a0, #23448f);
  border-color: var(--brand-700);
  color: #fff;
  box-shadow: 0 10px 28px rgba(35, 68, 143, 0.28);
}
.radio-pill input:checked + label {
  background: var(--brand-50);
  border-color: var(--brand-500);
  color: var(--brand-800);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus,
.domain-search:focus-within {
  border-color: var(--brand-500) !important;
  box-shadow: 0 0 0 4px rgba(35, 68, 143, 0.10) !important;
}
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea {
  box-shadow: 0 0 0 3px rgba(217, 54, 54, 0.10) !important;
}
.status-pill.placed { background: var(--brand-50); color: var(--brand-800); }
.success-check {
  background: linear-gradient(180deg, #2e52a0 0%, #17306b 100%);
  box-shadow: 0 16px 44px rgba(35, 68, 143, 0.26);
}

/* --- Typography polish: clamp sizes, measure control, no overflow --- */
body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  word-break: break-word;
  overflow-wrap: anywhere;
}
h1 { font-size: clamp(2.1rem, 4.2vw + 0.8rem, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 2.4vw + 0.8rem, 2.35rem); font-weight: 700; }
h3 { font-size: clamp(1.18rem, 0.9vw + 0.9rem, 1.45rem); font-weight: 700; }
h4 { font-size: 1.08rem; font-weight: 700; }

p, li, td, th, blockquote, label {
  overflow-wrap: anywhere;
}
p { max-width: 70ch; }
.section-lead, .lead {
  font-size: clamp(1rem, 0.3vw + 0.92rem, 1.12rem);
  line-height: 1.65;
  max-width: 64ch;
  color: var(--text-muted);
}
.section-lead p, .lead p, .muted { color: var(--text-muted); }

/* --- Container spacing / vertical rhythm tighten --- */
.container { max-width: var(--container); padding-inline: clamp(16px, 3vw, 28px); }
section, .section { padding-block: clamp(48px, 7vw, 88px); }
.section-head { margin-bottom: clamp(28px, 4vw, 48px); }
.section-head h2 { margin-bottom: 0.55em; }
.surface { padding: clamp(18px, 2.2vw, 26px); }
body { background: var(--bg); }

/* --- Contrast bump for legibility --- */
.muted, .text-dim, .sub, .co-fields-wrap .muted, #checkout-status {
  color: var(--text-muted);
}
.text-muted, .dr-meta, .hero-stats span, .eyebrow { color: var(--text-muted); }
a:not(.btn):not(.nav-link):not(.nav-links a):not(.cart-empty-cta) {
  color: var(--brand-700);
  font-weight: 600;
  text-decoration: none;
}
a:not(.btn):hover { color: var(--brand-800); text-decoration: underline; text-underline-offset: 2px; }

/* --- Eyebrow / hero stats vertical alignment --- */
.eyebrow.light, .eyebrow {
  color: var(--brand-800);
  background: var(--brand-50);
  border-color: var(--brand-100);
}
.hero-stats strong {
  color: var(--brand-700);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.6rem, 1.8vw + 0.9rem, 2.2rem);
  font-weight: 700;
  line-height: 1.1;
  display: block;
}
.hero-stats span {
  display: block;
  margin-top: 4px;
  font-size: 0.9rem;
}
.hero-stats > div { padding: clamp(14px, 2vw, 22px) 16px; }

/* --- Trust strip pill contrast --- */
.hero-trust .tr-item {
  color: var(--text-soft);
  font-weight: 600;
  background: #fff;
  border-color: var(--border);
}

/* --- TLD pills blue --- */
.tld-pill:hover {
  background: var(--brand-50);
  border-color: var(--brand-400);
  color: var(--brand-800);
}

/* --- Testimonial top border blue --- */
.testimonial { border-top: 4px solid var(--brand-500); }
.testimonial cite { color: var(--brand-800); font-weight: 700; }

/* --- FAQ divider stronger --- */
.faq-item + .faq-item { margin-top: 14px; }
details.faq-item[open] { border-color: var(--brand-200); }

/* --- Search input blue focus ring --- */
.domain-search:focus-within {
  border-color: var(--brand-500);
  box-shadow: 0 0 0 5px rgba(35, 68, 143, 0.09), var(--shadow-md);
}

/* --- Toast info blue --- */
.toast-info { border-left-color: var(--brand-500); }
.toast-info .toast-icon { color: var(--brand-700); }
.toast-info .toast-msg strong { color: var(--brand-800); }

/* --- Domain result pills --- */
.dr-status.ok, .dr-status.available, .status-pill.status-available {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8f6f0;
  color: var(--ok);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid #b9e3cd;
}
.dr-status.taken, .dr-status.unavailable {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fdecec;
  color: var(--bad);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1px solid #f4bfbf;
}
.domain-result.is-available {
  border-color: #cfe7dc;
  box-shadow: 0 10px 28px rgba(15, 161, 102, 0.07), var(--shadow-sm);
}
.domain-result.is-unavailable { opacity: 0.75; }

/* --- Remove clipped text: ensure FAB + hero buttons never clip --- */
.help-fab-text strong, .help-fab-sub, .btn {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: anywhere;
}
.help-fab {
  align-items: center;
  line-height: 1.15;
}
@media (max-width: 640px) {
  .help-fab-text strong { white-space: normal; line-height: 1.2; }
  .help-fab-sub { white-space: normal; line-height: 1.3; }
}

/* --- Domain result button alignment --- */
.result-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* --- Section divider cleaner --- */
.section-dark {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, #fbfcfe 0%, #f3f6fb 100%);
}

/* --- Logo vertical sizing: never squish --- */
.brand-logo {
  width: auto;
  height: 64px;
  max-height: 64px;
  object-fit: contain;
  object-position: left center;
  display: block;
  flex-shrink: 0;
}
.footer-logo.brand-logo {
  height: 80px;
  max-height: 80px;
}
@media (max-width: 640px) {
  .brand-logo { height: 48px; max-height: 48px; }
  .footer-logo.brand-logo { height: 60px; max-height: 60px; }
}

/* --- Header alignment --- */
.header-inner {
  min-height: var(--header-h);
  align-items: center;
  gap: 18px;
}
.nav-links {
  align-items: center;
}
.site-header {
  border-bottom: 1px solid var(--border);
}
.header-cta {
  align-items: center;
  gap: 10px;
}

/* --- Footer clean --- */
.site-footer {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%);
  border-top: 1px solid var(--border);
}

/* --- Floating stat about section contrast + align --- */
.floating-stat {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--brand-100);
  color: var(--text-soft);
}
.floating-stat strong { color: var(--brand-800); font-family: 'Space Grotesk', sans-serif; font-weight: 700; }
.split-media::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 65%, rgba(35, 68, 143, 0.12) 100%);
}

/* ========================================================================
   NUCLEAR FINAL POLISH — BlueGorilla blue-only guarantee + a11y + overflow
   ======================================================================== */

/* --- Material Symbols a11y belt-and-braces: never speak ligatures --- */
.material-symbols-outlined,
[class*="-icon"] .material-symbols-outlined,
.mi .material-symbols-outlined,
.mi,
[class*="-icon"] {
  speak: never;
  -webkit-user-select: none;
  user-select: none;
}

/* --- Global text overflow: never let text break containers --- */
*, *::before, *::after {
  word-break: break-word;
  overflow-wrap: anywhere;
}
h1, h2, h3, h4, h5, h6 {
  overflow-wrap: anywhere;
  hyphens: auto;
}
p, li, span, a, button, label, td, th, div {
  overflow-wrap: anywhere;
}

/* --- Catch any remaining orange gradient/image source rules --- */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-outline:hover,
.btn-ghost:hover,
.help-fab,
.help-fab:hover {
  background-image: none !important;
}
.btn-primary { background: linear-gradient(180deg, #3b67b5 0%, var(--cta) 100%) !important; }
.btn-primary:hover { background: linear-gradient(180deg, #4a77c5 0%, var(--brand-600) 100%) !important; }
.help-fab { background: linear-gradient(180deg, #3b67b5 0%, var(--brand-600) 55%, var(--accent-dark) 100%) !important; }
.help-fab:hover { background: linear-gradient(180deg, #4a77c5 0%, #23448f 55%, #006f84 100%) !important; }
.btn-primary, .btn-primary:hover, .help-fab, .help-fab:hover {
  box-shadow: 0 18px 48px rgba(35,68,143,0.32) !important;
}

/* --- Catch orphan orangish box-shadow tokens if any source rule wins --- */
[class*="featured"] {
  box-shadow: 0 16px 48px rgba(35,68,143,0.18) !important;
}
input:focus, select:focus, textarea:focus {
  box-shadow: 0 0 0 4px rgba(35,68,143,0.10) !important;
  border-color: var(--brand-400) !important;
}
::selection {
  background: rgba(35,68,143,0.18) !important;
  color: var(--text) !important;
}
.btn-outline {
  border: 1.5px solid var(--brand-200) !important;
}
.btn-ghost:hover {
  border-color: var(--brand-200) !important;
}

/* --- Container max-width clamp for ultra-wide screens (2560px+) so content doesn't feel lost --- */
.container, .container-sm, .container-lg {
  max-width: 1200px !important;
}

/* --- Card content vertical padding harmony --- */
.usp-card, .plan-card, .tld-card, .service-card, .trust-grid-item, .contact-method,
.cart-item, .summary-item, .result-row, .checkout-panel, .checkout-summary,
.domain-message, .co-status, .form-status, .sandbox-banner {
  padding-top: clamp(18px, 2.2vh, 26px) !important;
  padding-bottom: clamp(18px, 2.2vh, 26px) !important;
}

/* --- Heading line-height visual polish --- */
h1 { line-height: 1.1 !important; }
h2 { line-height: 1.2 !important; }
h3 { line-height: 1.25 !important; }

/* --- CTA button minimum tap target (WCAG 44x44) --- */
.btn {
  min-height: 48px !important;
  line-height: 1.15 !important;
}

/* ========================================================================
   FINAL CASCADE OVERRIDE v13 — fixes: nav wrap, contact ghost ink,
   TLD/testimonial/trust card text on light surfaces, FAQ toggle icon
   white-on-blue, hero em contrast, footer WCAG AA legibility.
   POSITION LAST to guarantee cascade win.
   ======================================================================== */

/* --- 1. NAV: NO letter-level breaking; LEFT-aligned after brand, tight padding + logo cap --- */
.brand-logo { max-width: 280px !important; height: auto !important; width: auto !important; }
.header-inner { justify-content: space-between; gap: 12px; }
.nav { flex: 0 1 auto; display: flex; justify-content: flex-start; min-width: 0; margin: 0 4px; }
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: flex-start;
}
.nav-links li { list-style: none; flex-shrink: 0; }
.nav-links a {
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  flex-shrink: 0 !important;
  min-width: max-content !important;
  padding: 10px 10px !important;
  font-size: 0.92rem !important;
}

/* --- 2. CONTACT SECTION: light band + DARK ink everywhere (no ghost) --- */
.contact-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f8 100%) !important;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-copy .eyebrow.light { color: var(--brand-700) !important; }
.contact-copy h2 { color: var(--text) !important; }
.contact-copy h2 .accent { color: var(--brand-600) !important; }
.contact-copy .lead { color: var(--text-soft) !important; }
.contact-method {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm);
}
.contact-method h3 { color: var(--text) !important; }
.contact-method a { color: var(--brand-700) !important; font-weight: 700 !important; }
.contact-method a:hover { color: var(--brand-600) !important; }
.contact-method .sub { color: var(--text-muted) !important; }
.contact-method p { color: var(--text-soft) !important; }
.contact-icon {
  background: rgba(35, 68, 143, 0.08) !important;
  border: 1px solid var(--brand-200) !important;
  color: var(--brand-600) !important;
}
.contact-method:hover { border-color: var(--brand-300) !important; }
.contact-method:hover .contact-icon {
  background: rgba(35, 68, 143, 0.14) !important;
  color: var(--brand-700) !important;
}
.contact-form h3 { color: var(--text) !important; }
.contact-form > .muted { color: var(--text-muted) !important; }

/* --- 3. TLD PRICING CARDS: white surface; dark ink (no white-on-white) --- */
.tld-card {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm);
}
.tld-card > strong { color: var(--brand-800) !important; }
.tld-card > span { color: var(--text-muted) !important; }
.tld-card .tld-price strong { color: var(--brand-600) !important; }
.tld-card .tld-price span { color: var(--text-muted) !important; }
.tld-card:hover {
  background: var(--brand-50) !important;
  border-color: var(--brand-300) !important;
  transform: translateY(-2px);
}

/* --- 4. TESTIMONIALS: light surfaces on light band; dark ink --- */
.testimonials-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%) !important;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.testimonial-card {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm);
}
.testimonial-card p { color: var(--text-soft) !important; }
.testimonial-card footer strong { color: var(--text) !important; }
.testimonial-card footer span { color: var(--text-muted) !important; }
.testimonial-card::before { color: rgba(35, 68, 143, 0.14) !important; }

/* --- 5. FAQ: expanded toggle icon MUST be white on brand-600 blue pill --- */
.faq-item[open] summary .faq-toggle {
  background: var(--brand-600) !important;
  color: #fff !important;
}
.faq-item[open] summary .faq-toggle .material-symbols-outlined {
  color: #fff !important;
}
.faq-item summary::after,
.faq-item > summary::after {
  display: none !important;
}

/* --- 6. HERO: "Done once. Done right." was brand-100 pale (unreadable) --- */
.hero-lead em { color: var(--brand-700) !important; font-weight: 700 !important; }

/* --- 7. SERVICE CARDS: body copy darken for light GoDaddy surfaces --- */
.service-card > p { color: var(--text-soft) !important; }
.tick-list li { color: var(--text-soft) !important; }

/* --- 8. FOOTER legal/meta text: darken from text-dim → text-muted for AA --- */
.footer-legal { color: var(--text-muted) !important; }
.site-footer { color: var(--text-soft) !important; }
.site-footer a { color: var(--brand-700) !important; }
.site-footer a:hover { color: var(--brand-600) !important; }

/* --- 9. TRUST / USP GRID items: light cards dark copy --- */
.trust-item {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm);
}
.trust-item p { color: var(--text-soft) !important; }

/* --- 10. Guard: .section-head.light should revert to dark ink inside non-dark sections --- */
.section:not(.section-dark) .section-head.light .section-lead {
  color: var(--text-muted) !important;
}
.section:not(.section-dark) .section-head.light h2 {
  color: var(--text) !important;
}

/* --- 11. USP CARDS on any light section: dark ink + white surface --- */
.usp-card {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm);
  color: var(--text-soft) !important;
}
.usp-card p { color: var(--text-soft) !important; }

/* --- 12. HERO H1 default (fallback if gradient lost) dark for legibility --- */
.hero-title { color: var(--text) !important; }

/* ========================================================================
   FINAL CASCADE OVERRIDE v14 — fixes: all 17 pale-brand-100 text usages
   on light surfaces (FAIL WCAG AA), NAV Contact/Search-Domains abutment,
   muted-light ghost ink, TLD quick-chip contrast, eyebrow accessibility,
   USP card h3/icon, brands-copy, form-note, service-cta visibility,
   footer hover links, floating-stat & info-message ink.
   POSITION LAST to guarantee cascade win.
   ======================================================================== */

/* --- A. NAV: Guarantee 24px gap + explicit header-cta left-margin defense --- */
.header-inner { justify-content: space-between !important; gap: 24px !important; }
.header-cta { margin-left: 8px !important; gap: 10px !important; }
.nav-links a { padding: 8px 9px !important; font-size: 0.92rem !important; }
.brand-logo { max-width: 270px !important; }

/* --- B. 17x PALEST BLUE (--brand-100) → DARK BRAND BLUE foreground blanket --- */

/* B-1 eyebrow pill (L153) — formerly brand-100 pale on white pill = FAIL */
.eyebrow { color: var(--brand-700) !important; background: rgba(35,68,143,0.08) !important; border: 1px solid var(--brand-200) !important; }

/* B-2 link-light (L200/L2678) specialty TLD "Ask us" + hover — white hover killer */
.link-light { color: var(--brand-700) !important; font-weight: 700 !important; }
.link-light:hover { color: var(--brand-600) !important; }

/* B-3 hero-lead em — (already v13, reinforce) */
.hero-lead em { color: var(--brand-700) !important; font-weight: 700 !important; }

/* B-4 tld-chip strong — (".com.au from $13.30") price inside quick pill */
.tld-chip strong { color: var(--brand-700) !important; font-weight: 800 !important; }
.tld-chip { color: var(--text) !important; background: rgba(35,68,143,0.10) !important; border: 1px solid var(--brand-200) !important; }
.tld-chip:hover { background: rgba(35,68,143,0.18) !important; color: var(--text) !important; border-color: var(--brand-300) !important; }

/* B-5 domain-message.info — info banner ink */
.domain-message.info { color: var(--brand-700) !important; background: rgba(35,68,143,0.08) !important; border: 1px solid var(--brand-200) !important; }

/* B-6 brand-chip:hover — industry trust chip hover */
.brand-chip:hover { color: var(--brand-700) !important; background: rgba(35,68,143,0.08) !important; border-color: var(--brand-300) !important; }

/* B-7 service-cta — service card action link */
.service-cta { color: var(--brand-700) !important; font-weight: 700 !important; }
.service-cta:hover { color: var(--brand-600) !important; }

/* B-8 tld-card .tld-price strong — pricing card hero price (reinforce v13) */
.tld-card .tld-price strong { color: var(--brand-600) !important; }

/* B-9 floating-stat strong — about section big number (L1149) */
.floating-stat strong { color: var(--brand-700) !important; }

/* B-10 contact-methods misc (L1363 — any remaining contact-section pale ink) */
.contact-section .link-light, .contact-section .brand-100,
.contact-section a:not(.btn), .contact-method a { color: var(--brand-700) !important; }
.contact-section a:not(.btn):hover { color: var(--brand-600) !important; }

/* B-11 footer-col ul a:hover — footer link hover pale→brand */
.footer-col ul a:hover { color: var(--brand-700) !important; }

/* B-12 footer-bottom a:hover — back-to-top / bottom link hover */
.footer-bottom a:hover { color: var(--brand-700) !important; }

/* B-13 (line 2059 — any remaining pale copy) */
.plan-price-now, .plan-price-big, .pricing-accent { color: var(--brand-700) !important; }

/* B-14 status-pill.placed — order status pill */
.status-pill.placed { color: var(--brand-700) !important; background: rgba(35,68,143,0.08) !important; border-color: var(--brand-200) !important; }

/* B-15 toast-info .toast-icon — notification icon */
.toast-info .toast-icon { color: var(--brand-700) !important; }

/* B-16 (any .text-brand-100 utility classes if any) */
[class*="brand-100"]:not([class*="border"]):not([class*="bg"]):not([class*="shadow"]) {
  color: var(--brand-700) !important;
}

/* --- C. GHOST INK REPAIR: muted-light was rgba(228,228,231,.75) = ~1.4:1 --- */
.muted-light { color: var(--text-muted) !important; }

/* --- D. BRANDS-COPY "TRUSTED BY MELBOURNE BUSINESSES" --- darken from text-dim */
.brands-copy { color: var(--text-muted) !important; }

/* --- E. FORM-NOTE small print: darken for AA --- */
.form-note { color: var(--text-muted) !important; font-size: 0.85rem !important; }

/* --- F. HERO USP 3-CARDS: right of domain-search — h3 & icon glyph dark & blue --- */
.usp-card {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  box-shadow: var(--shadow-sm) !important;
}
.usp-card h3 { color: var(--text) !important; font-weight: 700 !important; }
.usp-card p { color: var(--text-soft) !important; }
.usp-icon {
  background: rgba(35,68,143,0.08) !important;
  border: 1px solid var(--brand-200) !important;
  color: var(--brand-600) !important;
}
.usp-icon .material-symbols-outlined { color: var(--brand-600) !important; }

/* --- G. BRAND-CHIP base: ensure trust badge chips are dark ink on light surface --- */
.brand-chip {
  background: #fff !important;
  border: 1px solid var(--border) !important;
  color: var(--text-soft) !important;
  font-weight: 600 !important;
}

/* --- H. TLD-CARD .tld-price span: text-dim → text-muted for AA --- */
.tld-card .tld-price span { color: var(--text-muted) !important; }
.tld-card > span { color: var(--text-muted) !important; }

/* --- I. TICK-LIST inside service cards (reinforce + ensure no brand-100) --- */
.tick-list li { color: var(--text-soft) !important; }
.tick-list .material-symbols-outlined { color: var(--brand-600) !important; }

/* --- J. CART / CHECKOUT labels & muted items (prevent pale leak-through) --- */
.checkout-panel .muted, .order-summary .muted, .cart-empty .muted {
  color: var(--text-muted) !important;
}
.summary-item .price, .cart-item .cart-price { color: var(--text) !important; font-weight: 700 !important; }
.subtotal-row strong, .total-row strong { color: var(--text) !important; }
.total-final { color: var(--brand-700) !important; }

/* --- K. STEP INDICATORS & BADGES: darken text for consistent AA --- */
.step-label { color: var(--text-soft) !important; }
.step-indicator.active .step-label { color: var(--brand-700) !important; font-weight: 700 !important; }
.badge-featured, .badge-popular, [class*="MOST POPULAR"], [class*="BEST VALUE"] {
  background: var(--brand-600) !important;
  color: #fff !important;
  border-color: var(--brand-600) !important;
}

/* --- L. SANDBOX BANNER: ensure operator-only banner uses blue palette (no orange) --- */
.sandbox-banner {
  background: rgba(35,68,143,0.06) !important;
  border: 1px solid var(--brand-200) !important;
  color: var(--text-soft) !important;
}
.sandbox-banner strong, .sandbox-banner code { color: var(--brand-700) !important; }
.sandbox-banner .material-symbols-outlined { color: var(--brand-600) !important; }

/* ========================================================================
   FINAL CASCADE OVERRIDE v15 — fixes:
   - Footer .service-areas li (Melbourne Service Area suburb list) was
     --text-dim (FAIL WCAG AA) → darken to --text-muted for AA pass.
   - Final defense: catch-all [color*="text-dim"] anywhere customer-
     facing, upgrade to text-muted (no customer-visible sub-4.5:1 ink).
   ======================================================================== */

.service-areas li { color: var(--text-muted) !important; font-size: 0.86rem !important; }

/* Safety net: any remaining raw --text-dim foreground usage in page body → lift to text-muted */
p[style*="text-dim"],
[class*="text-dim"]:not([class*="border"]):not([class*="bg"]):not([class*="shadow"]):not(.material-symbols-outlined) {
  color: var(--text-muted) !important;
}

/* ========================================================================
   FINAL CASCADE OVERRIDE v16 — Eyebrow depilling:
   User disliked the bordered pill/chip "title in a frame" aesthetic
   (thick border + background rectangles). Strip all .eyebrow pills
   to clean uppercase text only. Zero border, zero bg, zero radius,
   keep letter-spacing + brand-700 text. Depill every .light variant also.
   ======================================================================== */

.eyebrow,
.eyebrow.light,
section .eyebrow,
.hero-copy .eyebrow,
.faq-copy .eyebrow,
.contact-copy .eyebrow,
.contact-copy .eyebrow.light,
.split-copy .eyebrow {
  color: var(--brand-700) !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  padding: 0 !important;
  box-shadow: none !important;
  font-size: 0.76rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  display: inline-block !important;
  margin-bottom: 14px !important;
}

/* ========================================================================
   FINAL CASCADE OVERRIDE v17 — Hero two fixes:
   (1) hero-stats was 4 cards (30+/Fixed/99.99%/100%) — user deleted
       "Fixed Renewal Pricing" card; so grid-template-columns: repeat(4,1fr)
       → repeat(3, 1fr). Mobile: stays 2-col.
   (2) USP 3 cards on right of domain-search were 3 narrow vertical columns
       (grid 3-cols each ~90px wide body text → tiny wrappped unreadable).
       Change .usp-grid to grid 1 COLUMN (3 stacked rows), and within EACH
       .usp-card keep flex-direction:ROW (icon left, content right) — so
       each USP is one horizontal ROW spanning full hero-search width,
       text unconstrained full-width readable line.
   ======================================================================== */

.hero-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.usp-grid {
  display: grid !important;
  grid-template-columns: 1fr !important;
  grid-template-rows: repeat(3, auto) !important;
  gap: 12px !important;
}

.usp-card {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 16px !important;
  align-items: center !important;
  padding: 14px 18px !important;
  background: #fff !important;
  border: 1px solid var(--border) !important;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04), 0 1px 3px rgba(16, 24, 40, 0.06) !important;
}

.usp-card .usp-icon {
  flex: 0 0 44px !important;
  width: 44px !important;
  height: 44px !important;
  align-self: center !important;
}

.usp-card > div:not(.usp-icon) {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px 14px !important;
  min-width: 0 !important;
}

.usp-card h3 {
  margin: 0 !important;
  flex: 0 0 auto !important;
  font-size: 1rem !important;
  color: var(--text) !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

.usp-card p {
  margin: 0 !important;
  flex: 1 1 220px !important;
  font-size: 0.9rem !important;
  line-height: 1.45 !important;
  color: var(--text-soft) !important;
}

/* --- v18: CONTACT left card padding match right form --- */
.contact-grid > div:first-child,
.contact-copy {
  padding: clamp(28px, 3vw, 40px) !important;
}
.contact-copy .lead { margin-bottom: 30px !important; }
.contact-methods {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
}

/* --- v19: REMOVE DROP-SHADOW FILTER FROM BRAND LOGO IMG --- */
.brand img,
.brand .brand-logo,
.brand-logo,
.footer-logo.brand-logo,
footer .brand img,
.site-header .brand img {
  filter: none !important;
  box-shadow: none !important;
  text-shadow: none !important;
}
.brand,
a.brand {
  box-shadow: none !important;
}

/* --- v20: HEADER 2-ROW LAYOUT: Row1 Logo+CTAs, Row2 Full Nav --- */
@media (min-width: 821px) {
  .header-inner {
    display: grid !important;
    grid-template-columns: 1fr auto !important;
    grid-template-areas:
      "brand cta"
      "nav   nav" !important;
    align-items: center !important;
    row-gap: 8px !important;
    column-gap: 24px !important;
    padding-top: 14px !important;
    padding-bottom: 12px !important;
  }
  .brand {
    grid-area: brand !important;
    justify-self: start !important;
    width: 100% !important;
  }
  .header-cta {
    grid-area: cta !important;
    justify-self: end !important;
  }
  .nav {
    grid-area: nav !important;
    flex: 0 0 100% !important;
    width: 100% !important;
    justify-content: flex-start !important;
    padding-top: 10px !important;
    margin-top: 2px !important;
    border-top: 1px solid rgba(13, 27, 51, 0.08) !important;
  }
  .nav-links {
    gap: 6px !important;
  }
  .nav-links a {
    padding: 10px 20px !important;
    font-size: 0.98rem !important;
  }
  .brand-logo {
    max-width: 340px !important;
    width: 100% !important;
    max-height: 78px !important;
    height: auto !important;
  }
}

/* --- v21: HERO fixes --- */
@media (min-width: 821px) {
  .hero-grid {
    align-items: start !important;
    align-content: start !important;
  }
  .hero-eyebrow,
  .hero-grid > .eyebrow {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: block !important;
    font-size: 0.92rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 8px !important;
    font-weight: 800 !important;
    color: var(--brand-700) !important;
  }
  .hero-search {
    margin-top: 0 !important;
    padding-top: 0 !important;
    align-self: start !important;
  }
  .hero-copy { align-self: start !important; }
}

/* --- v22: BRANDS section: center eyebrow heading, up-size, add spacing --- */
.brands-section {
  text-align: center !important;
}
.brands-eyebrow,
.brands-section > .container > .eyebrow {
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  margin: 0 auto 10px auto !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.2em !important;
  font-weight: 800 !important;
  color: var(--brand-700) !important;
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}
.brands-copy {
  text-align: center !important;
  margin: 0 auto 26px auto !important;
  max-width: 860px !important;
  font-size: 1.05rem !important;
  line-height: 1.55 !important;
  font-weight: 500 !important;
  color: var(--text-soft) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.brands-row {
  justify-content: center !important;
}
.brand-chip {
  font-size: 0.95rem !important;
  padding: 12px 22px !important;
}

/* --- v23: CART drawer sits below the new 2-row desktop sticky header --- */
@media (min-width: 821px) {
  .cart-drawer {
    top: 130px !important;
    height: calc(100vh - 130px) !important;
    z-index: 110 !important;
  }
}

/* --- v24: CHECKOUT stepper — done/completed step number is WHITE on green (not black) --- */
.co-step-row .step.is-done span {
  color: #fff !important;
}

/* --- v25: PRICING / tamper-fix UI support — no-op visual override placeholder --- */

/* --- v26: DOMAIN SEARCH result card restructure ---
   Available pill sits directly ABOVE domain name (not left-of in a row that made
   the pill stretch & stack letters vertically). Also ensure domain-message is now
   clearly shown above the cards list (where the user's red arrow pointed).
*/
.result-main { display: flex !important; align-items: center !important; gap: 12px !important; flex: 1 1 auto !important; min-width: 0 !important; }
.result-text { display: flex !important; flex-direction: column !important; align-items: flex-start !important; gap: 6px !important; flex: 1 1 auto !important; min-width: 0 !important; }
.result-text .status-pill { margin-bottom: 2px !important; }
.result-price { white-space: normal !important; }
.domain-message { margin-bottom: 14px !important; margin-top: 0 !important; }

/* --- v28: TLD PRICING ACCURACY — unconfirmed cards hide invented prices
   TLDs without API-verified or user-confirmed wholesale cost MUST NOT display
   a retail price. Instead they render an inline "Pricing on request" link that
   jumps to #contact. Matching style applied to .tld-chip quick-access chips in
   the nav/search row so inventories never leak a placeholder dollar value.
*/
.tld-card .tld-price a.tld-unconfirmed,
.tld-price .tld-unconfirmed {
  display: inline-block !important;
  font-family: 'Space Grotesk', sans-serif !important;
  font-weight: 700 !important;
  font-size: 1.05rem !important;
  color: var(--brand-700) !important;
  text-decoration: underline !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 3px !important;
  background: none !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  cursor: pointer !important;
}
.tld-card .tld-price a.tld-unconfirmed:hover {
  color: var(--brand-900) !important;
}
.tld-chip span.tld-unconfirmed-chip {
  color: var(--text-muted) !important;
  font-weight: 500 !important;
  font-size: 0.78rem !important;
}

/* --- v34: REMOVE status-pill double-icon
   Every status pill already carries a Material Symbol (check_circle / cancel) + word label.
   The legacy ::before 7px coloured dot was redundant and produced the classic
   "green-dot + checkmark double-icon" look. Kill it globally across all instances:
   domain search results, order summary rows, cart status chips, success page statuses.
   Defensive !important + also zeroed size in case of later re-renders with stale cache.
*/
.status-pill::before,
.status-pill::after {
  content: none !important;
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
}


