﻿:root {
  --ink: #07111f;
  --ink-2: #0f1d2d;
  --paper: #f6fbff;
  --white: #ffffff;
  --text: #132033;
  --muted: #5f6f82;
  --line: #d9e3ed;
  --cyan: #00a8d9;
  --blue: #435cff;
  --lime: #b9ff4a;
  --magenta: #d936a8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 20;
  transform: translateY(-150%);
  background: var(--lime);
  color: var(--ink);
  padding: 0.7rem 0.9rem;
  border-radius: 8px;
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.5rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: rgba(7, 17, 31, 0.97);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.brand {
  width: min(230px, 58vw);
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  color: rgba(255,255,255,0.82);
  font-weight: 760;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  background: rgba(185,255,74,0.16);
  color: var(--white);
}

.menu-toggle {
  display: none;
}

.section-shell {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(0,168,217,0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,168,217,0.09) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.65;
}

.hero-layout {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.38fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: 520px;
  padding: clamp(4rem, 8vw, 6.5rem) 0;
}

.hero-copy-block {
  max-width: 770px;
}

.hero-mark {
  justify-self: end;
  width: min(310px, 32vw);
  opacity: 0.82;
  filter: drop-shadow(0 24px 70px rgba(0,168,217,0.26));
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow.on-light {
  color: var(--blue);
}

h1,
h2,
h3,
p,
summary,
label,
li {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(2.7rem, 6.2vw, 5.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.15;
}

.hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 1.15rem 0 0;
  color: rgba(255,255,255,0.78);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border: 1px solid currentColor;
  border-radius: 8px;
  font-weight: 900;
  text-align: center;
  cursor: pointer;
}

.button.primary {
  background: var(--lime);
  border-color: var(--lime);
  color: var(--ink);
}

.button.secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.24);
  color: var(--white);
}

.button.secondary.on-light {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.sample-back-button {
  background: var(--ink);
  border-color: var(--ink);
  color: #ffffff;
  box-shadow: 0 10px 28px rgba(7, 17, 31, 0.18);
}

.sample-service-hero .sample-back-button {
  background: #ffffff;
  border-color: #ffffff;
  color: var(--ink);
}

.content-section,
.cta-section {
  padding: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--ink);
  color: var(--white);
}

.content-section.light {
  background: var(--paper);
  color: var(--text);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading p,
.two-column p,
.service-card p,
.price-card p,
.price-card li,
.check-panel li,
.faq-list p,
.service-list p {
  color: var(--muted);
}

.content-section:not(.light) .section-heading p,
.content-section:not(.light) .two-column p,
.content-section:not(.light) .service-card p,
.content-section:not(.light) .faq-list p {
  color: rgba(255,255,255,0.74);
}

.service-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

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

.service-card,
.price-card,
.check-panel,
.calculator,
.contact-form,
.faq-list details,
.service-list article,
.decision-list a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
}

.content-section:not(.light) .service-card,
.content-section:not(.light) .faq-list details,
.decision-list a {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

.service-card,
.price-card,
.check-panel,
.faq-list details,
.decision-list a {
  padding: 1.15rem;
}

.service-card {
  display: grid;
  gap: 0.8rem;
  align-content: start;
}

.service-card h3 a:hover,
.service-card h3 a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--blue);
  text-decoration: underline;
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.two-column,
.cta-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.align-start {
  align-items: start;
}

.decision-list {
  display: grid;
  gap: 0.75rem;
}

.decision-list a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.decision-list span {
  color: var(--lime);
  font-weight: 900;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.area-list span {
  display: inline-flex;
  padding: 0.55rem 0.7rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  font-weight: 780;
}

.content-section:not(.light) .area-list span {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.08);
  color: var(--white);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 900;
}

.service-list {
  display: grid;
  gap: 1rem;
}

.service-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.2rem;
}

.trust-grid,
.sample-grid,
.detail-grid,
.process-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.trust-card,
.sample-card,
.detail-card,
.process-step,
.proof-note {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--text);
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.1);
}

.trust-card,
.detail-card,
.process-step,
.proof-note {
  padding: 1rem;
}

.content-section:not(.light) .trust-card,
.content-section:not(.light) .sample-card,
.content-section:not(.light) .detail-card,
.content-section:not(.light) .process-step,
.content-section:not(.light) .proof-note {
  border-color: rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.065);
  color: var(--white);
}

.trust-card strong {
  display: block;
  color: var(--blue);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1;
}

.content-section:not(.light) .trust-card strong {
  color: var(--lime);
}

.trust-card span,
.detail-card p,
.process-step p,
.sample-card p,
.proof-note p {
  color: var(--muted);
}

.content-section:not(.light) .trust-card span,
.content-section:not(.light) .detail-card p,
.content-section:not(.light) .process-step p,
.content-section:not(.light) .sample-card p,
.content-section:not(.light) .proof-note p {
  color: rgba(255,255,255,0.76);
}

.sample-card {
  overflow: hidden;
}

.sample-card header {
  padding: 1rem;
  border-bottom: 1px solid var(--line);
}

.sample-link {
  display: inline-flex;
  margin-top: 0.7rem;
}

.content-section:not(.light) .sample-card header {
  border-bottom-color: rgba(255,255,255,0.14);
}

.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.before-after div {
  min-height: 170px;
  padding: 1rem;
}

.before-after div:first-child {
  background: #f0f4f8;
}

.before-after div:last-child {
  background:
    linear-gradient(145deg, rgba(185,255,74,0.18), rgba(0,168,217,0.16)),
    #ffffff;
}

.content-section:not(.light) .before-after div:first-child {
  background: rgba(255,255,255,0.06);
}

.content-section:not(.light) .before-after div:last-child {
  background:
    linear-gradient(145deg, rgba(185,255,74,0.15), rgba(0,168,217,0.13)),
    rgba(255,255,255,0.09);
}

.before-after span,
.process-step span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 950;
  text-transform: uppercase;
}

.content-section:not(.light) .before-after span,
.content-section:not(.light) .process-step span {
  color: var(--lime);
}

.before-after ul {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  padding-left: 1rem;
  color: inherit;
}

.proof-note {
  margin-top: 1rem;
  border-left: 6px solid var(--lime);
}

