:root {
  --navy-950: #071a2f;
  --navy-900: #0b2440;
  --navy-800: #123756;
  --navy-700: #1b4d6e;
  --teal-700: #087d7a;
  --teal-600: #0b9791;
  --teal-500: #18aaa4;
  --teal-100: #dff6f3;
  --teal-50: #f1fbfa;
  --coral-600: #e65f45;
  --coral-500: #f57458;
  --coral-100: #ffe9e2;
  --amber-500: #f5b63f;
  --sand-100: #fff8ee;
  --sand-50: #fffcf7;
  --ink-900: #102b3b;
  --ink-700: #2f4d5c;
  --ink-600: #506976;
  --ink-500: #6d818b;
  --surface: #ffffff;
  --surface-alt: #f6f9fb;
  --line: #dce7ec;
  --line-strong: #c6d7de;
  --purple: #6d5bd0;
  --green: #12865f;
  --blue: #167db7;
  --orange: #d9791f;
  --warning-bg: #fff7da;
  --warning-ink: #644608;
  --shadow-xs: 0 4px 14px rgba(7, 26, 47, .06);
  --shadow-sm: 0 10px 28px rgba(7, 26, 47, .08);
  --shadow-md: 0 18px 48px rgba(7, 26, 47, .12);
  --shadow-lg: 0 28px 72px rgba(7, 26, 47, .17);
  --radius-sm: 12px;
  --radius: 20px;
  --radius-lg: 28px;
  --content: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  color: var(--ink-900);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
[hidden] { display: none !important; }
::selection { color: #fff; background: var(--teal-700); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(245, 116, 88, .45); outline-offset: 3px; }
main { overflow: clip; }

.container { width: min(var(--content), calc(100% - 40px)); margin-inline: auto; }
.narrow { width: min(820px, calc(100% - 40px)); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: #fff;
  background: var(--navy-900);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform .18s ease;
}
.skip-link:focus { transform: translateY(0); }

/* Affiliate disclosure */
.disclosure-bar {
  position: relative;
  z-index: 110;
  padding: 8px 0;
  color: #d9edf2;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
  text-align: center;
}
.disclosure-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.disclosure-dot {
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  background: var(--coral-500);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(245,116,88,.15);
}
.disclosure-bar a {
  color: #ffd378;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Header and navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid rgba(11,36,64,.09);
  box-shadow: 0 5px 20px rgba(7,26,47,.045);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.985);
  box-shadow: 0 10px 32px rgba(7,26,47,.10);
}
.nav {
  position: relative;
  z-index: 3;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.brand {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
}
.brand-text-link { min-width: 220px; }
.brand-name {
  color: var(--navy-900);
  font-size: 1.09rem;
  font-weight: 900;
  letter-spacing: -.025em;
}
.brand-subtitle {
  margin-top: 5px;
  color: var(--teal-700);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .095em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 23px;
  color: var(--ink-700);
  font-size: .9rem;
  font-weight: 780;
  white-space: nowrap;
}
.nav-links > a:not(.nav-button) {
  position: relative;
  padding: 12px 0;
  transition: color .18s ease;
}
.nav-links > a:not(.nav-button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--teal-600);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
}
.nav-links > a:not(.nav-button):hover,
.nav-links > a:not(.nav-button)[aria-current="page"] { color: var(--navy-900); }
.nav-links > a:not(.nav-button):hover::after,
.nav-links > a:not(.nav-button)[aria-current="page"]::after { transform: scaleX(1); }
.nav-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  color: #fff !important;
  background: var(--coral-500);
  border-radius: 999px;
  box-shadow: 0 9px 20px rgba(230,95,69,.22);
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}
.nav-button:hover {
  background: var(--coral-600);
  transform: translateY(-2px);
  box-shadow: 0 13px 25px rgba(230,95,69,.27);
}
.nav-toggle {
  display: none;
  position: relative;
  z-index: 5;
  width: 46px;
  height: 44px;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: var(--teal-50);
  border: 1px solid var(--line-strong);
  border-radius: 13px;
  cursor: pointer;
}
.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease, background .2s ease;
}
.nav-toggle-icon { position: relative; }
.nav-toggle-icon::before,
.nav-toggle-icon::after { content: ""; position: absolute; left: 0; }
.nav-toggle-icon::before { top: -6px; }
.nav-toggle-icon::after { top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after { transform: translateY(-6px) rotate(-45deg); }
.nav-backdrop {
  position: fixed;
  z-index: 90;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  background: rgba(7,26,47,.52);
  border: 0;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  cursor: default;
}

/* Typography and controls */
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink-900); }
h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 5vw, 4.55rem);
  line-height: 1.035;
  letter-spacing: -.052em;
}
h2 {
  margin-bottom: 17px;
  font-size: clamp(1.85rem, 3.35vw, 2.85rem);
  line-height: 1.1;
  letter-spacing: -.04em;
}
h3 { margin-bottom: 10px; font-size: 1.2rem; line-height: 1.3; }
p { margin-bottom: 1.1em; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--teal-700);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}
.eyebrow.dark { color: var(--teal-700); }
.button {
  display: inline-flex;
  min-height: 49px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 850;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.button::after { content: "→"; font-size: 1.05em; transition: transform .18s ease; }
.button:hover { transform: translateY(-2px); }
.button:hover::after { transform: translateX(3px); }
.button-primary { color: #fff; background: var(--coral-500); box-shadow: 0 11px 24px rgba(230,95,69,.21); }
.button-primary:hover { background: var(--coral-600); box-shadow: 0 15px 30px rgba(230,95,69,.26); }
.button-secondary { color: var(--navy-900); background: #fff; border: 1px solid var(--line-strong); box-shadow: var(--shadow-xs); }
.button-secondary:hover { background: var(--teal-50); border-color: var(--teal-500); }
.button-outline { color: #fff; background: transparent; border: 1px solid rgba(255,255,255,.45); }
.button-outline:hover { background: rgba(255,255,255,.10); border-color: #fff; }
.button-dark { color: #fff; background: var(--navy-900); box-shadow: 0 11px 24px rgba(7,26,47,.18); }
.button-dark:hover { background: var(--navy-800); }
.button-light { color: var(--navy-900); background: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.16); }
.full { width: 100%; }
.text-link {
  color: var(--teal-700);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}
.text-link:hover { color: var(--coral-600); }

/* Homepage hero */
.hero, .page-hero, .keyword-hero { position: relative; isolation: isolate; overflow: hidden; }
.home-hero {
  padding: 82px 0 96px;
  background:
    radial-gradient(circle at 88% 10%, rgba(245,182,63,.22), transparent 22%),
    radial-gradient(circle at 8% 14%, rgba(24,170,164,.14), transparent 28%),
    linear-gradient(135deg, #fffdf9 0%, var(--sand-100) 58%, #f2fbf9 100%);
  border-bottom: 1px solid var(--line);
}
.home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -190px;
  top: -285px;
  width: 670px;
  height: 670px;
  background: linear-gradient(145deg, rgba(24,170,164,.17), rgba(24,170,164,.025));
  border: 1px solid rgba(24,170,164,.17);
  border-radius: 50%;
}
.home-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 18%;
  bottom: -95px;
  width: 200px;
  height: 200px;
  background: rgba(245,116,88,.09);
  border-radius: 50%;
}
.hero-wave { display: none; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(350px,.92fr);
  gap: 56px;
  align-items: center;
}
.home-hero h1 { max-width: 720px; }
.home-hero h1 .accent { color: var(--teal-700); }
.hero-lead {
  max-width: 720px;
  color: var(--ink-700);
  font-size: clamp(1.03rem,1.5vw,1.16rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.trust-points { display: flex; flex-wrap: wrap; gap: 9px 18px; margin-top: 25px; }
.trust-points span {
  position: relative;
  padding-left: 21px;
  color: var(--ink-700);
  font-size: .86rem;
  font-weight: 760;
}
.trust-points span::before { content: "✓"; position: absolute; left: 0; color: var(--teal-700); font-weight: 950; }
.hero-panel {
  position: relative;
  padding: 28px;
  color: var(--ink-900);
  background: rgba(255,255,255,.96);
  border: 1px solid rgba(11,36,64,.11);
  border-top: 5px solid var(--teal-500);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.panel-topline { display: flex; justify-content: space-between; align-items: center; gap: 15px; margin-bottom: 18px; }
.panel-label, .pick-badge {
  display: inline-block;
  color: var(--teal-700);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.panel-status { display: inline-flex; align-items: center; gap: 7px; color: var(--ink-500); font-size: .76rem; font-weight: 700; }
.panel-status::before { content: ""; width: 8px; height: 8px; background: var(--teal-500); border-radius: 50%; box-shadow: 0 0 0 4px rgba(24,170,164,.13); }
.hero-panel h2 { margin-bottom: 8px; font-size: clamp(1.55rem,2.7vw,2rem); }
.hero-panel > p { color: var(--ink-600); }
.quick-list { display: grid; gap: 9px; margin: 21px 0 18px; padding: 0; list-style: none; }
.quick-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  background: var(--surface-alt);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.quick-list li:first-child { background: var(--coral-100); border-color: #ffd1c4; }
.quick-list div { display: grid; }
.quick-list strong { color: var(--ink-900); }
.quick-list small { color: var(--ink-500); }
.microcopy { color: var(--ink-500); font-size: .81rem; }
.hero-panel .microcopy { margin-bottom: 0; }

/* Internal-page heroes */
.page-hero, .keyword-hero {
  color: #fff;
  background:
    radial-gradient(circle at 88% 15%, rgba(67,220,207,.16), transparent 28%),
    radial-gradient(circle at 7% 8%, rgba(245,116,88,.15), transparent 24%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 52%, var(--navy-700) 100%);
}
.page-hero { padding: 68px 0 74px; }
.keyword-hero { padding: 62px 0 68px; }
.page-hero::after, .keyword-hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  right: -110px;
  bottom: -220px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.018), 0 0 0 140px rgba(255,255,255,.012);
}
.page-hero .container, .keyword-hero .container { position: relative; z-index: 1; }
.page-hero h1, .keyword-hero h1, .page-hero h2, .keyword-hero h2, .provider-hero h1 { color: #fff; }
.page-hero p, .keyword-hero-grid > div > p { max-width: 800px; color: #d6e8ee; font-size: 1.06rem; }
.page-hero .eyebrow, .keyword-hero .eyebrow, .provider-hero .eyebrow { color: #ffd378; }
.keyword-hero h1 { font-size: clamp(2.25rem,4.45vw,4rem); }
.keyword-hero-grid { display: grid; grid-template-columns: minmax(0,1fr) 350px; gap: 40px; align-items: start; }
.keyword-pick {
  padding: 24px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 23px;
  box-shadow: 0 22px 55px rgba(0,0,0,.18);
  backdrop-filter: blur(12px);
}
.keyword-pick .provider-top p { margin: 0; color: #d8e9ee; }
.keyword-pick .pick-badge { color: #ffd378; }
.keyword-pick h2 { margin: 0; color: #fff; font-size: 1.52rem; }
.keyword-pick .microcopy { color: #c4dce3; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 21px; color: #b8d0da; font-size: .85rem; }
.breadcrumbs a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }

/* Sections */
.section { padding: 78px 0; }
.intro-section, .article-section, .comparison-preview, .guide-links-section, .choose-section { background: var(--sand-50); }
.providers-section, .faq-section { background: #fff; }
.final-cta { background: var(--teal-50); }
.section-heading { max-width: 790px; margin: 0 auto 40px; text-align: center; }
.section-heading.left { margin-left: 0; text-align: left; }
.section-heading p { color: var(--ink-600); font-size: 1.02rem; }
.split-intro { display: grid; grid-template-columns: .88fr 1.12fr; gap: 58px; align-items: start; }
.split-intro p { color: var(--ink-600); font-size: 1.03rem; }
.trust-strip { padding: 20px 0; background: var(--teal-50); border-bottom: 1px solid var(--line); }
.trust-strip-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.trust-item { display: flex; align-items: center; gap: 10px; color: var(--ink-700); font-size: .87rem; font-weight: 760; }
.trust-icon {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--navy-900);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-xs);
}

/* Provider cards */
.provider-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 22px; }
.provider-grid.three { grid-template-columns: repeat(3,minmax(0,1fr)); }
.provider-card {
  position: relative;
  overflow: hidden;
  padding: 29px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.provider-card:hover { transform: translateY(-4px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.provider-card::before { content: ""; position: absolute; inset: 0 0 auto; height: 4px; background: var(--purple); }
.provider-card.provider-green::before { background: var(--green); }
.provider-card.provider-blue::before { background: var(--blue); }
.provider-card.provider-orange::before { background: var(--orange); }
.provider-card.compact { padding: 24px; }
.provider-top { display: flex; gap: 14px; align-items: center; margin-bottom: 17px; }
.provider-top h3 { margin: 4px 0 0; color: var(--ink-900); }
.provider-top h3 small { display: block; margin-top: 3px; color: var(--ink-500); font-size: .8rem; font-weight: 700; }
.provider-card > p { color: var(--ink-600); }
.provider-dot, .provider-logo {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  border-radius: 14px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.24), 0 7px 17px rgba(7,26,47,.12);
}
.provider-logo.large { width: 66px; height: 66px; border-radius: 18px; font-size: 1.1rem; }
.provider-purple .provider-logo, .provider-dot.provider-purple, .provider-purple.provider-logo { background: linear-gradient(135deg,#7c6fe0,#5947bd); }
.provider-green .provider-logo, .provider-dot.provider-green, .provider-green.provider-logo { background: linear-gradient(135deg,#2ab884,#0e7957); }
.provider-blue .provider-logo, .provider-dot.provider-blue, .provider-blue.provider-logo { background: linear-gradient(135deg,#35a0d8,#0a6da8); }
.provider-orange .provider-logo, .provider-dot.provider-orange, .provider-orange.provider-logo { background: linear-gradient(135deg,#f1a83a,#cd6814); }
.tick-list, .feature-list, .checklist, .related-list { padding: 0; list-style: none; }
.tick-list li, .feature-list li, .checklist li { position: relative; margin: 8px 0; padding-left: 27px; }
.tick-list li::before, .feature-list li::before, .checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: #fff;
  background: var(--teal-600);
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 950;
}
.best-for {
  padding: 13px 15px;
  color: var(--ink-900) !important;
  background: var(--teal-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .9rem;
}
.card-actions { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }

/* Finder */
.finder-section { position: relative; color: #fff; background: var(--navy-950); }
.finder-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 10%,rgba(245,116,88,.14),transparent 23%), radial-gradient(circle at 86% 76%,rgba(24,170,164,.18),transparent 27%);
  pointer-events: none;
}
.finder-section .container { position: relative; }
.finder-section h2, .finder-section h3 { color: #fff; }
.finder-section .section-heading p { color: #c8dce4; }
.finder-grid { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(330px,.9fr); gap: 28px; align-items: stretch; }
.finder-choices { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.finder-choice {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 19px;
  text-align: left;
  color: #fff;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 17px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.finder-choice:hover, .finder-choice.is-active { transform: translateY(-2px); background: rgba(255,255,255,.12); border-color: rgba(245,182,63,.72); }
.finder-choice-icon { display: grid; width: 43px; height: 43px; flex: 0 0 auto; place-items: center; color: var(--navy-950); background: #ffd378; border-radius: 13px; font-size: 1.2rem; }
.finder-choice strong { display: block; margin-bottom: 3px; font-size: .98rem; }
.finder-choice small { display: block; color: #c7dce3; line-height: 1.45; }
.finder-result { display: flex; flex-direction: column; justify-content: center; padding: 29px; color: var(--ink-900); background: #fff; border-radius: 23px; box-shadow: 0 23px 56px rgba(0,0,0,.22); }
.finder-result-label { color: var(--teal-700); font-size: .71rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.finder-result h3 { margin: 8px 0 10px; color: var(--ink-900); font-size: 1.75rem; }
.finder-result p { color: var(--ink-600); }
.finder-result .button { align-self: flex-start; }

/* Tables and grids */
.table-wrap { overflow: auto; background: #fff; border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; min-width: 800px; border-collapse: collapse; }
.comparison-table.large-table, .large-table { min-width: 980px; }
.comparison-table th, .comparison-table td { padding: 17px 18px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; }
.comparison-table th { color: var(--navy-900); background: var(--teal-50); font-size: .72rem; letter-spacing: .075em; text-transform: uppercase; }
.comparison-table tbody tr:nth-child(even) { background: #fbfdfe; }
.comparison-table tbody tr:hover { background: #f1faf9; }
.comparison-table td small { display: block; color: var(--ink-500); }
.comparison-table td a { color: var(--teal-700); font-weight: 850; }
.comparison-table tr:last-child td { border-bottom: 0; }
.centre-action { margin-top: 28px; text-align: center; }
.priority-grid { display: grid; grid-template-columns: repeat(4,minmax(0,1fr)); gap: 18px; }
.priority-grid article { padding: 25px; background: #fff; border: 1px solid var(--line); border-radius: 19px; box-shadow: var(--shadow-xs); }
.priority-grid article > span { display: grid; width: 38px; height: 38px; place-items: center; color: var(--navy-900); background: #ffd378; border-radius: 11px; font-size: .75rem; font-weight: 900; }
.priority-grid h3 { margin-top: 17px; }
.priority-grid p { color: var(--ink-600); margin-bottom: 0; }
.guide-link-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 14px; }
.guide-link-grid a { position: relative; display: grid; gap: 5px; padding: 22px 52px 22px 22px; background: #fff; border: 1px solid var(--line); border-radius: 17px; box-shadow: var(--shadow-xs); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.guide-link-grid a::after { content: "→"; position: absolute; right: 21px; top: 50%; color: var(--coral-500); font-size: 1.3rem; font-weight: 900; transform: translateY(-50%); }
.guide-link-grid a:hover { transform: translateY(-2px); border-color: var(--teal-500); box-shadow: var(--shadow-sm); }
.guide-link-grid strong { color: var(--ink-900); }
.guide-link-grid span { color: var(--ink-600); }

/* FAQ, CTAs and notices */
details { padding: 18px 20px; background: #fff; border: 1px solid var(--line); border-radius: 15px; box-shadow: 0 5px 18px rgba(7,26,47,.04); }
details + details { margin-top: 11px; }
summary { position: relative; padding-right: 26px; color: var(--ink-900); font-weight: 850; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: -1px; color: var(--coral-500); font-size: 1.3rem; font-weight: 900; }
details[open] summary::after { content: "−"; }
details p:last-child { margin-bottom: 0; }
.cta-panel { position: relative; overflow: hidden; display: flex; align-items: center; justify-content: space-between; gap: 29px; padding: 40px; color: #fff; background: linear-gradient(135deg,var(--navy-950),var(--navy-700)); border-radius: 25px; box-shadow: var(--shadow-md); }
.cta-panel::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 250px; height: 250px; background: rgba(24,170,164,.14); border-radius: 50%; }
.cta-panel > * { position: relative; z-index: 1; }
.cta-panel h2 { max-width: 700px; color: #fff; }
.cta-panel p { margin-bottom: 0; color: #d2e4e9; }
.notice-card { margin-bottom: 25px; padding: 17px 19px; color: var(--warning-ink); background: var(--warning-bg); border: 1px solid #ebcd80; border-radius: 14px; }

/* Long-form, provider and keyword pages */
.article-layout, .content-grid { display: grid; grid-template-columns: minmax(0,1fr) 310px; gap: 31px; align-items: start; }
.article-card, .guide-article, .sidebar-box, .contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.article-card, .guide-article { padding: 37px; }
.article-card p, .guide-article p { color: #476270; font-size: 1rem; }
.article-card h2, .guide-article h2 { margin-top: 37px; font-size: clamp(1.58rem,2.8vw,2.25rem); }
.article-card h2:first-child, .guide-article h2:first-child { margin-top: 0; }
.article-card h3, .guide-article h3 { margin-top: 25px; }
.article-sidebar, .guide-sidebar { position: sticky; top: 102px; display: grid; gap: 16px; }
.sidebar-box { padding: 22px; }
.sidebar-box:first-child { border-top: 4px solid var(--coral-500); }
.sidebar-box p { color: var(--ink-600); }
.review-date { color: var(--teal-700) !important; font-size: .79rem !important; font-weight: 900; letter-spacing: .075em; text-transform: uppercase; }
.inline-cta { display: flex; align-items: center; justify-content: space-between; gap: 19px; margin-top: 35px; padding: 24px; background: var(--teal-50); border: 1px solid var(--line); border-radius: 17px; }
.inline-cta h3 { margin-bottom: 6px; }
.inline-cta p { margin-bottom: 0; }
.provider-heading { display: flex; align-items: center; gap: 21px; margin-bottom: 27px; }
.provider-heading h1 { margin-bottom: 9px; font-size: clamp(2.35rem,4.7vw,4.25rem); }
.provider-hero.provider-purple { box-shadow: inset 0 -5px 0 var(--purple); }
.provider-hero.provider-green { box-shadow: inset 0 -5px 0 var(--green); }
.provider-hero.provider-blue { box-shadow: inset 0 -5px 0 var(--blue); }
.provider-hero.provider-orange { box-shadow: inset 0 -5px 0 var(--orange); }
.keyword-cards { grid-template-columns: repeat(2,minmax(0,1fr)); margin: 26px 0; }
.verification-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 11px; padding: 0; }
.verification-list li { display: grid; gap: 4px; padding: 16px; background: var(--teal-50); border: 1px solid var(--line); border-radius: 14px; list-style: none; }
.verification-list span { color: var(--ink-600); font-size: .88rem; }
.related-list { margin: 0; }
.related-list li + li { margin-top: 8px; }
.related-list a { display: block; padding: 10px 12px; color: var(--teal-700); background: var(--teal-50); border: 1px solid transparent; border-radius: 10px; font-size: .87rem; font-weight: 800; }
.related-list a:hover { color: var(--coral-600); background: var(--coral-100); border-color: #ffd1c4; }
.prose h2 { margin-top: 36px; }

/* Guide hubs */
.hub-intro { display: flex; align-items: center; justify-content: space-between; gap: 28px; margin-bottom: 29px; padding: 23px; background: var(--sand-100); border: 1px solid #f2e2cd; border-radius: 18px; }
.hub-intro h2 { margin-bottom: 6px; font-size: 1.58rem; }
.hub-intro p { margin-bottom: 0; color: var(--ink-600); }
.guide-index { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 10px; padding: 0; list-style: none; }
.guide-index a { position: relative; display: flex; height: 100%; align-items: center; padding: 15px 39px 15px 16px; color: var(--ink-700); background: #fff; border: 1px solid var(--line); border-radius: 13px; font-weight: 780; box-shadow: 0 4px 14px rgba(7,26,47,.03); transition: transform .16s ease, border-color .16s ease, color .16s ease, box-shadow .16s ease; }
.guide-index a::after { content: "↗"; position: absolute; right: 14px; color: var(--coral-500); }
.guide-index a:hover { transform: translateY(-2px); color: var(--teal-700); border-color: var(--teal-500); box-shadow: var(--shadow-xs); }
.pagination { display: flex; flex-wrap: wrap; gap: 7px; align-items: center; margin-top: 30px; }
.pagination a, .pagination span { display: grid; min-width: 40px; height: 40px; place-items: center; background: #fff; border: 1px solid var(--line); border-radius: 999px; font-weight: 850; }
.pagination a:hover { color: var(--coral-600); border-color: var(--coral-500); }
.pagination span { color: #fff; background: var(--teal-700); border-color: var(--teal-700); }
.pagination i { padding: 0 5px; }

/* Contact */
.contact-layout { display: grid; grid-template-columns: .82fr 1.18fr; gap: 39px; }
.contact-form { padding: 29px; }
.contact-form label { display: grid; gap: 7px; margin-bottom: 15px; color: var(--ink-700); font-weight: 800; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink-900);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
}
.contact-form textarea { resize: vertical; min-height: 160px; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(24,170,164,.12); outline: 0; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 72px 0 22px;
  color: #fff;
  background: var(--navy-950);
  border-top: 5px solid var(--teal-500);
}
.site-footer::after {
  content: "";
  position: absolute;
  right: -190px;
  bottom: -280px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.014), 0 0 0 140px rgba(255,255,255,.01);
}
.footer-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.55fr .72fr .72fr; gap: 44px; }
.footer-grid > div:first-child p { max-width: 500px; color: #b8ced8; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: 9px; }
.footer-grid h3 { color: #fff; font-size: .84rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-grid a { color: #d5e3e9; }
.footer-grid a:hover { color: #ffd378; }
.footer-brand { margin-bottom: 17px; }
.footer-text-link .brand-name { color: #fff; font-size: 1.15rem; }
.footer-text-link .brand-subtitle { color: #65d1ca; }
.footer-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 9px; color: #98b4c0; font-size: .79rem; }
.footer-note::before { content: ""; width: 7px; height: 7px; background: var(--coral-500); border-radius: 50%; }
.footer-bottom { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 20px; margin-top: 38px; padding-top: 19px; color: #8da9b5; border-top: 1px solid rgba(255,255,255,.10); font-size: .79rem; }

/* Contact response pages */
.form-response { min-height: 100vh; display: grid; place-items: center; padding: 30px; background: linear-gradient(135deg,var(--sand-100),var(--teal-50)); }
.response-card { width: min(700px,100%); padding: 38px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-md); }
.response-brand { display: inline-flex; margin-bottom: 25px; }
.response-card h1 { max-width: 620px; font-size: clamp(2.2rem,5.8vw,3.65rem); }
.response-list { margin: 0 0 25px; padding-left: 1.2rem; }
.response-list li { margin: 7px 0; }
.response-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 27px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

@media (max-width: 1080px) {
  .nav-links { gap: 17px; font-size: .86rem; }
  .brand-text-link { min-width: 205px; }
  .hero-grid, .keyword-hero-grid, .split-intro, .article-layout, .content-grid, .contact-layout, .finder-grid { grid-template-columns: 1fr; }
  .hero-grid { gap: 40px; }
  .hero-panel { max-width: 700px; }
  .provider-grid.three { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .priority-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .guide-index { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .article-sidebar, .guide-sidebar { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .article-sidebar .sidebar-box:first-child, .guide-sidebar .sidebar-box:first-child { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 920px) {
  html { scroll-padding-top: 86px; }
  .nav { min-height: 70px; }
  .brand-text-link { min-width: 0; }
  .brand-name { font-size: 1rem; }
  .brand-subtitle { font-size: .61rem; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute;
    z-index: 4;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    display: grid;
    align-items: stretch;
    justify-content: stretch;
    justify-items: stretch;
    gap: 3px;
    max-height: calc(100vh - 120px);
    padding: 13px;
    overflow: auto;
    color: var(--ink-900);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    white-space: normal;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(.985);
    transform-origin: top;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  }
  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav-links > a:not(.nav-button) { display: flex; align-items: center; justify-content: flex-start; padding: 12px 13px; border-radius: 10px; }
  .nav-links > a:not(.nav-button):hover,
  .nav-links > a:not(.nav-button)[aria-current="page"] { background: var(--teal-50); }
  .nav-links > a:not(.nav-button)::after { display: none; }
  .nav-button { width: 100%; margin-top: 5px; }
}

@media (max-width: 720px) {
  .container, .narrow { width: min(100% - 28px,var(--content)); }
  .disclosure-bar { padding: 7px 0; font-size: .72rem; line-height: 1.4; }
  .disclosure-bar .container { align-items: flex-start; gap: 7px; }
  .disclosure-dot { margin-top: 5px; }
  .nav { min-height: 66px; }
  .brand-name { font-size: .96rem; }
  .brand-subtitle { margin-top: 4px; font-size: .57rem; letter-spacing: .08em; }
  .home-hero { padding: 62px 0 68px; }
  .page-hero, .keyword-hero { padding: 50px 0 56px; }
  h1 { font-size: clamp(2.15rem,10.8vw,3.15rem); letter-spacing: -.046em; }
  h2 { font-size: clamp(1.72rem,7.6vw,2.35rem); }
  .section { padding: 60px 0; }
  .hero-panel, .keyword-pick { padding: 21px; border-radius: 21px; }
  .trust-strip-grid, .provider-grid, .provider-grid.three, .priority-grid, .guide-link-grid, .guide-index, .verification-list, .keyword-cards, .finder-choices, .article-sidebar, .guide-sidebar { grid-template-columns: 1fr; }
  .article-sidebar .sidebar-box:first-child, .guide-sidebar .sidebar-box:first-child { grid-column: auto; }
  .article-card, .guide-article { padding: 23px; }
  .cta-panel, .inline-cta, .hub-intro { align-items: flex-start; flex-direction: column; }
  .cta-panel { padding: 29px 23px; }
  .finder-result { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 29px; }
  .footer-grid > div:first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .provider-heading { align-items: flex-start; flex-direction: column; }
  .response-card { padding: 27px 22px; }
  .card-actions { align-items: stretch; flex-direction: column; }
  .card-actions .button, .card-actions .text-link { width: 100%; text-align: center; }
  .trust-item { font-size: .83rem; }
  .table-wrap { margin-inline: -2px; }
}

@media (max-width: 480px) {
  .brand-subtitle { display: none; }
  .brand-name { max-width: 190px; font-size: .92rem; line-height: 1.12; }
  .nav-toggle { width: 43px; height: 41px; }
  .nav-links { top: calc(100% + 7px); }
  .hero-actions .button { width: 100%; }
  .hero-panel { padding: 18px; }
  .panel-topline { align-items: flex-start; flex-direction: column; gap: 8px; }
  .provider-card { padding: 23px 20px; }
  .button { padding-inline: 18px; }
  .trust-points { display: grid; }
  .response-actions .button { width: 100%; }
}

@media print {
  .disclosure-bar, .site-header, .site-footer, .nav-toggle, .nav-backdrop, .hero-actions, .card-actions, .button { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .hero, .page-hero, .keyword-hero { color: #000; background: #fff; }
  .page-hero h1, .keyword-hero h1, .provider-hero h1 { color: #000; }
  .article-card, .guide-article, .provider-card, .sidebar-box { box-shadow: none; }
}

/* Sitewide provider links: ensures every page offers a clear route to each hosting company. */
.provider-footer-links {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  margin-top: 34px;
  padding: 18px 20px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 16px;
}
.provider-footer-intro { display: grid; gap: 3px; }
.provider-footer-intro strong { color: #fff; font-size: .92rem; }
.provider-footer-intro span { color: #a9c0ca; font-size: .78rem; line-height: 1.5; }
.provider-footer-buttons { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.provider-footer-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 13px;
  color: #fff;
  background: rgba(20,183,176,.14);
  border: 1px solid rgba(101,209,202,.34);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  transition: transform .16s ease, background-color .16s ease, border-color .16s ease;
}
.provider-footer-buttons a:hover,
.provider-footer-buttons a:focus-visible {
  color: #071b2f;
  background: #65d1ca;
  border-color: #65d1ca;
  transform: translateY(-1px);
}

@media (max-width: 820px) {
  .provider-footer-links { grid-template-columns: 1fr; align-items: start; }
  .provider-footer-buttons { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .provider-footer-links { padding: 17px; }
  .provider-footer-buttons { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); width: 100%; }
  .provider-footer-buttons a { width: 100%; }
}

.response-provider-links {
  display: grid;
  gap: 10px;
  margin-top: 24px;
  padding-top: 21px;
  border-top: 1px solid var(--line);
}
.response-provider-links > strong { color: var(--ink-900); font-size: .9rem; }
.response-provider-links > div { display: flex; flex-wrap: wrap; gap: 8px; }
.response-provider-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 13px;
  color: var(--teal-800);
  background: var(--teal-50);
  border: 1px solid rgba(24,170,164,.25);
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 850;
  text-decoration: none;
}
.response-provider-links a:hover,
.response-provider-links a:focus-visible { color: #fff; background: var(--teal-700); border-color: var(--teal-700); }
