:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #5d6675;
  --line: #dfe6ee;
  --paper: #ffffff;
  --wash: #f5f7fb;
  --night: #07111f;
  --navy: #10243d;
  --cyan: #10a8c8;
  --coral: #e45742;
  --green: #168a67;
  --gold: #c28a19;
  --shadow: 0 18px 46px rgba(17, 24, 39, 0.09);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--wash);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
  padding-bottom: 96px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(7, 17, 31, 0.94);
  color: #fff;
  padding: 12px clamp(18px, 4vw, 56px);
  backdrop-filter: blur(16px);
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  white-space: nowrap;
}
.brand img {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.18);
}
.site-header nav, .site-footer nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.site-header nav a, .site-footer nav a {
  color: inherit;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}
.site-header nav a:hover, .site-footer nav a:hover { color: #7bdcf0; }
.site-header nav a.is-active,
.brand.is-active,
.header-cta.is-active {
  color: #7bdcf0;
}
.site-header nav a.is-active {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 8px;
}
.header-cta, .button, button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  background: var(--coral);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  padding: 11px 17px;
  cursor: pointer;
}
.button.secondary {
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
}
.button.light { background: #fff; color: var(--night); }
.button:hover, .header-cta:hover, button:hover { filter: brightness(1.05); }

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  width: min(480px, calc(100vw - 32px));
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.94);
  color: #fff;
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.22);
  padding: 12px 14px 12px 18px;
}
.sticky-copy {
  display: grid;
  gap: 2px;
}
.sticky-copy span {
  color: #7bdcf0;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}
.sticky-copy strong {
  font-size: 17px;
  line-height: 1.15;
}
.sticky-cta nav {
  display: flex;
  gap: 10px;
}
.sticky-primary,
.sticky-secondary {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  padding: 10px 15px;
}
.sticky-primary {
  background: var(--coral);
  color: #fff;
}
.sticky-secondary {
  border: 1px solid rgba(255,255,255,0.26);
  color: #fff;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.62fr);
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: clamp(52px, 7vw, 96px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    var(--night);
  background-size: 42px 42px;
  color: #fff;
}
.compact-hero { min-height: 62vh; }
.hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: clamp(40px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}
.hero-text {
  max-width: 740px;
  margin: 22px 0 0;
  color: #d8e1ed;
  font-size: 20px;
}
.hero-support {
  max-width: 760px;
  margin: 16px 0 0;
  color: #f1edf8;
  font-size: 18px;
}
.hero-trust-line {
  max-width: 720px;
  margin: 16px 0 0;
  color: #bcefff;
  font-size: 15px;
  font-weight: 900;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.hero-panel { display: grid; gap: 14px; }
.signal-panel {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  padding: 22px;
  box-shadow: 0 22px 54px rgba(0,0,0,0.22);
}
.signal-panel span {
  display: block;
  color: #7bdcf0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.signal-panel strong {
  display: block;
  margin-top: 8px;
  font-size: 22px;
  line-height: 1.18;
}
.signal-panel ul { margin: 18px 0 0; padding-left: 20px; color: #d8e1ed; }
.signal-panel li { margin: 7px 0; }
.mini-chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: end;
  gap: 8px;
  height: 96px;
  margin-top: 22px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  background: rgba(0,0,0,0.18);
}
.mini-chart i { display: block; border-radius: 4px 4px 0 0; background: #7bdcf0; }
.mini-chart i:nth-child(1) { height: 32%; background: var(--gold); }
.mini-chart i:nth-child(2) { height: 46%; background: var(--green); }
.mini-chart i:nth-child(3) { height: 58%; background: var(--cyan); }
.mini-chart i:nth-child(4) { height: 72%; background: var(--coral); }
.mini-chart i:nth-child(5) { height: 88%; background: #fff; }
.hero-system {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.hero-system span {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  padding: 9px 8px;
  text-align: center;
  text-transform: uppercase;
}
.hero-proof-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: #d8e1ed;
}
.hero-proof-list li { margin: 7px 0; }

.breadcrumb-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding: 14px clamp(18px, 4vw, 56px);
  font-size: 13px;
  font-weight: 800;
}
.breadcrumb-bar a {
  color: var(--ink);
  text-decoration: none;
}
.breadcrumb-bar a:hover { color: var(--cyan); }
.breadcrumb-bar span { color: var(--muted); }
.breadcrumb-bar i {
  color: #9ba3b0;
  font-style: normal;
}

.wayfinding {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  background: var(--night);
  color: #fff;
  padding: 0 clamp(18px, 4vw, 56px) clamp(38px, 6vw, 64px);
}
.wayfinding article {
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  padding: 20px;
}
.wayfinding span {
  display: block;
  color: #7bdcf0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.wayfinding strong {
  display: block;
  margin-top: 8px;
  font-size: 20px;
  line-height: 1.15;
}
.wayfinding p {
  margin: 10px 0 0;
  color: #d8e1ed;
}

.decision-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: start;
  background: #fff;
}

.trust-approach,
.built-for-section {
  background: #fff;
}

.trust-check-grid,
.fit-list-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.fit-list-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-check-grid article,
.fit-list-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: var(--shadow);
  padding: 20px;
}

.trust-check-grid article::before,
.fit-list-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--gold), var(--magenta));
}