.sample-site-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 168, 217, 0.18), transparent 35%),
    linear-gradient(315deg, rgba(217, 54, 168, 0.16), transparent 42%),
    var(--ink);
  color: var(--white);
}

.sample-site-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(310px, 0.55fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: 520px;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.sample-site-layout h1 {
  max-width: 780px;
}

.sample-site-layout p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.1rem;
}

.sample-browser {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.sample-browser-bar {
  display: flex;
  gap: 0.45rem;
  padding: 0.75rem;
  background: rgba(7, 17, 31, 0.82);
}

.sample-browser-bar span {
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  background: var(--lime);
}

.sample-browser-bar span:nth-child(2) {
  background: var(--cyan);
}

.sample-browser-bar span:nth-child(3) {
  background: var(--magenta);
}

.sample-preview {
  min-height: 320px;
  padding: clamp(1.25rem, 3vw, 2rem);
  background:
    linear-gradient(180deg, #ffffff, #edf8ff);
  color: var(--ink);
}

.sample-preview strong {
  display: block;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1;
}

.sample-preview p {
  margin: 0.9rem 0 1.2rem;
  color: #41546b;
}

.sample-preview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.sample-preview-grid span,
.inventory-row,
.sample-module-stack div {
  border: 1px solid #d4e0eb;
  border-radius: 10px;
  background: #ffffff;
}

.sample-preview-grid span {
  padding: 0.75rem;
  font-weight: 900;
}

.inventory-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.65rem;
  padding: 0.8rem;
}

.inventory-row span {
  color: #5f6f82;
  font-weight: 800;
}

.campaign-meter {
  overflow: hidden;
  height: 1rem;
  border-radius: 999px;
  background: #dce8f5;
}

.campaign-meter span {
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--magenta));
}

.campaign-preview small {
  display: block;
  margin-top: 0.65rem;
  color: #5f6f82;
  font-weight: 900;
}

.sample-module-stack {
  display: grid;
  gap: 0.85rem;
}

.sample-module-stack div {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  color: var(--ink);
}

.sample-module-stack strong {
  font-size: 1.1rem;
}

.sample-module-stack span {
  color: #52657c;
}

.sample-subhead {
  max-width: 760px;
  font-size: 1.15rem;
}

.service-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.sample-service-hero {
  background:
    linear-gradient(90deg, rgba(185, 255, 74, 0.18), transparent 35%),
    linear-gradient(135deg, #0c2a25, #07111f);
  color: #ffffff;
}

.service-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: 530px;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.service-hero-copy h1,
.campaign-offer h1 {
  font-size: clamp(3rem, 6vw, 5rem);
}

.service-estimate-card,
.campaign-form-card {
  display: grid;
  gap: 0.8rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
}

.service-estimate-card strong,
.campaign-form-card strong {
  font-size: 1.45rem;
}

.service-estimate-card label {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem;
  border: 1px solid #d9e3ed;
  border-radius: 10px;
  color: #52657c;
  font-weight: 850;
}

.service-estimate-card span {
  color: var(--ink);
}

.service-estimate-card button,
.campaign-form-card button {
  min-height: 3rem;
  border: 0;
  border-radius: 8px;
  background: var(--lime);
  color: var(--ink);
  font-weight: 950;
}

.sample-service-strip {
  background: var(--lime);
  color: var(--ink);
}

.service-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
  padding: 0.9rem 0;
}

.service-strip-grid span {
  font-weight: 950;
}

.service-ticket-grid,
.retail-category-grid,
.campaign-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-ticket-grid article,
.retail-category-grid article,
.campaign-flow article {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.1);
}

.service-ticket-grid span,
.campaign-flow span {
  color: var(--blue);
  font-weight: 950;
}

.service-map-section,
.retail-inventory-band,
.campaign-detail-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--ink);
  color: #ffffff;
}

.service-map-grid,
.inventory-layout,
.campaign-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.6fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.service-map-card {
  display: grid;
  gap: 0.7rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
}

.service-map-card span {
  padding: 0.75rem;
  border-radius: 8px;
  background: rgba(185, 255, 74, 0.16);
  color: #ffffff;
  font-weight: 900;
}

.sample-retail-hero {
  background:
    linear-gradient(120deg, rgba(217, 54, 168, 0.18), transparent 42%),
    #f6fbff;
  color: var(--ink);
}

.retail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: 520px;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.retail-hero-grid .eyebrow,
.campaign-offer .eyebrow {
  color: var(--magenta);
}

.retail-window {
  padding: 1rem;
  border: 1px solid #d9e3ed;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(7, 17, 31, 0.16);
}

.retail-shelf {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.retail-shelf article {
  min-height: 145px;
  display: grid;
  align-content: end;
  gap: 0.35rem;
  padding: 1rem;
  border-radius: 12px;
  background:
    linear-gradient(145deg, rgba(0, 168, 217, 0.16), rgba(185, 255, 74, 0.2)),
    #edf8ff;
}

.retail-shelf article:first-child {
  grid-row: span 2;
}

.retail-shelf span,
.retail-category-grid span {
  color: var(--blue);
  font-weight: 950;
  text-transform: uppercase;
}

.retail-category-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #ffffff;
}

.retail-category-header {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

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

.inventory-board {
  display: grid;
  gap: 0.8rem;
}

.inventory-board div,
.campaign-proof-grid div {
  padding: 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.inventory-board strong,
.campaign-proof-grid strong {
  display: block;
  color: var(--lime);
  font-size: 2.25rem;
  line-height: 1;
}

.sample-campaign-hero {
  background:
    linear-gradient(135deg, rgba(67, 92, 255, 0.2), transparent 35%),
    linear-gradient(315deg, rgba(185, 255, 74, 0.22), transparent 40%),
    #fff7ea;
  color: var(--ink);
}

.campaign-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) 340px;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: 520px;
  padding: clamp(3rem, 7vw, 5rem) 0;
}

.campaign-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.campaign-badges span {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  font-weight: 900;
}

.campaign-form-card input {
  background: #f6fbff;
}

.campaign-form-card small {
  color: #52657c;
  font-weight: 800;
}

.campaign-proof-band {
  background: var(--ink);
  color: #ffffff;
}

.campaign-proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  padding: 1rem 0;
}

