:root {
  --bg: #090b0f;
  --panel: #11151d;
  --panel-2: #171c25;
  --text: #eef3f8;
  --muted: #9ba8b7;
  --line: rgba(255, 255, 255, 0.12);
  --lime: #dfff28;
  --green: #18b85b;
  --blue: #39a7ff;
  --danger: #ff8a3d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 72% 8%, rgba(57, 167, 255, 0.18), transparent 34rem),
    linear-gradient(135deg, #090b0f 0%, #0f1117 52%, #151a1f 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: rgba(9, 11, 15, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.header-actions,
nav,
.hero-actions,
.trust-row,
.district-cloud,
footer,
.sticky-contact {
  display: flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
}

.brand span {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--lime);
  color: #080a0d;
}

nav {
  gap: 26px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

nav a:hover {
  color: var(--lime);
}

.header-actions,
.hero-actions {
  gap: 12px;
}

.primary,
.ghost,
.call-card,
.quick-card a,
.service-grid a,
.district-cloud a,
.sticky-contact a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 900;
}

.primary {
  border: 1px solid var(--lime);
  background: var(--lime);
  color: #080a0d;
  padding: 0 24px;
  cursor: pointer;
}

.primary.large {
  min-height: 64px;
  padding: 0 32px;
  font-size: 18px;
}

.ghost {
  border: 1px solid var(--line);
  padding: 0 22px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  min-height: calc(100vh - 86px);
  padding: clamp(64px, 8vw, 116px) clamp(20px, 5vw, 80px) 64px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6.6vw, 94px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.lead,
.lead-section p,
.districts p {
  max-width: 760px;
  color: var(--muted);
  font-size: 19px;
}

.call-card {
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  min-height: 64px;
  padding: 10px 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
}

.call-card span {
  color: var(--muted);
  font-size: 13px;
}

.call-card strong {
  font-size: 18px;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-weight: 800;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.proof-row span {
  min-height: 74px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.proof-row strong {
  display: block;
  color: var(--text);
  font-size: 18px;
}

.hero-panel {
  position: relative;
  min-height: 620px;
}

.hero-panel img {
  width: 100%;
  height: 620px;
  border: 1px solid rgba(223, 255, 40, 0.32);
  border-radius: 8px;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08);
}

.quick-card {
  position: absolute;
  right: -18px;
  bottom: 34px;
  width: min(360px, calc(100% - 32px));
  padding: 28px;
  border: 1px solid rgba(223, 255, 40, 0.42);
  border-radius: 8px;
  background: rgba(10, 12, 16, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.36);
}

.quick-card span {
  color: var(--lime);
  font-weight: 900;
}

.quick-card h2 {
  margin: 12px 0 20px;
  font-size: 26px;
  line-height: 1.15;
}

.quick-card a {
  background: var(--green);
  color: #fff;
  padding: 0 20px;
}

.confidence-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(20px, 5vw, 80px) 40px;
}

.confidence-band article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.confidence-band span,
.expectation-grid span,
.scenario-grid span {
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.confidence-band strong {
  display: block;
  margin: 8px 0;
  font-size: 22px;
}

.confidence-band p,
.scenario-grid p,
.expectation-grid p,
.checklist-section p {
  color: var(--muted);
}

.lead-section,
.districts,
.detail-section,
.coverage-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 1fr);
  gap: 34px;
  align-items: start;
  padding: 84px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.expectation-section,
.scenario-section,
.checklist-section {
  padding: 84px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--line);
}

.expectation-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.expectation-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.expectation-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.expectation-grid div {
  padding: 22px;
}

.expectation-grid h3,
.scenario-grid strong {
  display: block;
  margin: 8px 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.15;
}

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

.scenario-grid article {
  min-height: 250px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(57, 167, 255, 0.09), transparent 52%),
    var(--panel);
}

.checklist-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: start;
  background: rgba(57, 167, 255, 0.045);
}

.checklist-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checklist-grid span {
  min-height: 58px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
  font-weight: 850;
}

.lead-form,
.service-grid article,
.steps article,
.trust-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-weight: 800;
}

input,
textarea,
select {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090b0f;
  color: var(--text);
  font: inherit;
  padding: 0 16px;
}