.trust-check-grid strong,
.fit-list-grid strong {
  display: block;
  color: #101322;
  font-size: 18px;
  line-height: 1.2;
}

.trust-check-grid span,
.fit-list-grid span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
}

.section-note {
  max-width: 900px;
  border-left: 4px solid var(--cyan);
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.08);
  color: #10243d;
  font-size: 18px;
  font-weight: 900;
  margin: 22px 0 0;
  padding: 16px 18px;
}

.operator-honesty {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
  gap: 36px;
  background:
    linear-gradient(135deg, rgba(7, 1, 15, 0.94), rgba(13, 27, 47, 0.94)),
    var(--night);
  color: #fff;
}

.operator-honesty h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.honesty-copy {
  display: grid;
  gap: 14px;
}

.honesty-copy p {
  margin: 0;
  color: #ece8f5;
  font-size: 18px;
}

.operator-path {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.operator-path span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 10px;
  text-transform: uppercase;
}

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

.funnel-grid,
.buyer-logic-grid,
.service-bucket-grid,
.trust-proof-grid,
.shopify-cta-actions {
  display: grid;
  gap: 18px;
}

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

.funnel-card,
.buyer-logic-card,
.service-bucket,
.trust-proof-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: var(--shadow);
  padding: 22px;
}

.funnel-card {
  display: grid;
  align-content: start;
  gap: 16px;
}

.funnel-card h3,
.buyer-logic-card h3,
.service-bucket h3,
.trust-proof-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.15;
}

.funnel-card p,
.buyer-logic-card p,
.service-bucket p,
.trust-proof-card p {
  margin: 0;
  color: var(--muted);
}

.recommended-list,
.proof-list,
.bucket-links {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.recommended-list li,
.proof-list li {
  position: relative;
  padding-left: 18px;
  color: #273144;
  font-weight: 800;
}

.recommended-list li::before,
.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
}

.buyer-logic-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.buyer-logic-card {
  min-height: 170px;
}

.buyer-logic-card span,
.service-bucket span,
.trust-proof-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--magenta);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.service-bucket-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-bucket {
  display: grid;
  gap: 14px;
}

.bucket-links a {
  color: #4b1ab2;
  font-weight: 900;
  text-decoration: none;
}

.bucket-links a:hover {
  text-decoration: underline;
}

.trust-proof-grid {
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  align-items: start;
}

.trust-proof-card {
  background:
    linear-gradient(135deg, rgba(7, 1, 15, 0.94), rgba(43, 9, 72, 0.92)),
    var(--night);
  color: #fff;
}

.trust-proof-card p,
.trust-proof-card .proof-list li {
  color: #ece8f5;
}

.trust-proof-card .proof-list li::before {
  background: var(--cyan);
}

.shopify-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(135deg, rgba(7, 1, 15, 0.92), rgba(13, 27, 47, 0.94)),
    var(--night);
  color: #fff;
}

.shopify-cta p {
  max-width: 760px;
  color: #dcd6e8;
  font-size: 18px;
}

.shopify-cta-actions {
  grid-template-columns: repeat(2, max-content);
  align-items: center;
}

.doorbuster-page {
  background: #f4f7fb;
}