.campaign-checklist {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1rem 1rem 1rem 2.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.not-found-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.price-card.featured {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.price-card ul,
.check-panel ul {
  display: grid;
  gap: 0.55rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.price-card li,
.check-panel li {
  position: relative;
  padding-left: 1.2rem;
}

.price-card li::before,
.check-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--cyan);
}

.price-card.featured p,
.price-card.featured li {
  color: rgba(255,255,255,0.74);
}

.package-price {
  margin: 0.9rem 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
}

.package-price strong {
  display: block;
  margin-top: 0.15rem;
  color: var(--blue);
  font-size: clamp(2.2rem, 4vw, 3.25rem);
  line-height: 1;
}

.price-card.featured .package-price {
  color: rgba(255, 255, 255, 0.78);
}

.price-card.featured .package-price strong {
  color: var(--lime);
}

.quick-price-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.quick-price-grid div {
  display: grid;
  gap: 0.2rem;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(7, 17, 31, 0.08);
}

.quick-price-grid span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.quick-price-grid strong {
  color: var(--ink);
  font-size: 1.28rem;
}

.calculator,
.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
}

.calculator label,
.contact-form label {
  display: grid;
  gap: 0.45rem;
  font-weight: 850;
}

.form-alert {
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-weight: 850;
}

.form-alert.success {
  border: 1px solid rgba(59, 138, 0, 0.24);
  background: #ecffd6;
  color: #234d00;
}

.form-alert.error {
  border: 1px solid rgba(198, 54, 54, 0.24);
  background: #fff0f0;
  color: #7a1f1f;
}

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

.estimate-builder {
  gap: 1.05rem;
  border-top: 7px solid var(--lime);
  background:
    linear-gradient(180deg, rgba(20, 41, 65, 0.98), rgba(9, 23, 39, 0.98));
  color: #f6fbff;
}

.estimate-builder fieldset {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  border: 0;
}

.estimate-builder legend {
  margin-bottom: 0.2rem;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.estimate-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
  min-height: 3rem;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.065);
  color: #f6fbff;
}

.estimate-option input {
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--lime);
}

.estimate-option span {
  font-weight: 900;
}

.estimate-option strong {
  color: var(--lime);
  white-space: nowrap;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--text);
  padding: 0.78rem 0.85rem;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--blue);
}

output {
  color: var(--blue);
}

.calculator-result {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--paper);
}

.calculator-result strong {
  font-size: clamp(1.7rem, 4vw, 2.8rem);
  line-height: 1;
}

.estimate-total {
  border: 1px solid rgba(185, 255, 74, 0.35);
  background: rgba(7, 17, 31, 0.78);
}

.estimate-total span {
  color: #aebed1;
  font-weight: 800;
}

.estimate-total strong {
  color: #ffffff;
}

.estimate-total p {
  margin: 0.4rem 0 0;
  color: #c8d7e8;
}

.estimate-option input[type="radio"],
.estimate-option input[type="checkbox"] {
  width: 1.05rem;
  height: 1.05rem;
  padding: 0;
  border: 0;
  background: transparent;
  accent-color: var(--lime);
}

.cta-section {
  border-top: 1px solid rgba(255,255,255,0.12);
}

.cta-layout {
  align-items: end;
}

.cta-layout .button {
  justify-self: end;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) 1fr 1fr;
  gap: 2rem;
  padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 4vw, 3rem);
  background: var(--ink-2);
  color: rgba(255,255,255,0.74);
}

.site-footer img {
  width: 190px;
  margin-bottom: 1rem;
}

.site-footer nav {
  display: grid;
  gap: 0.45rem;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-self: end;
    border: 1px solid rgba(255,255,255,0.22);
    border-radius: 8px;
    background: rgba(255,255,255,0.08);
    color: var(--white);
    padding: 0.6rem 0.75rem;
    font-weight: 850;
  }

  .menu-toggle span {
    position: relative;
    width: 1rem;
    height: 0.7rem;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
  }

  .menu-toggle span::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    border-top: 2px solid currentColor;
    transform: translateY(-50%);
  }

  .site-nav {
    position: static;
    grid-column: 1 / -1;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--ink-2);
    border: 1px solid rgba(255,255,255,0.16);
    border-radius: 8px;
    padding: 0.5rem;
    margin-top: 0.25rem;
  }

  .site-header.menu-open .site-nav {
    display: flex;
  }

  .hero-layout,
  .sample-site-layout,
  .service-hero-grid,
  .retail-hero-grid,
  .campaign-hero-grid,
  .service-map-grid,
  .inventory-layout,
  .campaign-detail-grid,
  .two-column,
  .cta-layout,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-mark {
    justify-self: start;
    width: 210px;
  }

  .service-grid,
  .service-grid.compact,
  .pricing-grid,
  .trust-grid,
  .sample-grid,
  .detail-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-list article {
    grid-template-columns: 1fr;
  }

  .cta-layout .button {
    justify-self: start;
  }
}

@media (max-width: 620px) {
  .brand {
    width: 210px;
  }

  h1 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  h2 {
    font-size: clamp(1.85rem, 9vw, 2.7rem);
  }

  .service-grid,
  .service-grid.compact,
  .pricing-grid,
  .trust-grid,
  .sample-grid,
  .detail-grid,
  .process-grid,
  .sample-preview-grid,
  .service-strip-grid,
  .service-ticket-grid,
  .retail-category-grid,
  .campaign-flow,
  .campaign-proof-grid,
  .before-after {
    grid-template-columns: 1fr;
  }

  .quick-price-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .decision-list a {
    display: grid;
  }
}

/* Standalone fictional sample websites. These intentionally avoid PagePros chrome. */
.bike-site,
.clothing-site,
.books-site {
  background: #ffffff;
  color: #111111;
}

.bike-site a,
.clothing-site a,
.books-site a {
  text-decoration: none;
}

.bike-site-header,
.clothing-site-header,
.books-site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 5vw, 4rem);
}

.bike-site-header nav,
.clothing-site-header nav,
.books-site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-weight: 850;
}