textarea {
  min-height: 110px;
  padding-top: 14px;
  resize: vertical;
}

select {
  padding: 0 16px;
}

.full,
.alert {
  grid-column: 1 / -1;
}

.alert {
  padding: 14px 16px;
  border-radius: 8px;
  font-weight: 900;
}

.alert.success {
  background: rgba(24, 184, 91, 0.15);
  color: #7df0a9;
}

.alert.error {
  background: rgba(255, 138, 61, 0.15);
  color: var(--danger);
}

.location-status {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.services,
.process,
.knowledge,
.tip-section,
.tip-archive-section,
.faq-section,
.blog-section,
.local-copy,
.article-section,
.trust-section,
.coverage-section {
  padding: 94px clamp(20px, 5vw, 80px);
}

.promo-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 16px clamp(20px, 5vw, 80px);
  border-bottom: 1px solid var(--line);
  background: rgba(223, 255, 40, 0.08);
}

.promo-strip img {
  width: 72px;
  height: 54px;
  border-radius: 8px;
  object-fit: cover;
}

.promo-strip strong,
.promo-strip span {
  display: block;
}

.promo-strip span {
  color: var(--muted);
}

.section-head {
  max-width: 820px;
  margin-bottom: 36px;
}

.service-grid,
.steps,
.fact-grid,
.blog-grid,
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-grid article,
.steps article,
.fact-grid article,
.blog-grid article,
.trust-grid article {
  min-height: 300px;
  padding: 28px;
}

.fact-grid article,
.blog-grid article,
.trust-grid article,
.faq-list details,
.local-copy {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.fact-grid article {
  min-height: 230px;
}

.content-thumb {
  width: 100%;
  height: 150px;
  margin-bottom: 18px;
  border-radius: 8px;
  object-fit: cover;
}

.fact-grid strong {
  display: block;
  margin-bottom: 16px;
  color: var(--lime);
  font-size: 22px;
  line-height: 1.2;
}

.service-grid article span {
  display: block;
  width: 54px;
  height: 6px;
  margin-bottom: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), var(--blue));
}

.service-grid h3,
.steps h3 {
  font-size: 25px;
  line-height: 1.16;
}

.service-grid p,
.steps p,
.fact-grid p,
.blog-grid p,
.trust-grid p,
.coverage-section p,
.local-copy p {
  color: var(--muted);
}

.tip-filter-bar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin: 0 0 14px;
}

.tip-filter-bar label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tip-filter-bar input {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  font-size: 15px;
  font-weight: 800;
  outline: 0;
}

.tip-filter-bar input:focus {
  border-color: rgba(223, 255, 40, 0.58);
  box-shadow: 0 0 0 3px rgba(223, 255, 40, 0.09);
}

.tip-category-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 28px;
}

.tip-filter-bar button,
.tip-category-row button {
  min-height: 44px;
  padding: 8px 12px;
  border: 1px solid rgba(223, 255, 40, 0.25);
  border-radius: 999px;
  background: rgba(223, 255, 40, 0.06);
  color: var(--lime);
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}

.tip-filter-bar button:hover,
.tip-filter-bar button.active,
.tip-category-row button:hover,
.tip-category-row button.active {
  border-color: var(--lime);
  background: var(--lime);
  color: #080a0d;
}

.tip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.tip-grid article[hidden] {
  display: none;
}

.tip-grid article {
  display: flex;
  flex-direction: column;
  min-height: 178px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 42%),
    var(--panel);
}

.tip-grid.compact article {
  min-height: 164px;
}

.tip-grid span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.tip-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.22;
  overflow-wrap: anywhere;
}

.tip-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.tip-grid a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.tip-empty {
  margin: 22px 0 0;
  padding: 18px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-weight: 900;
  text-align: center;
}

.tip-archive-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(223, 255, 40, 0.08), transparent 30rem),
    rgba(255, 255, 255, 0.018);
}

.tip-archive-section .section-head {
  max-width: 980px;
}

.tip-archive-section .section-head h2 {
  max-width: 900px;
}

.archive-intro {
  max-width: 820px;
  color: var(--muted);
  font-size: 19px;
}

.archive-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: -10px 0 24px;
}