.doorbuster-hero {
  align-items: center;
  min-height: 720px;
  padding-bottom: clamp(56px, 8vw, 104px);
}

.doorbuster-hero h1 {
  max-width: 760px;
}

.doorbuster-offer {
  display: grid;
  gap: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.17), rgba(255, 255, 255, 0.07));
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  padding: 24px;
  backdrop-filter: blur(16px);
}

.doorbuster-offer img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: right center;
}

.offer-price-row,
.campaign-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.offer-price-row strong,
.campaign-stat-row strong {
  display: block;
  margin: 0;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.offer-price-row span,
.campaign-stat-row span {
  display: block;
  color: #7bdcf0;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.offer-highlight {
  border: 1px solid rgba(0, 212, 255, 0.34);
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.1);
  padding: 16px;
}

.offer-highlight strong {
  color: #fff;
  font-size: 30px;
}

.spot-pill {
  display: inline-flex;
  width: max-content;
  align-items: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  padding: 8px 12px;
  text-transform: uppercase;
}

.doorbuster-card-grid,
.work-card-grid,
.fit-card-grid,
.snapshot-grid,
.offer-stack-grid {
  display: grid;
  gap: 18px;
}

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

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

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

.snapshot-grid,
.offer-stack-grid {
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  align-items: start;
}

.doorbuster-card,
.work-card,
.fit-card,
.snapshot-card,
.price-box,
.lead-definition,
.fit-form-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  box-shadow: var(--shadow);
  padding: 22px;
}

.doorbuster-card strong,
.work-card strong,
.fit-card strong,
.snapshot-card strong,
.price-box strong,
.lead-definition strong {
  display: block;
  font-size: 20px;
  line-height: 1.2;
}

.doorbuster-card p,
.work-card p,
.fit-card p,
.snapshot-card p,
.price-box p,
.lead-definition p {
  color: var(--muted);
}

.dark-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(7, 1, 15, 0.96), rgba(43, 9, 72, 0.92)),
    var(--night);
  color: #fff;
}

.dark-panel p,
.dark-panel li {
  color: #ece8f5;
}

.offer-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  position: relative;
  padding-left: 20px;
}

.offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--cyan);
}

.price-box {
  display: grid;
  gap: 14px;
  position: sticky;
  top: 110px;
}

.price-box .price {
  color: #111827;
  font-size: clamp(56px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.9;
}

.snapshot-card {
  text-align: center;
}

.snapshot-card strong {
  color: #4b1ab2;
  font-size: 42px;
}

.snapshot-disclaimer,
.lead-disclaimer {
  border-left: 4px solid var(--gold);
  background: rgba(215, 182, 109, 0.14);
  border-radius: 8px;
  color: #352b14;
  font-weight: 800;
  margin-top: 18px;
  padding: 16px;
}

.fit-check-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fit-check-form label,
.fit-check-form .full-span {
  grid-column: span 2;
}

.fit-check-form label.half-span {
  grid-column: span 1;
}

.offer-sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 31;
  display: flex;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(7, 17, 31, 0.94);
  box-shadow: 0 18px 46px rgba(17, 24, 39, 0.22);
  padding: 10px;
  backdrop-filter: blur(18px);
}

.offer-sticky-cta a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-weight: 900;
  font-size: 14px;
  line-height: 1.15;
  text-decoration: none;
  padding: 10px 14px;
  text-align: center;
}

.offer-sticky-cta a:first-child {
  background: linear-gradient(135deg, #35c8ff, #f135d8);
}

.offer-sticky-cta a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.home-offer-strip {
  overflow: hidden;
}

.home-offer-strip h2,
.home-offer-strip p {
  max-width: 760px;
}
.decision-copy {
  position: sticky;
  top: 110px;
  display: grid;
  gap: 14px;
}
.decision-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}
.decision-copy p {
  color: var(--muted);
  font-size: 18px;
}
.decision-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}
.conversion-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.conversion-stack article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 20px;
}
.conversion-stack span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 30px;
  border-radius: 999px;
  background: var(--night);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
}
.conversion-stack strong {
  display: block;
  margin-top: 14px;
  font-size: 20px;
  line-height: 1.15;
}
.conversion-stack p {
  margin: 10px 0 0;
  color: var(--muted);
}