.bike-site-header {
  background: #101912;
  color: #eff8df;
}
.bike-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: #eff8df;
  font-weight: 950;
}
.bike-logo span {
  width: 2rem;
  height: 2rem;
  border: 4px solid #c8ff4d;
  border-radius: 50%;
}
.bike-site-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 620px;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
  background:
    linear-gradient(135deg, rgba(200, 255, 77, 0.13), transparent 42%),
    #101912;
  color: #eff8df;
}
.bike-site-hero h1 {
  max-width: 850px;
  color: #eff8df;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.88;
}
.bike-site-hero p,
.bike-site-hero span {
  max-width: 650px;
  color: #cfdec4;
  font-size: 1.12rem;
}
.bike-site-hero a {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #c8ff4d;
  color: #101912;
  font-weight: 950;
}
.bike-site-hero aside {
  display: grid;
  gap: 0.5rem;
  padding: 1.2rem;
  border: 2px dashed #c8ff4d;
  border-radius: 18px;
  background: #1c2b20;
}
.bike-site-hero aside strong {
  font-size: 2rem;
  line-height: 1;
}
.bike-site-services,
.bike-site-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
  background: #eff8df;
}
.bike-site-services article {
  padding: 1.15rem;
  border: 2px solid #101912;
  border-radius: 16px;
  background: #ffffff;
}
.bike-site-services b {
  color: #2b7c45;
  font-size: 2rem;
}
.bike-site-process {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #c8ff4d;
  color: #101912;
}
.bike-site-process div {
  display: grid;
  gap: 0.3rem;
  border-left: 4px solid #101912;
  padding-left: 0.8rem;
  font-weight: 950;
}
.bike-site-footer {
  padding: 1.25rem clamp(1rem, 5vw, 4rem);
  background: #101912;
  color: #eff8df;
}

.clothing-site {
  background: #fff7f8;
  color: #25151d;
}
.clothing-site-header {
  background: #fff7f8;
  border-bottom: 1px solid #e6bac8;
}
.clothing-logo {
  color: #25151d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
  font-weight: 900;
}
.clothing-site-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(270px, 0.55fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 620px;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
  background: #f4cfda;
}
.clothing-site-hero h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  color: #25151d;
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 0.85;
}
.clothing-site-hero p,
.clothing-site-hero span {
  max-width: 650px;
  color: #5b3444;
  font-size: 1.12rem;
}
.clothing-site-hero a {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  background: #25151d;
  color: #fff7f8;
  font-weight: 950;
}
.clothing-cover {
  min-height: 380px;
  display: grid;
  align-content: end;
  gap: 0.4rem;
  padding: 1.25rem;
  border-radius: 34px 34px 6px 34px;
  background: linear-gradient(145deg, #25151d, #8d2850);
  color: #fff7f8;
}
.clothing-cover strong {
  font-size: 2.25rem;
  line-height: 1;
}
.clothing-site-products {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
}
.clothing-site-products article {
  min-width: 0;
}
.clothing-site-products article div {
  aspect-ratio: 4 / 5;
  border-radius: 28px 28px 5px 5px;
  background: #25151d;
}
.clothing-site-products article:nth-child(2) div { background: #8d2850; }
.clothing-site-products article:nth-child(3) div { background: #c98b5b; }
.clothing-site-products small {
  display: block;
  margin-top: 0.75rem;
  color: #8d2850;
  font-weight: 950;
  text-transform: uppercase;
}
.clothing-site-edit {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 2rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
  background: #25151d;
  color: #fff7f8;
}
.clothing-site-footer {
  padding: 1.25rem clamp(1rem, 5vw, 4rem);
  background: #fff7f8;
  color: #25151d;
}

.books-site {
  background: #fff9ed;
  color: #35261c;
}
.books-site-header {
  background: #f7ecd7;
  border-bottom: 1px solid #d4b999;
}
.books-logo {
  color: #35261c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  font-weight: 900;
}
.books-site-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.5fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 620px;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
  background: #f7ecd7;
}
.books-site-hero h1 {
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  color: #35261c;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.94;
}
.books-site-hero p,
.books-site-hero span {
  max-width: 620px;
  color: #694d3a;
  font-size: 1.12rem;
}
.books-site-hero a {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  background: #7c4d2f;
  color: #fff9ed;
  font-weight: 950;
}
.books-site-hero aside {
  display: grid;
  gap: 0.5rem;
  padding: 1.2rem;
  border: 1px solid #d4b999;
  border-radius: 6px;
  background: #fff9ed;
  box-shadow: 14px 14px 0 #d9b86f;
}
.books-site-hero aside strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}
.books-site-dates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
}
.books-site-dates article {
  padding: 1.15rem;
  border: 1px solid #d4b999;
  background: #f7ecd7;
}
.books-site-dates span {
  color: #7c4d2f;
  font-weight: 950;
}
.books-site-community {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 2rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
  background: #35261c;
  color: #fff9ed;
}
.books-site-footer {
  padding: 1.25rem clamp(1rem, 5vw, 4rem);
  background: #f7ecd7;
  color: #35261c;
}

@media (max-width: 780px) {
  .bike-site-header,
  .clothing-site-header,
  .books-site-header {
    display: grid;
  }
  .bike-site-header nav,
  .clothing-site-header nav,
  .books-site-header nav {
    display: grid;
    gap: 0.35rem;
  }
  .bike-site-hero,
  .clothing-site-hero,
  .books-site-hero,
  .clothing-site-edit,
  .books-site-community {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .bike-site-services,
  .bike-site-process,
  .clothing-site-products,
  .books-site-dates {
    grid-template-columns: 1fr;
  }
  .bike-site-hero h1,
  .clothing-site-hero h1,
  .books-site-hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }
}

/* Portfolio polish pass: make sample sites feel client-ready and desirable. */
body.bike-site .bike-site-hero {
  background:
    radial-gradient(circle at 82% 18%, rgba(200, 255, 77, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(200, 255, 77, 0.13), transparent 42%),
    #101912;
}

body.bike-site .bike-site-hero h1 {
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

body.bike-site .bike-dashboard {
  transform: rotate(1deg);
}

body.bike-site .bike-dashboard em,
body.clothing-site .clothing-cover em {
  display: block;
  margin-top: 0.7rem;
  font-style: normal;
  font-weight: 900;
  opacity: 0.82;
}

body.bike-site .bike-site-proof,
body.clothing-site .clothing-site-proof,
body.books-site .books-site-proof {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
}

body.bike-site .bike-site-proof {
  background: #101912;
  color: #eff8df;
}

body.bike-site .bike-site-proof blockquote {
  margin: 0;
  padding: 1.25rem;
  border-radius: 18px;
  background: #c8ff4d;
  color: #101912;
  font-size: 1.35rem;
  font-weight: 950;
}

body.bike-site .bike-site-proof blockquote span {
  display: block;
  margin-top: 0.7rem;
  font-size: 0.9rem;
}

body.clothing-site .clothing-site-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 255, 255, 0.85), transparent 22%),
    linear-gradient(135deg, #f4cfda, #ffd7a8);
}