.archive-summary span {
  min-height: 66px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 11, 15, 0.62);
  color: var(--muted);
  font-weight: 800;
}

.archive-summary strong {
  display: block;
  color: var(--text);
  font-size: 22px;
  line-height: 1.1;
}

.trust-grid h3 {
  font-size: 25px;
  line-height: 1.16;
}

.coverage-section {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.coverage-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coverage-cloud span,
.check-list span {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--text);
  font-weight: 900;
}

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

.detail-section p,
.article-section p {
  max-width: 920px;
  color: var(--muted);
}

.article-section article {
  max-width: 980px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  padding: clamp(28px, 5vw, 58px);
}

.article-section .primary {
  margin-top: 14px;
}

.article-primary {
  padding-top: 40px;
}

.article-excerpt {
  color: var(--text);
  font-size: 20px;
  font-weight: 750;
}

.article-body {
  max-width: 920px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.article-body h3 {
  margin: 34px 0 12px;
  color: var(--text);
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
}

.article-body p {
  margin-bottom: 18px;
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
}

.article-body li {
  position: relative;
  padding-left: 24px;
  color: var(--text);
  font-weight: 750;
}

.article-body li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
}

.article-cover {
  width: 100%;
  max-height: 460px;
  margin: 8px 0 22px;
  border-radius: 8px;
  object-fit: cover;
}

.article-meta {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090b0f;
}

.service-grid a {
  justify-content: flex-start;
  color: var(--lime);
}

.district-cloud {
  flex-wrap: wrap;
  gap: 12px;
}

.district-cloud a {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: var(--panel-2);
}

.district-cloud a:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.steps strong {
  display: block;
  margin-bottom: 26px;
  color: var(--lime);
  font-size: 48px;
  line-height: 1;
}

.local-copy {
  margin: 0 clamp(20px, 5vw, 80px);
}

.local-copy h2,
.local-copy p {
  max-width: 980px;
}

.local-image {
  width: min(100%, 760px);
  max-height: 360px;
  margin: 6px 0 22px;
  border-radius: 8px;
  object-fit: cover;
}

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

.faq-list details {
  padding: 0 24px;
}

.faq-list summary {
  cursor: pointer;
  padding: 22px 0;
  color: var(--text);
  font-size: 20px;
  font-weight: 900;
}

.faq-list p {
  margin-bottom: 22px;
  color: var(--muted);
}

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

.blog-grid article {
  min-height: 260px;
}

.blog-grid span {
  color: var(--lime);
  font-weight: 900;
}

.blog-grid h3 {
  margin: 16px 0 12px;
  font-size: 28px;
  line-height: 1.12;
}

.blog-grid a {
  display: inline-flex;
  margin-top: 12px;
  color: var(--lime);
  font-weight: 900;
}

.blog-grid small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.section-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 800;
}