.section, .intro-band, .cta-band {
  padding: clamp(48px, 7vw, 86px) clamp(18px, 4vw, 56px);
}
.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}
.section-heading h2, .intro-band h2, .cta-band h2, .contact h2, .split-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  letter-spacing: 0;
}
.section-heading p, .intro-band p, .contact-copy p, .split-section p {
  color: var(--muted);
  font-size: 18px;
}
.intro-band, .split-section, .contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(320px, 1fr);
  gap: 36px;
  align-items: start;
  background: #fff;
}
.split-section:nth-of-type(even) { background: var(--wash); }
.card-grid, .feature-grid, .plan-grid, .directory-grid, .related-grid, .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.directory-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.card-grid article, .feature-grid article, .plan-grid article, .pricing-grid article,
.directory-grid a, .related-card, .checklist-box, .quote-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
  padding: 22px;
}
.card-grid span {
  display: inline-block;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
h2, h3 { letter-spacing: 0; }
.card-grid h3, .feature-grid h3, .plan-grid h3, .pricing-grid h3 {
  margin: 8px 0;
  font-size: 22px;
  line-height: 1.15;
}
.card-grid p, .feature-grid p, .plan-grid p, .process-list p, .faq p, .related-card span {
  color: var(--muted);
}
.featured-plan {
  border-color: rgba(228, 87, 66, 0.48) !important;
  box-shadow: 0 20px 54px rgba(228, 87, 66, 0.14) !important;
}
.text-link {
  color: #0b6d82;
  font-weight: 900;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.process-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.process-list li {
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 20px;
}
.process-list strong { display: block; font-size: 18px; }
.checklist-box ul { margin: 14px 0 0; padding-left: 20px; }
.checklist-box li { margin: 8px 0; color: var(--muted); }
.quote-panel .button { margin-top: 10px; }
.stacked-links { display: grid; gap: 10px; }
.stacked-links a, .directory-grid a, .related-card {
  display: grid;
  gap: 6px;
  color: inherit;
  text-decoration: none;
}
.stacked-links a {
  border-left: 4px solid var(--cyan);
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.stacked-links span, .directory-grid span { color: var(--muted); }
.directory-grid a:hover, .related-card:hover, .stacked-links a:hover { border-color: var(--coral); }

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: var(--navy);
  color: #fff;
}
.cta-band h2 { max-width: 840px; }
.faq { background: #fff; }
details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  margin: 10px 0;
  padding: 16px 18px;
}
summary { cursor: pointer; font-weight: 900; }

form {
  display: grid;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 22px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 11px 12px;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(16,168,200,0.15);
  outline: 0;
}
.hidden-field { display: none; }
.pricing-grid dl { margin: 0; }
.pricing-grid div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 12px 0;
}
.pricing-grid div:first-child { border-top: 0; }
.pricing-grid dt { font-weight: 800; }
.pricing-grid dd { margin: 0; color: var(--green); font-weight: 900; text-align: right; }
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  background: var(--night);
  color: #fff;
  padding: 28px clamp(18px, 4vw, 56px);
}
.site-footer p { margin: 4px 0 0; color: #c7cfdd; }

@media (max-width: 1100px) {
  .feature-grid, .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .buyer-logic-grid,
  .service-bucket-grid,
  .trust-check-grid,
  .fit-list-grid,
  .growth-bottleneck-grid,
  .doorbuster-card-grid,
  .work-card-grid,
  .fit-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 920px) {
  .site-header { position: static; display: grid; }
  .site-header nav { justify-content: start; }
  .hero, .intro-band, .split-section, .contact, .decision-panel, .operator-honesty { grid-template-columns: 1fr; }
  .decision-copy { position: static; }
  .card-grid, .plan-grid, .related-grid, .pricing-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .wayfinding { grid-template-columns: 1fr; }
  .funnel-grid,
  .trust-proof-grid,
  .shopify-cta,
  .snapshot-grid,
  .offer-stack-grid { grid-template-columns: 1fr; display: grid; }
  .price-box { position: static; }
}
@media (max-width: 680px) {
  body { padding-bottom: 88px; }
  .site-header nav, .site-footer, .cta-band { display: grid; justify-content: stretch; }
  .header-cta, .button, .button.light { width: 100%; }
  .sticky-cta {
    left: 50%;
    right: auto;
    bottom: 8px;
    display: grid;
    width: calc(100vw - 20px);
    padding: 10px;
    transform: translateX(-50%);
  }
  .sticky-copy { display: none; }
  .sticky-cta nav {
    display: grid;
    grid-template-columns: 1fr 0.72fr;
  }
  .sticky-primary,
  .sticky-secondary {
    min-height: 42px;
    padding: 10px 12px;
  }
  .hero { min-height: auto; }
  .card-grid, .feature-grid, .plan-grid, .directory-grid, .related-grid, .pricing-grid, .process-list, .conversion-stack, .buyer-logic-grid, .service-bucket-grid, .trust-check-grid, .fit-list-grid, .growth-bottleneck-grid, .shopify-cta-actions, .doorbuster-card-grid, .work-card-grid, .fit-card-grid, .offer-price-row, .campaign-stat-row, .fit-check-form { grid-template-columns: 1fr; }
  .fit-check-form label,
  .fit-check-form label.half-span,
  .fit-check-form .full-span {
    grid-column: span 1;
  }
  .doorbuster-hero { min-height: auto; }
  .doorbuster-offer {
    max-width: 350px;
    min-width: 0;
    width: calc(100vw - 40px);
    margin-top: 28px;
    padding: 16px;
  }
  .offer-sticky-cta {
    left: 10px;
    right: auto;
    bottom: 8px;
    display: grid;
    width: calc(100vw - 20px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }
  .offer-sticky-cta a {
    min-width: 0;
    padding: 9px 6px;
    font-size: 11px;
  }
  .pricing-grid div { display: grid; }
  .pricing-grid dd { text-align: left; }
}


/* Premium SEO BY MG visual layer */
:root {
  --ink: #101322;
  --muted: #586175;
  --line: #dce4ef;
  --paper: #ffffff;
  --wash: #f4f7fb;
  --night: #070b16;
  --navy: #0d1b2f;
  --cyan: #00d4ff;
  --magenta: #f135d8;
  --violet: #7437ff;
  --coral: #ff5a7a;
  --green: #00c6a7;
  --gold: #d7b66d;
  --shadow: 0 24px 70px rgba(16, 19, 34, 0.12);
}

body {
  background: var(--wash);
  color: var(--ink);
}

.sticky-cta {
  border-color: rgba(255, 255, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(7, 11, 22, 0.96), rgba(17, 4, 31, 0.94));
  box-shadow:
    0 24px 80px rgba(7, 1, 15, 0.32),
    0 0 0 1px rgba(0, 212, 255, 0.08);
  backdrop-filter: blur(18px);
}

.sticky-cta::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 8px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--gold), var(--magenta));
  opacity: 0.36;
}