body.clothing-site .clothing-cover {
  background:
    linear-gradient(145deg, rgba(37, 21, 29, 0.84), rgba(141, 40, 80, 0.9)),
    repeating-linear-gradient(45deg, #fff7f8 0 8px, #f4cfda 8px 16px);
}

body.clothing-site .clothing-site-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff7f8;
}

body.clothing-site .clothing-site-proof article {
  padding: 1rem;
  border-radius: 24px;
  background: #25151d;
  color: #fff7f8;
}

body.clothing-site .clothing-site-proof strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

body.books-site .books-site-hero {
  background:
    linear-gradient(90deg, rgba(255, 249, 237, 0.86), rgba(247, 236, 215, 0.7)),
    repeating-linear-gradient(90deg, #e6d0ae 0 2px, transparent 2px 120px),
    #f7ecd7;
}

body.books-site .books-site-proof {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #fff9ed;
}

body.books-site .books-site-proof div {
  padding: 1.1rem;
  border: 1px solid #d4b999;
  background: #f7ecd7;
}

body.books-site .books-site-proof strong {
  display: block;
  color: #7c4d2f;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.8rem;
  line-height: 1;
}

@media (max-width: 780px) {
  body.bike-site .bike-site-proof,
  body.clothing-site .clothing-site-proof,
  body.books-site .books-site-proof {
    grid-template-columns: 1fr;
  }
}

/* Final standalone sample-site overrides. Keep this last so live CSS cannot fall back to PagePros base styles. */
body.bike-site,
body.clothing-site,
body.books-site {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.bike-site .bike-site-header,
body.clothing-site .clothing-site-header,
body.books-site .books-site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem clamp(1rem, 5vw, 4rem);
}

body.bike-site .bike-site-header nav,
body.clothing-site .clothing-site-header nav,
body.books-site .books-site-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  font-weight: 900;
}

body.bike-site .bike-site-hero,
body.clothing-site .clothing-site-hero,
body.books-site .books-site-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(270px, 0.48fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 620px;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 5vw, 4rem);
}

body.bike-site .bike-site-hero {
  background: linear-gradient(135deg, rgba(200, 255, 77, 0.13), transparent 42%), #101912;
  color: #eff8df;
}

body.clothing-site .clothing-site-hero {
  background: #f4cfda;
  color: #25151d;
}

body.books-site .books-site-hero {
  background: #f7ecd7;
  color: #35261c;
}

body.bike-site .bike-site-hero h1,
body.clothing-site .clothing-site-hero h1,
body.books-site .books-site-hero h1 {
  max-width: 850px;
  margin: 0;
  line-height: 0.9;
  letter-spacing: 0;
}

body.bike-site .bike-site-hero h1 {
  color: #eff8df;
  font-size: clamp(3rem, 8vw, 6.8rem);
}

body.clothing-site .clothing-site-hero h1 {
  color: #25151d;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 9vw, 7rem);
  line-height: 0.85;
}

body.books-site .books-site-hero h1 {
  color: #35261c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.2rem);
  line-height: 0.94;
}

body.bike-site .bike-site-services,
body.clothing-site .clothing-site-products,
body.books-site .books-site-dates {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
}

body.bike-site .bike-site-services {
  background: #eff8df;
}

body.clothing-site .clothing-site-products {
  background: #fff7f8;
}

body.books-site .books-site-dates {
  background: #fff9ed;
}

body.bike-site .bike-site-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 4rem);
  background: #c8ff4d;
  color: #101912;
}

body.clothing-site .clothing-site-edit,
body.books-site .books-site-community {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 2rem;
  padding: clamp(2.5rem, 6vw, 5rem) clamp(1rem, 5vw, 4rem);
}

body.clothing-site .clothing-site-edit {
  background: #25151d;
  color: #fff7f8;
}

body.books-site .books-site-community {
  background: #35261c;
  color: #fff9ed;
}

@media (max-width: 780px) {
  body.bike-site .bike-site-header,
  body.clothing-site .clothing-site-header,
  body.books-site .books-site-header,
  body.bike-site .bike-site-header nav,
  body.clothing-site .clothing-site-header nav,
  body.books-site .books-site-header nav {
    display: grid;
  }

  body.bike-site .bike-site-hero,
  body.clothing-site .clothing-site-hero,
  body.books-site .books-site-hero,
  body.clothing-site .clothing-site-edit,
  body.books-site .books-site-community {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  body.bike-site .bike-site-services,
  body.clothing-site .clothing-site-products,
  body.books-site .books-site-dates,
  body.bike-site .bike-site-process {
    grid-template-columns: 1fr;
  }
}

/* Bold correction pass: less template, more readable, no blocking header. */
.site-header {
  position: relative;
  min-height: 74px;
  padding: 0.65rem clamp(1rem, 4vw, 2.5rem);
  background:
    linear-gradient(90deg, rgba(0, 168, 217, 0.12), transparent 34%),
    var(--ink);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.12);
}

.brand {
  width: min(210px, 54vw);
}

.site-nav {
  gap: 0.45rem;
}

.site-nav a {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
  color: #f6fbff;
  padding: 0.55rem 0.75rem;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: rgba(185, 255, 74, 0.8);
  background: var(--lime);
  color: var(--ink);
}

.hero {
  background:
    linear-gradient(120deg, rgba(67, 92, 255, 0.18), transparent 32%),
    linear-gradient(300deg, rgba(0, 168, 217, 0.16), transparent 38%),
    var(--ink);
}

.hero-layout {
  grid-template-columns: minmax(0, 0.86fr) minmax(230px, 0.34fr);
  min-height: 430px;
  padding: clamp(2.6rem, 5vw, 4.4rem) 0;
}