.blog-archive-section {
  padding: 84px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

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

.archive-grid article {
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.archive-grid span {
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-grid h3 {
  margin: 10px 0;
  font-size: 19px;
  line-height: 1.18;
}

.archive-grid p {
  color: var(--muted);
  font-size: 14px;
}

.archive-grid a {
  color: var(--lime);
  font-weight: 900;
}

.archive-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.archive-pager a,
.archive-pager span {
  min-width: 40px;
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.archive-pager a.active {
  border-color: var(--lime);
  color: var(--ink);
  background: var(--lime);
}

.archive-pager a.disabled {
  pointer-events: none;
  opacity: 0.45;
}

.featured-card {
  border-color: rgba(223, 255, 40, 0.5);
  background: rgba(223, 255, 40, 0.06);
}

footer {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding: 34px clamp(20px, 5vw, 80px) 110px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

footer strong {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--lime);
}

.legal-page p {
  white-space: normal;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.contact-grid a {
  display: grid;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090b0f;
}

.contact-grid span {
  color: var(--muted);
}

.sticky-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: flex;
  max-width: calc(100vw - 44px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #090b0f;
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
}

.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 94px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(9, 11, 15, 0.96);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner p {
  margin: 6px 0;
  color: var(--muted);
}

.cookie-banner a {
  color: var(--lime);
  font-weight: 900;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.sticky-contact a {
  min-height: 56px;
  padding: 0 22px;
}

.sticky-contact a + a {
  background: var(--green);
  color: #fff;
}

.admin-body {
  background: #080a0d;
  overflow-x: hidden;
}

.login-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
}

.login-card {
  display: grid;
  gap: 18px;
  width: min(460px, 100%);
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.login-card h1 {
  margin: 10px 0 0;
  font-size: 44px;
}

.login-card p {
  color: var(--muted);
}

.admin-shell {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  min-height: 100dvh;
}

.admin-sidebar {
  position: sticky;
  top: 0;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  height: 100dvh;
  max-height: 100dvh;
  padding: 10px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(223, 255, 40, 0.035), transparent 36%),
    #080a0d;
}

.admin-rail {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: start;
  min-height: 0;
  max-height: calc(100dvh - 20px);
  padding: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: #0c0f14;
}

.admin-rail nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-rail-logo,
.admin-rail a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 950;
}

.admin-rail-logo {
  background: var(--lime);
  color: #080a0d;
}

.admin-rail a.active,
.admin-rail a:hover {
  background: rgba(223, 255, 40, 0.11);
  color: var(--lime);
}

.admin-rail-exit:hover {
  background: rgba(255, 138, 61, 0.12) !important;
  color: var(--danger) !important;
}

.admin-menu-panel {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  min-width: 0;
  min-height: 0;
  max-height: calc(100dvh - 20px);
  overflow: hidden;
  padding: 10px 8px 10px 12px;
}

.admin-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 42px;
  margin-bottom: 10px;
  color: var(--text);
  font-weight: 950;
}

.admin-brand span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(223, 255, 40, 0.11);
  color: var(--lime);
  font-size: 12px;
}

.admin-brand strong {
  font-size: 15px;
}

.admin-nav {
  display: grid;
  align-content: start;
  gap: 5px;
  min-height: 0;
  padding: 2px 6px 18px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(223, 255, 40, 0.65) rgba(255, 255, 255, 0.06);
}

.admin-nav::-webkit-scrollbar {
  width: 8px;
}

.admin-nav::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.admin-nav::-webkit-scrollbar-thumb {
  border: 2px solid #0c0f14;
  border-radius: 999px;
  background: rgba(223, 255, 40, 0.72);
}

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  padding: 7px 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.15;
}

.admin-nav small {
  display: block;
  margin: 13px 0 4px;
  color: rgba(155, 168, 183, 0.7);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-nav small:first-child {
  margin-top: 0;
}

.admin-nav a span {
  display: grid;
  flex: 0 0 26px;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  font-size: 10px;
  font-weight: 950;
}

.admin-nav a.active,
.admin-nav a:hover {
  border-color: rgba(223, 255, 40, 0.18);
  background: rgba(223, 255, 40, 0.08);
  color: var(--lime);
}

.admin-nav a.active span,
.admin-nav a:hover span {
  background: var(--lime);
  color: #080a0d;
}

.admin-main {
  padding: 22px clamp(18px, 3vw, 38px) 42px;
}

.admin-body input,
.admin-body textarea,
.admin-body select {
  min-height: 38px;
  padding: 0 11px;
  border-radius: 8px;
  font-size: 13px;
}

.admin-body textarea {
  min-height: 76px;
  padding-top: 9px;
  line-height: 1.45;
}

.admin-body label {
  gap: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.admin-body .primary,
.admin-body .ghost,
.admin-body button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 13px;
}

.admin-body .checkline {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
}

.admin-body .checkline input {
  width: 16px;
  min-height: 16px;
}

.admin-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 58px;
  margin-bottom: 18px;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-head h1 {
  margin-bottom: 4px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.admin-head p {
  color: var(--muted);
  font-size: 13px;
}

.admin-stats,
.pipeline-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.admin-stats article,
.pipeline-grid article,
.admin-card,
.admin-empty {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.admin-stats article,
.pipeline-grid article {
  padding: 14px;
}

.admin-stats span,
.pipeline-grid span {
  display: block;
  color: var(--muted);
  font-weight: 900;
}

.admin-stats strong,
.pipeline-grid strong {
  display: block;
  margin-top: 6px;
  color: var(--lime);
  font-size: 30px;
  line-height: 1;
}

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

.pipeline-grid article {
  background: #0c0f14;
}

.pipeline-grid strong {
  font-size: 34px;
}

.dashboard-grid,
.settings-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.dashboard-link,
.settings-grid article {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.dashboard-link strong,
.settings-grid strong {
  color: var(--text);
  font-size: 20px;
}

.dashboard-link span,
.settings-grid span {
  color: var(--muted);
  font-weight: 800;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.media-grid article,
.media-edit-card,
.lead-source-box {
  display: grid;
  gap: 8px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090b0f;
}

.media-grid img {
  width: 100%;
  height: 140px;
  border-radius: 8px;
  object-fit: cover;
}

.media-edit-card label {
  gap: 6px;
  font-size: 13px;
}

.media-grid input,
.lead-table input {
  min-height: 38px;
  font-size: 13px;
}

.lead-source-box {
  margin: 0 14px 14px;
}

.lead-source-box span {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.admin-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.media-picker-strip,
.source-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #0c0f14;
}

.media-picker-strip strong {
  width: 100%;
}

.media-picker-strip button,
.source-chip-grid span {
  min-height: 40px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--panel-2);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  padding: 0 14px;
}

.source-chip-grid span {
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.source-chip-grid strong {
  color: var(--lime);
}

.tracking-list-card .admin-card-head {
  align-items: end;
}

.tracking-list-card .admin-card-head > div {
  display: grid;
  gap: 4px;
}

.tracking-list-card .admin-card-head h2 {
  margin-bottom: 0;
}

.tracking-search {
  max-width: 420px;
}

.tracking-table {
  min-width: 1180px;
}

.tracking-table td {
  vertical-align: middle;
}

.tracking-table td strong,
.tracking-table td small {
  display: block;
}

.tracking-table td strong {
  color: var(--text);
  font-size: 13px;
  line-height: 1.25;
}

.tracking-table td small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  max-width: 210px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tracking-table tr[hidden] {
  display: none;
}

.source-pill {
  display: inline-flex;
  max-width: 220px;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compact-detail-link {
  min-height: 34px;
  padding: 0 14px;
  border-radius: 8px;
  font-size: 12px;
}

.tracking-detail-actions {
  margin-bottom: 14px;
}

.tracking-detail-card {
  overflow: hidden;
}

.tracking-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.018);
}

.tracking-detail-grid article {
  min-width: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c0f14;
}

.tracking-detail-grid span,
.tracking-detail-flags span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.tracking-detail-grid strong {
  display: block;
  margin-top: 7px;
  color: var(--text);
  font-size: 17px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.tracking-detail-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 18px 18px;
}

.tracking-detail-flags span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.tracking-detail-body {
  padding: 18px;
}

.tracking-detail-body h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.visitor-journey-list {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.visitor-journey-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090b0f;
}

.visitor-journey-card header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
}

.journey-label {
  display: block;
  color: var(--lime);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}

.visitor-journey-card header strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 24px;
  line-height: 1.1;
}

.journey-metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.journey-metrics span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(223, 255, 40, 0.24);
  border-radius: 999px;
  background: rgba(223, 255, 40, 0.08);
  color: var(--lime);
  font-size: 12px;
  font-weight: 900;
}

.journey-context {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.journey-context span {
  min-width: 0;
  padding: 13px 16px;
  background: #0c0f14;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.journey-context strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 12px;
  text-transform: uppercase;
}

.journey-timeline {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 8px 18px 18px;
  list-style: none;
}

.journey-timeline li {
  display: grid;
  grid-template-columns: 76px 150px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  position: relative;
  padding: 14px 0 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-timeline li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--blue);
  border-radius: 50%;
  background: #090b0f;
}

.journey-timeline li.action::before {
  border-color: var(--lime);
}

.journey-timeline li.hot::before {
  border-color: var(--danger);
}

.journey-timeline time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 850;
}

.journey-timeline span {
  color: var(--text);
  font-weight: 950;
}

.journey-timeline a {
  color: var(--muted);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.journey-timeline a:hover {
  color: var(--lime);
}

.journey-agent {
  margin: 0;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 12px;
  overflow-wrap: anywhere;
}

.tracking-raw-log {
  margin-top: 18px;
}

.tracking-raw-log summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px;
  cursor: pointer;
  font-size: 22px;
  font-weight: 950;
}

.tracking-raw-log summary span {
  color: var(--muted);
  font-size: 14px;
}

.crm-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  gap: 12px;
  margin-bottom: 16px;
}