.sticky-copy span {
  color: var(--cyan);
}

.sticky-primary {
  background: linear-gradient(135deg, #35c8ff, #f135d8);
  box-shadow: 0 12px 30px rgba(241, 53, 216, 0.28);
}

.sticky-secondary {
  background: rgba(255, 255, 255, 0.08);
}

.sticky-primary:hover,
.sticky-secondary:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.site-header {
  background: rgba(7, 1, 15, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 32px rgba(7, 1, 15, 0.22);
}

.site-header nav a,
.header-cta,
.brand {
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.site-header nav a.is-active {
  color: #fff;
  text-decoration-color: var(--magenta);
  text-shadow: 0 0 18px rgba(0, 212, 255, 0.42);
}

.brand.is-active span {
  color: #fff;
  text-shadow: 0 0 18px rgba(241, 53, 216, 0.45);
}

.brand img {
  width: 58px;
  height: 58px;
  box-shadow: 0 0 26px rgba(241, 53, 216, 0.45);
}

.header-cta,
.button,
button {
  background: linear-gradient(135deg, #35c8ff, #f135d8);
  box-shadow: 0 14px 34px rgba(241, 53, 216, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.header-cta.is-active {
  outline: 2px solid rgba(255, 255, 255, 0.34);
  outline-offset: 3px;
}

.breadcrumb-bar {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid rgba(222, 213, 238, 0.82);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(248, 243, 255, 0.94)),
    var(--paper);
  box-shadow: 0 12px 28px rgba(30, 11, 55, 0.06);
}

.breadcrumb-bar a {
  color: #4b1ab2;
}

.breadcrumb-bar span {
  color: #372344;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 760px;
  grid-template-columns: minmax(0, 0.92fr) minmax(330px, 0.52fr);
  align-items: end;
  padding-top: 138px;
  background:
    linear-gradient(90deg, rgba(7, 1, 15, 0.92), rgba(7, 1, 15, 0.68) 46%, rgba(7, 1, 15, 0.38)),
    url("assets/seo-by-mg-neon-hero.jpg") center / cover no-repeat,
    var(--night);
  background:
    linear-gradient(90deg, rgba(7, 1, 15, 0.92), rgba(7, 1, 15, 0.68) 46%, rgba(7, 1, 15, 0.38)),
    image-set(
      url("assets/seo-by-mg-neon-hero.webp") type("image/webp"),
      url("assets/seo-by-mg-neon-hero.jpg") type("image/jpeg")
    ) center / cover no-repeat,
    var(--night);
}

.page-hero {
  min-height: 610px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: 60px;
}

.home-hero {
  min-height: 780px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 38%;
  background: linear-gradient(0deg, rgba(7, 1, 15, 0.98), rgba(7, 1, 15, 0));
}

.hero h1 {
  max-width: 900px;
  font-size: 70px;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.35);
}

.hero-text {
  max-width: 690px;
  color: #f1edf8;
}

.eyebrow {
  color: var(--cyan);
}

.signal-panel {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
  backdrop-filter: blur(14px);
}

.signal-panel strong {
  color: #fff;
}

.hero-system span {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.hero-system span:nth-child(1) {
  box-shadow: inset 0 -2px 0 var(--cyan);
}

.hero-system span:nth-child(2) {
  box-shadow: inset 0 -2px 0 var(--gold);
}

.hero-system span:nth-child(3) {
  box-shadow: inset 0 -2px 0 var(--green);
}

.hero-proof-list {
  color: #ece8f5;
}

.wayfinding {
  position: relative;
  margin-top: -1px;
  background:
    linear-gradient(180deg, #07010f, #10031e);
  padding-bottom: clamp(30px, 5vw, 50px);
}

.wayfinding article {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.055));
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.wayfinding article:nth-child(2) {
  border-color: rgba(0, 212, 255, 0.38);
}

.wayfinding article:nth-child(3) {
  border-color: rgba(241, 53, 216, 0.34);
}

.wayfinding strong {
  color: #fff;
}

.decision-panel {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(220, 228, 239, 0.9);
  border-bottom: 1px solid rgba(220, 228, 239, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.97), rgba(244, 247, 251, 0.96)),
    var(--paper);
}

.decision-panel::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, var(--cyan), var(--green), var(--gold), var(--magenta));
}

.decision-copy h2 {
  color: #0e1020;
}

.decision-actions .text-link {
  align-self: center;
}

.conversion-stack article {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  border-color: rgba(220, 228, 239, 0.92);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 253, 0.98));
}