.hero-copy-block {
  max-width: 820px;
  padding-left: clamp(0.9rem, 2vw, 1.4rem);
  border-left: 6px solid var(--lime);
}

.hero-brand-badge {
  display: inline-grid;
  gap: 0.18rem;
  margin: 0 0 1rem;
  padding: 0.8rem 1rem 0.85rem;
  border: 1px solid rgba(185, 255, 74, 0.56);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(185, 255, 74, 0.18), rgba(0, 168, 217, 0.12)),
    rgba(7, 17, 31, 0.72);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-brand-badge span {
  color: #ffffff;
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  font-weight: 950;
  line-height: 0.95;
}

.hero-brand-badge small {
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  font-size: clamp(2.65rem, 5vw, 4.45rem);
  line-height: 0.98;
}

.hero p:not(.eyebrow) {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
}

.hero-mark {
  width: min(260px, 24vw);
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.02)),
    rgba(7, 17, 31, 0.62);
}

.content-section,
.cta-section {
  padding: clamp(3rem, 6vw, 5.2rem) 0;
}

.content-section.light {
  background:
    linear-gradient(90deg, rgba(0, 168, 217, 0.08), transparent 28%),
    var(--paper);
}

.content-section:not(.light) {
  background:
    linear-gradient(135deg, rgba(0, 168, 217, 0.13), transparent 34%),
    linear-gradient(320deg, rgba(217, 54, 168, 0.12), transparent 42%),
    var(--ink);
}

.section-heading h2,
.two-column h2 {
  max-width: 760px;
}

.service-grid,
.pricing-grid,
.service-list {
  gap: 1.15rem;
}

.service-card,
.price-card,
.check-panel,
.contact-form,
.calculator,
.faq-list details,
.service-list article,
.decision-list a {
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(7, 17, 31, 0.11);
}

.service-card {
  position: relative;
  min-height: 230px;
  border: 1px solid #cdd9e6;
  border-top: 7px solid var(--cyan);
  background:
    linear-gradient(180deg, #ffffff, #edf8ff);
  color: var(--text);
}

.service-card:nth-child(2n) {
  border-top-color: var(--blue);
}

.service-card:nth-child(3n) {
  border-top-color: var(--magenta);
}

.service-card:nth-child(4n) {
  border-top-color: var(--lime);
}

.service-card h3,
.service-card h3 a {
  color: var(--ink);
}

.service-card p {
  color: #44566b;
}

.service-card .text-link {
  align-self: end;
  color: #1747d5;
  font-weight: 950;
}

.content-section:not(.light) .service-card {
  border: 1px solid rgba(185, 255, 74, 0.28);
  border-top: 7px solid var(--lime);
  background:
    linear-gradient(180deg, rgba(20, 41, 65, 0.98), rgba(9, 23, 39, 0.98));
  color: #f6fbff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.28);
}

.content-section:not(.light) .service-card:nth-child(2n) {
  border-top-color: var(--cyan);
}

.content-section:not(.light) .service-card:nth-child(3n) {
  border-top-color: var(--magenta);
}

.content-section:not(.light) .service-card h3,
.content-section:not(.light) .service-card h3 a {
  color: #ffffff;
}

.content-section:not(.light) .service-card p {
  color: #c8d7e8;
}

.content-section:not(.light) .service-card .text-link {
  color: var(--lime);
}

.check-panel {
  border-top: 7px solid var(--cyan);
}

.button.primary {
  box-shadow: 0 10px 28px rgba(185, 255, 74, 0.2);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
}

.site-footer {
  background:
    linear-gradient(90deg, rgba(0, 168, 217, 0.1), transparent 30%),
    #07111f;
}

.site-footer img {
  opacity: 1;
  filter: none;
}

.site-footer .footer-logo-img {
  filter: none !important;
  background: transparent;
}

.site-footer a {
  color: #dce8f5;
}

@media (max-width: 980px) {
  .site-header {
    position: relative;
  }

  .site-nav {
    position: static;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-mark {
    width: min(220px, 56vw);
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 66px;
    align-items: center;
  }

  h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.2rem);
  }

  .sample-service-hero,
  .sample-retail-hero,
  .sample-campaign-hero {
    text-align: left;
  }

  .service-hero-grid,
  .retail-hero-grid,
  .campaign-hero-grid {
    min-height: auto;
    padding: 2.2rem 0 2.6rem;
    gap: 1.5rem;
  }

  .service-hero-copy h1,
  .campaign-offer h1 {
    font-size: clamp(2.35rem, 12vw, 3.25rem);
    line-height: 1;
  }

  .sample-subhead {
    font-size: 1rem;
  }

  .service-action-row {
    display: grid;
    gap: 0.65rem;
  }

  .service-estimate-card,
  .campaign-form-card,
  .retail-window {
    padding: 0.9rem;
  }

  .service-estimate-card label {
    display: grid;
    gap: 0.2rem;
  }

  .retail-shelf {
    grid-template-columns: 1fr;
  }

  .retail-shelf article:first-child {
    grid-row: auto;
  }

  .campaign-badges {
    display: grid;
  }

  .campaign-badges span,
  .service-strip-grid span {
    width: 100%;
  }

  .service-map-section,
  .retail-inventory-band,
  .campaign-detail-section,
  .retail-category-section {
    padding: 2.6rem 0;
  }

  .hero-copy-block {
    border-left-width: 4px;
  }

  .hero-brand-badge {
    width: 100%;
    padding: 0.72rem 0.85rem;
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .site-header .site-nav {
    display: none !important;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.45rem;
    padding: 0.5rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    background: var(--ink-2);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
  }

  .site-header.menu-open .site-nav {
    display: flex !important;
  }

  .site-header .site-nav a {
    display: block;
    width: 100%;
  }
}

/* Sample site style showcase: each sample intentionally uses a different visual system. */
.sample-note {
  margin: 0 0 0.8rem;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contractor-hero {
  background:
    linear-gradient(90deg, rgba(28, 69, 48, 0.9), rgba(15, 36, 30, 0.72)),
    linear-gradient(135deg, #173d2d, #07111f);
  color: #fffaf0;
}

.contractor-grid,
.contractor-map-grid,
.shop-grid,
.shop-intake-grid,
.promo-grid,
.promo-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.62fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.contractor-grid,
.shop-grid,
.promo-grid {
  min-height: 520px;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}

.contractor-lead,
.shop-copy p,
.promo-copy p {
  max-width: 680px;
  font-size: 1.14rem;
}

.contractor-actions,
.shop-actions,
.promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.4rem;
}

.contractor-call,
.contractor-back,
.shop-actions a,
.promo-actions a {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1rem;
  border-radius: 8px;
  font-weight: 950;
}

.contractor-call {
  background: #ffcf5a;
  color: #172416;
}

.contractor-back {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fffaf0;
}

.contractor-card {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 6px;
  background: #fffaf0;
  color: #172416;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
}

.contractor-card strong {
  font-size: 1.5rem;
}

.contractor-card label {
  display: grid;
  gap: 0.25rem;
  padding: 0.75rem;
  border: 1px solid #d6ceb8;
  border-radius: 6px;
  color: #5c604f;
  font-weight: 850;
}

.contractor-card span {
  color: #172416;
}

.contractor-card button {
  min-height: 3rem;
  border: 0;
  border-radius: 6px;
  background: #173d2d;
  color: #ffffff;
  font-weight: 950;
}

.contractor-strip {
  background: #ffcf5a;
  color: #172416;
}

.contractor-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.6rem;
  padding: 0.85rem 0;
  font-weight: 950;
}

.contractor-heading {
  max-width: 780px;
  margin-bottom: 1.6rem;
}

.contractor-heading p,
.shop-category-header p {
  margin: 0 0 0.5rem;
  color: #2f654b;
  font-weight: 950;
  text-transform: uppercase;
}

.contractor-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.contractor-service-grid article {
  padding: 1.15rem;
  border: 1px solid #d7ddcf;
  border-radius: 6px;
  background: #fffdf7;
}

.contractor-service-grid b {
  color: #b07000;
}

.contractor-map-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #172416;
  color: #fffaf0;
}