.crm-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 14px;
}

.crm-form select {
  width: 100%;
  min-height: 38px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090b0f;
  color: var(--text);
  font: inherit;
  font-size: 13px;
}

.crm-actions,
.note-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.note-box {
  padding: 0 14px 14px;
}

.note-box h3 {
  font-size: 19px;
}

.note-form textarea {
  flex: 1 1 280px;
  min-height: 64px;
}

.muted {
  color: var(--muted);
}

.note-list {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.note-list article {
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090b0f;
}

.note-list span {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
}

.note-list p {
  margin: 0;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(223, 255, 40, 0.12);
  color: var(--lime);
  font-weight: 900;
  white-space: nowrap;
}

.selected-row {
  background: rgba(223, 255, 40, 0.06);
}

.content-manager {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.content-head {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #0c0f14;
}

.content-head h2 {
  margin: 0;
}

.content-card {
  overflow: visible;
}

.content-browser {
  display: grid;
  grid-template-columns: minmax(260px, 0.38fr) minmax(0, 1fr);
  min-height: 620px;
}

.content-index {
  min-width: 0;
  border-right: 1px solid var(--line);
  background: #090b0f;
}

.content-index-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
  min-height: 48px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.content-index-head > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.content-index-head strong {
  color: var(--text);
  font-size: 15px;
}

.content-index-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.content-search {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #0c0f14;
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
  outline: 0;
}

.content-search:focus {
  border-color: rgba(223, 255, 40, 0.55);
  box-shadow: 0 0 0 3px rgba(223, 255, 40, 0.08);
}

.content-index-list {
  display: grid;
  align-content: start;
  max-height: min(72dvh, 760px);
  overflow-y: auto;
  padding: 8px;
  scrollbar-width: thin;
}

.content-index-list a {
  display: grid;
  gap: 4px;
  padding: 10px 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--text);
}

.content-index-list a[hidden] {
  display: none;
}

.content-index-list a:hover,
.content-index-list a.active {
  border-color: rgba(223, 255, 40, 0.2);
  background: rgba(223, 255, 40, 0.075);
}

.content-index-list a span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-index-list a small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-search-empty {
  margin: 10px;
  padding: 12px;
  border: 1px dashed var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-align: center;
}

.content-editor {
  min-width: 0;
  background: rgba(255, 255, 255, 0.012);
}

.content-editor-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 60px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  background: #0c0f14;
}