.conversion-stack article::after {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--green), var(--gold), var(--magenta));
}

.conversion-stack span {
  background: linear-gradient(135deg, #071827, #123e55);
  box-shadow: 0 10px 24px rgba(0, 212, 255, 0.12);
}

.conversion-stack article:nth-child(2) span {
  background: linear-gradient(135deg, #07392f, #00a085);
}

.conversion-stack article:nth-child(3) span {
  background: linear-gradient(135deg, #43310d, #b7862c);
}

.conversion-stack article:nth-child(4) span {
  background: linear-gradient(135deg, #3a0b46, #d42fc1);
}

.intro-band {
  background: #090113;
  color: #fff;
}

.intro-band p {
  color: #dcd6e8;
}

.section-heading h2,
.intro-band h2,
.cta-band h2,
.contact h2,
.split-section h2 {
  font-size: 44px;
}

.product-showcase {
  background: var(--wash);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.product-media {
  display: flex;
  min-height: 188px;
  align-items: flex-end;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.86), rgba(116, 55, 255, 0.72) 48%, rgba(241, 53, 216, 0.82)),
    url("assets/seo-by-mg-services-neon.jpg") center / cover no-repeat;
  background:
    linear-gradient(135deg, rgba(0, 212, 255, 0.86), rgba(116, 55, 255, 0.72) 48%, rgba(241, 53, 216, 0.82)),
    image-set(
      url("assets/seo-by-mg-services-neon.webp") type("image/webp"),
      url("assets/seo-by-mg-services-neon.jpg") type("image/jpeg")
    ) center / cover no-repeat;
}

.product-card:nth-child(2) .product-media {
  background:
    linear-gradient(135deg, rgba(0, 198, 167, 0.9), rgba(0, 39, 94, 0.76)),
    url("assets/seo-by-mg-neon-hero.jpg") center / cover no-repeat;
  background:
    linear-gradient(135deg, rgba(0, 198, 167, 0.9), rgba(0, 39, 94, 0.76)),
    image-set(
      url("assets/seo-by-mg-neon-hero.webp") type("image/webp"),
      url("assets/seo-by-mg-neon-hero.jpg") type("image/jpeg")
    ) center / cover no-repeat;
}

.product-card:nth-child(3) .product-media {
  background:
    linear-gradient(135deg, rgba(12, 15, 40, 0.52), rgba(241, 53, 216, 0.82)),
    url("assets/seo-by-mg-services-neon.jpg") center / cover no-repeat;
  background:
    linear-gradient(135deg, rgba(12, 15, 40, 0.52), rgba(241, 53, 216, 0.82)),
    image-set(
      url("assets/seo-by-mg-services-neon.webp") type("image/webp"),
      url("assets/seo-by-mg-services-neon.jpg") type("image/jpeg")
    ) center / cover no-repeat;
}

.product-card:nth-child(4) .product-media {
  background:
    linear-gradient(135deg, rgba(19, 8, 35, 0.2), rgba(0, 212, 255, 0.75)),
    url("assets/seo-by-mg-neon-hero.jpg") right center / cover no-repeat;
  background:
    linear-gradient(135deg, rgba(19, 8, 35, 0.2), rgba(0, 212, 255, 0.75)),
    image-set(
      url("assets/seo-by-mg-neon-hero.webp") type("image/webp"),
      url("assets/seo-by-mg-neon-hero.jpg") type("image/jpeg")
    ) right center / cover no-repeat;
}

.product-media span {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: #160822;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 10px;
  text-transform: uppercase;
}

.product-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.product-body h3 {
  margin: 0;
  font-size: 22px;
}

.product-body p {
  margin: 0;
  color: var(--muted);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
  padding-top: 14px;
}

.product-footer strong {
  color: #200b33;
}

.card-grid article,
.feature-grid article,
.plan-grid article,
.pricing-grid article,
.directory-grid a,
.related-card,
.checklist-box,
.quote-panel,
form,
details {
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.card-grid article,
.feature-grid article,
.plan-grid article,
.directory-grid a,
.related-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card-grid article,
.feature-grid article,
.plan-grid article,
.directory-grid a,
.related-card,
.pricing-grid article {
  background:
    linear-gradient(180deg, #ffffff, #fbfcff);
}

.directory-grid a,
.related-card,
.stacked-links a {
  min-height: 146px;
}

.card-grid article:hover,
.feature-grid article:hover,
.plan-grid article:hover,
.directory-grid a:hover,
.related-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(241, 53, 216, 0.35);
  box-shadow: 0 28px 82px rgba(30, 11, 55, 0.18);
}

.card-grid span {
  color: var(--magenta);
}

.text-link {
  color: #4b1ab2;
}

.cta-band {
  background:
    linear-gradient(135deg, rgba(7, 1, 15, 0.9), rgba(43, 9, 72, 0.92)),
    url("assets/seo-by-mg-services-neon.jpg") center / cover no-repeat;
  background:
    linear-gradient(135deg, rgba(7, 1, 15, 0.9), rgba(43, 9, 72, 0.92)),
    image-set(
      url("assets/seo-by-mg-services-neon.webp") type("image/webp"),
      url("assets/seo-by-mg-services-neon.jpg") type("image/jpeg")
    ) center / cover no-repeat;
}

@media (max-width: 1100px) {
  .hero h1 { font-size: 58px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
    min-height: auto;
    padding-top: 82px;
  }
  .hero-panel,
  .signal-panel {
    max-width: 100%;
    min-width: 0;
  }
  .hero h1 { font-size: 48px; }
  .section-heading h2,
  .intro-band h2,
  .cta-band h2,
  .contact h2,
  .split-section h2 {
    font-size: 36px;
  }
}

@media (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
  }
  .hero {
    background:
      linear-gradient(90deg, rgba(7, 1, 15, 0.92), rgba(7, 1, 15, 0.68) 46%, rgba(7, 1, 15, 0.38)),
      url("assets/seo-by-mg-neon-hero-mobile.jpg") center / cover no-repeat,
      var(--night);
    background:
      linear-gradient(90deg, rgba(7, 1, 15, 0.92), rgba(7, 1, 15, 0.68) 46%, rgba(7, 1, 15, 0.38)),
      image-set(
        url("assets/seo-by-mg-neon-hero-mobile.webp") type("image/webp"),
        url("assets/seo-by-mg-neon-hero-mobile.jpg") type("image/jpeg")
      ) center / cover no-repeat,
      var(--night);
  }
  .sticky-copy strong {
    font-size: 16px;
  }
  .site-header {
    width: 100vw;
    max-width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
  }
  .site-header nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 18px;
  }
  .breadcrumb-bar {
    width: 100vw;
    max-width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
  }
  .wayfinding {
    width: 100vw;
    max-width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
  }
  .wayfinding article {
    max-width: 350px;
    min-width: 0;
    width: calc(100vw - 40px);
  }
  .hero {
    display: block;
    width: 100vw;
    max-width: 100vw;
    padding-left: 20px;
    padding-right: 20px;
  }
  .section,
  .intro-band,
  .split-section,
  .decision-panel,
  .cta-band,
  .site-footer {
    width: 100vw;
    max-width: 100vw;
  }
  .cta-band > * {
    max-width: calc(100vw - 40px);
    min-width: 0;
  }
  .cta-band h2,
  .cta-band p {
    overflow-wrap: anywhere;
  }
  .home-offer-strip {
    display: grid !important;
    gap: 18px;
    align-items: start;
    padding-left: 20px;
    padding-right: 20px;
  }
  .home-offer-strip h2,
  .home-offer-strip p {
    inline-size: calc(100vw - 40px);
    max-inline-size: calc(100vw - 40px);
    white-space: normal;
  }
  .home-offer-strip h2 {
    font-size: 26px !important;
    line-height: 1.12;
  }
  .hero-copy,
  .hero-panel,
  .signal-panel,
  .section-heading,
  .decision-copy,
  .conversion-stack,
  .intro-band > *,
  .split-section > *,
  .contact > * {
    max-width: 350px;
    min-width: 0;
    width: calc(100vw - 40px);
  }
  .conversion-stack article {
    min-height: auto;
  }
  .decision-panel::before {
    width: 4px;
  }
  .hero-panel {
    margin-top: 28px;
  }
  .hero h1,
  .hero-text,
  .section-heading,
  .section-heading h2,
  .section-heading p,
  .intro-band h2,
  .intro-band p,
  .split-section h2,
  .split-section p,
  .signal-panel {
    max-width: 350px;
  }
  .hero h1 {
    font-size: 27px;
    line-height: 1.04;
    text-wrap: wrap;
  }
  .hero-text { font-size: 16px; }
  .hero-support,
  .hero-trust-line { font-size: 15px; }
  .signal-panel strong {
    font-size: 18px;
  }
  .signal-panel {
    overflow: hidden;
  }
  .hero-panel {
    display: none;
  }
  .product-grid { grid-template-columns: 1fr; }
  .product-footer {
    align-items: flex-start;
    display: grid;
  }
  .section-heading h2,
  .intro-band h2,
  .cta-band h2,
  .contact h2,
  .split-section h2 {
    font-size: 30px;
  }
}

@supports (content-visibility: auto) {
  .section,
  .intro-band,
  .split-section,
  .decision-panel,
  .cta-band,
  .site-footer {
    content-visibility: auto;
    contain-intrinsic-size: 1px 680px;
  }
}