.contractor-map-card {
  display: grid;
  gap: 0.65rem;
}

.contractor-map-card span {
  padding: 0.8rem;
  border-left: 6px solid #ffcf5a;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.shop-hero {
  background:
    linear-gradient(135deg, rgba(255, 110, 70, 0.16), transparent 42%),
    #fbf2e6;
  color: #191514;
}

.shop-copy h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.shop-copy .sample-note {
  color: #a13d24;
}

.shop-actions a:first-child {
  background: #191514;
  color: #ffffff;
}

.shop-actions a:last-child {
  border: 1px solid #191514;
  color: #191514;
}

.shop-window {
  padding: 1rem;
  border: 2px solid #191514;
  background: #fffaf4;
  box-shadow: 12px 12px 0 #ffb45e;
}

.shop-shelf {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.shop-shelf article {
  min-height: 145px;
  display: grid;
  align-content: end;
  gap: 0.25rem;
  padding: 1rem;
  border: 1px solid #2c2421;
  background: #ffffff;
}

.shop-shelf article:first-child {
  grid-row: span 2;
  background: #26211f;
  color: #ffffff;
}

.shop-shelf span,
.shop-card-grid span {
  color: #cc4e2d;
  font-weight: 950;
  text-transform: uppercase;
}

.shop-board {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fffaf4;
}

.shop-category-header {
  max-width: 760px;
  margin-bottom: 1.5rem;
}

.shop-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.shop-card-grid article {
  padding: 1rem;
  border: 2px solid #191514;
  background: #ffffff;
}

.shop-card-grid article:nth-child(even) {
  background: #f5ddbe;
}

.shop-intake {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #191514;
  color: #fffaf4;
}

.shop-intake ol {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: shop;
}

.shop-intake li {
  counter-increment: shop;
  padding: 0.85rem;
  border: 1px solid rgba(255, 250, 244, 0.2);
  background: rgba(255, 250, 244, 0.08);
  font-weight: 900;
}

.shop-intake li::before {
  content: counter(shop, decimal-leading-zero) " ";
  color: #ffb45e;
}

.promo-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(255, 255, 255, 0.62), transparent 24%),
    linear-gradient(135deg, #435cff, #d936a8 62%, #ffcf5a);
  color: #ffffff;
}

.promo-copy h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 8vw, 7rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.promo-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.promo-badges span {
  padding: 0.55rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-weight: 950;
}

.promo-actions a:first-child,
.promo-form button,
.promo-band-grid a {
  background: #b9ff4a;
  color: #07111f;
}

.promo-actions a:last-child {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #ffffff;
}

.promo-form {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
  border-radius: 18px;
  background: #ffffff;
  color: #07111f;
  box-shadow: 0 30px 80px rgba(7, 17, 31, 0.28);
}

.promo-form strong {
  font-size: 1.55rem;
}

.promo-form button {
  min-height: 3rem;
  border: 0;
  border-radius: 10px;
  font-weight: 950;
}

.promo-proof-band,
.promo-detail-section {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #07111f;
  color: #ffffff;
}

.promo-proof-grid,
.promo-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.promo-proof-grid article,
.promo-flow article {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.promo-proof-grid b,
.promo-flow span {
  color: #b9ff4a;
  font-weight: 950;
}

.promo-band {
  padding: 2.5rem 0;
  background: #b9ff4a;
  color: #07111f;
}

.promo-band-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
}

.promo-band-grid a {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border: 2px solid #07111f;
  border-radius: 8px;
  font-weight: 950;
}