.content-editor-head span,
.content-editor-head small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.content-editor-head strong {
  display: block;
  max-width: 860px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.content-edit-form {
  border: 0;
  border-radius: 0;
}

.new-content-panel {
  border-top: 1px solid var(--line);
  background: rgba(223, 255, 40, 0.025);
}

.new-content-panel summary {
  padding: 14px;
  cursor: pointer;
  color: var(--lime);
  font-size: 14px;
  font-weight: 950;
}

.new-content-panel .content-form {
  margin: 0 14px 14px;
}

.content-item-list {
  display: grid;
  gap: 10px;
  padding: 14px;
}

.content-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #090b0f;
}

.content-form textarea {
  min-height: 84px;
}

.new-content-form {
  border-color: rgba(223, 255, 40, 0.35);
  background: rgba(223, 255, 40, 0.04);
}

.checkline {
  display: flex;
  gap: 10px;
  align-items: center;
}

.checkline input {
  width: auto;
  min-height: auto;
}

.danger-button {
  color: var(--danger);
}

.admin-card {
  overflow: hidden;
}

.admin-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.admin-card-head h2 {
  margin: 0;
  font-size: 22px;
}

.admin-card-head span {
  color: var(--muted);
  font-weight: 900;
}

.admin-empty {
  margin: 14px;
  padding: 18px;
}

.admin-empty h3 {
  font-size: 26px;
}

.admin-empty p {
  color: var(--muted);
}

.lead-table-wrap {
  overflow-x: auto;
}

.lead-table {
  width: 100%;
  min-width: 1080px;
  border-collapse: collapse;
}