.promo-checklist {
  display: grid;
  gap: 0.7rem;
  margin: 0;
  padding: 1rem 1rem 1rem 2.2rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

@media (max-width: 980px) {
  .contractor-grid,
  .contractor-map-grid,
  .shop-grid,
  .shop-intake-grid,
  .promo-grid,
  .promo-detail-grid,
  .promo-band-grid {
    grid-template-columns: 1fr;
  }

  .contractor-service-grid,
  .shop-card-grid,
  .promo-proof-grid,
  .promo-flow {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .contractor-grid,
  .shop-grid,
  .promo-grid {
    min-height: auto;
    padding: 2.2rem 0;
  }

  .contractor-actions,
  .shop-actions,
  .promo-actions {
    display: grid;
  }

  .contractor-service-grid,
  .contractor-strip-grid,
  .shop-card-grid,
  .shop-shelf,
  .promo-proof-grid,
  .promo-flow {
    grid-template-columns: 1fr;
  }

  .shop-shelf article:first-child {
    grid-row: auto;
  }

  .promo-copy h1,
  .shop-copy h1 {
    font-size: clamp(2.5rem, 13vw, 3.45rem);
  }
}

/* Fictional sample sites requested by the client. */
.bike-hero {
  background: #101912;
  color: #eff8df;
}
.bike-hero-grid,
.clothing-grid,
.books-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  min-height: 560px;
  padding: clamp(3rem, 7vw, 5.5rem) 0;
}
.bike-kicker,
.clothing-kicker,
.books-kicker {
  margin: 0 0 0.9rem;
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}
.bike-kicker { color: #c8ff4d; }
.bike-hero h1 {
  max-width: 760px;
  color: #eff8df;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.9;
}
.bike-hero p {
  max-width: 620px;
  color: #cdddc4;
  font-size: 1.18rem;
}
.bike-actions,
.clothing-actions,
.books-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}
.bike-actions a,
.clothing-actions a,
.books-actions a {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 950;
}
.bike-actions a:first-child {
  background: #c8ff4d;
  color: #101912;
}
.bike-actions a:last-child {
  border: 1px solid #c8ff4d;
  color: #eff8df;
}
.bike-ticket {
  display: grid;
  gap: 0.5rem;
  padding: 1.2rem;
  border: 2px dashed #c8ff4d;
  border-radius: 18px;
  background: #1c2b20;
}
.bike-ticket span {
  color: #c8ff4d;
  font-weight: 950;
}
.bike-ticket strong {
  font-size: 2rem;
  line-height: 1;
}
.bike-services {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #eff8df;
}
.bike-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.bike-service-grid article {
  padding: 1.1rem;
  border: 2px solid #101912;
  border-radius: 16px;
  background: #ffffff;
}
.bike-service-grid b {
  color: #2b7c45;
  font-size: 2rem;
}
.bike-process {
  padding: 2rem 0;
  background: #c8ff4d;
  color: #101912;
}
.bike-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}
.bike-process-grid div {
  display: grid;
  gap: 0.2rem;
  padding: 0.9rem;
  border-left: 4px solid #101912;
  font-weight: 950;
}

.clothing-hero {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.18)),
    #f4cfda;
  color: #25151d;
}
.clothing-kicker { color: #8d2850; }
.clothing-hero h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 8vw, 6.8rem);
  line-height: 0.88;
  color: #25151d;
}
.clothing-hero p {
  max-width: 620px;
  color: #5b3444;
  font-size: 1.13rem;
}
.clothing-actions a:first-child {
  background: #25151d;
  color: #fff7f8;
}
.clothing-actions a:last-child {
  border: 1px solid #25151d;
  color: #25151d;
}
.clothing-lookbook {
  min-height: 360px;
  display: grid;
  align-content: end;
  gap: 0.4rem;
  padding: 1.2rem;
  border-radius: 28px 28px 4px 28px;
  background:
    linear-gradient(145deg, #25151d, #8d2850);
  color: #fff7f8;
  box-shadow: 0 28px 70px rgba(37, 21, 29, 0.22);
}
.clothing-lookbook span {
  color: #ffd7a8;
  font-weight: 950;
  text-transform: uppercase;
}
.clothing-lookbook strong {
  font-size: 2.2rem;
  line-height: 1;
}
.clothing-products {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff7f8;
}
.clothing-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.clothing-product-grid article {
  display: grid;
  gap: 0.55rem;
  min-width: 0;
}
.clothing-product-grid article div {
  aspect-ratio: 4 / 5;
  border-radius: 24px 24px 4px 4px;
  background: #25151d;
}
.clothing-product-grid article:nth-child(2) div { background: #8d2850; }
.clothing-product-grid article:nth-child(3) div { background: #c98b5b; }
.clothing-product-grid span {
  color: #8d2850;
  font-weight: 950;
  text-transform: uppercase;
}
.clothing-editorial {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #25151d;
  color: #fff7f8;
}
.clothing-editorial-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 2rem;
  align-items: center;
}

.books-hero {
  background:
    linear-gradient(90deg, rgba(90, 60, 42, 0.08), transparent),
    #f7ecd7;
  color: #35261c;
}
.books-kicker { color: #7c4d2f; }
.books-hero h1 {
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.95;
  color: #35261c;
}
.books-hero p {
  max-width: 610px;
  color: #694d3a;
  font-size: 1.13rem;
}
.books-actions a:first-child {
  background: #7c4d2f;
  color: #fff9ed;
}
.books-actions a:last-child {
  border: 1px solid #7c4d2f;
  color: #35261c;
}
.books-pick {
  display: grid;
  gap: 0.5rem;
  padding: 1.25rem;
  border-radius: 6px;
  background: #fff9ed;
  border: 1px solid #d4b999;
  box-shadow: 14px 14px 0 #d9b86f;
}
.books-pick span {
  color: #7c4d2f;
  font-weight: 950;
  text-transform: uppercase;
}
.books-pick strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}
.books-schedule {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #fff9ed;
}
.books-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.books-schedule-grid article {
  padding: 1.1rem;
  border: 1px solid #d4b999;
  background: #f7ecd7;
}
.books-schedule-grid span {
  color: #7c4d2f;
  font-weight: 950;
}
.books-community {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #35261c;
  color: #fff9ed;
}
.books-community-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 980px) {
  .bike-hero-grid,
  .clothing-grid,
  .books-grid,
  .clothing-editorial-grid,
  .books-community-grid {
    grid-template-columns: 1fr;
  }
  .bike-service-grid,
  .clothing-product-grid,
  .books-schedule-grid,
  .bike-process-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .bike-hero-grid,
  .clothing-grid,
  .books-grid {
    min-height: auto;
    padding: 2.3rem 0;
  }
  .bike-actions,
  .clothing-actions,
  .books-actions {
    display: grid;
  }
  .bike-service-grid,
  .clothing-product-grid,
  .books-schedule-grid,
  .bike-process-grid {
    grid-template-columns: 1fr;
  }
  .bike-hero h1,
  .clothing-hero h1,
  .books-hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.6rem);
  }
}