.lead-table th,
.lead-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.lead-table th {
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lead-table td {
  color: var(--muted);
  font-size: 13px;
}

.lead-table td:nth-child(2),
.lead-table td:nth-child(3),
.lead-table td:nth-child(6) {
  color: var(--text);
  font-weight: 800;
}

.lead-table a {
  color: var(--lime);
}

.inline-form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 180px;
}

.inline-form button {
  padding: 8px 10px;
  min-height: 36px;
}

@media (max-width: 1100px) {
  nav {
    display: none;
  }

  .admin-rail nav,
  .admin-nav {
    display: grid;
  }

  .hero,
  .lead-section,
  .districts,
  .detail-section,
  .coverage-section,
  .checklist-section {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .steps,
  .fact-grid,
  .blog-grid,
  .trust-grid,
  .media-grid,
  .confidence-band,
  .expectation-grid,
  .scenario-grid,
  .archive-grid,
  .archive-summary,
  .tip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: relative;
    grid-template-columns: 62px minmax(0, 1fr);
    height: auto;
    max-height: none;
    overflow: visible;
    padding: 10px;
  }

  .admin-head,
  .admin-nav {
    align-items: stretch;
  }

  .admin-nav {
    max-height: min(56dvh, 520px);
    padding-right: 6px;
  }

  .admin-stats,
  .pipeline-grid,
  .crm-grid,
  .content-browser,
  .content-form,
  .dashboard-grid,
  .settings-grid,
  .tracking-detail-grid,
  .journey-context,
  .promo-strip {
    grid-template-columns: 1fr;
  }

  .tracking-list-card .admin-card-head {
    align-items: stretch;
    flex-direction: column;
  }

  .tracking-search {
    max-width: none;
  }

  .visitor-journey-card header {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey-metrics {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .site-header,
  .hero-actions,
  footer,
  .sticky-contact {
    align-items: stretch;
    flex-direction: column;
  }

  .header-actions {
    display: none;
  }

  .admin-sidebar {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .admin-rail {
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-rows: auto;
  }

  .admin-rail nav {
    grid-auto-flow: column;
    grid-auto-columns: 42px;
    overflow-x: auto;
  }

  .admin-menu-panel {
    padding: 0;
  }

  .admin-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 360px;
  }

  .admin-nav small {
    grid-column: 1 / -1;
  }

  .admin-head {
    align-items: stretch;
    flex-direction: column;
  }

  .content-browser {
    min-height: 0;
  }

  .content-index-list {
    max-height: 320px;
  }

  .content-editor-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero {
    padding-top: 44px;
  }

  h1 {
    font-size: 42px;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 0;
    height: 430px;
  }

  .quick-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -90px;
  }

  .lead-form,
  .crm-form,
  .proof-row,
  .service-grid,
  .steps,
  .fact-grid,
  .blog-grid,
  .trust-grid,
  .media-grid,
  .confidence-band,
  .expectation-grid,
  .scenario-grid,
  .checklist-grid,
  .archive-grid,
  .archive-summary,
  .tip-grid {
    grid-template-columns: 1fr;
  }

  .tip-archive-section {
    padding-top: 54px;
  }

  .tip-archive-section .section-head h2 {
    font-size: 38px;
  }

  .tip-filter-bar {
    grid-template-columns: 1fr;
  }

  .tip-filter-bar button {
    width: 100%;
  }

  .archive-intro {
    font-size: 16px;
  }

  .section-more {
    align-items: stretch;
    flex-direction: column;
  }

  .visitor-journey-list {
    padding: 14px;
  }

  .journey-timeline li {
    grid-template-columns: 62px minmax(0, 1fr);
  }

  .journey-timeline li a {
    grid-column: 2;
  }

  .tracking-raw-log summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .sticky-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.8fr);
    right: max(12px, env(safe-area-inset-right));
    bottom: max(12px, env(safe-area-inset-bottom));
    left: max(12px, env(safe-area-inset-left));
    max-width: none;
    border-radius: 8px;
  }

  .sticky-contact a {
    min-width: 0;
    justify-content: center;
    padding: 13px 10px;
    white-space: nowrap;
    font-size: 13px;
  }

  footer {
    padding-bottom: 96px;
  }
}
