@import url("brand/brand-tokens.css");

:root {
  --graphite: var(--ss-graphite);
  --graphite-2: var(--ss-graphite-2);
  --green: var(--ss-green);
  --green-dark: var(--ss-green-dark);
  --green-light: var(--ss-green-light);
  --gold: var(--ss-gold);
  --orange: var(--ss-orange);
  --steel: var(--ss-steel);
  --mist: var(--ss-mist);
  --line: var(--ss-line);
  --white: var(--ss-white);
  --font-display: var(--ss-font-display);
  --font-body: var(--ss-font-body);
  --radius: 8px;
  --shadow: 0 16px 36px rgba(15, 23, 27, .10);
  --shadow-dark: 0 22px 60px rgba(15, 23, 27, .25);
  --max: 1180px;
  --section-y: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

.container {
  width: min(92%, var(--max));
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  margin: 10px 0 16px;
  font-size: 4rem;
  line-height: 1.04;
}

h2 {
  margin: 0 0 14px;
  font-size: 2.35rem;
  line-height: 1.12;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  line-height: 1.25;
}

p {
  margin: 0 0 16px;
}

.lead {
  max-width: 62ch;
  color: var(--steel);
  font-size: 1.12rem;
}

.small {
  color: var(--steel);
  font-size: .9rem;
  line-height: 1.55;
}

.eyebrow {
  margin: 0;
  color: var(--green-dark);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.on-dark,
.on-dark .lead,
.on-dark .small {
  color: rgba(255, 255, 255, .82);
}

.topbar {
  background: var(--graphite-2);
  color: rgba(255, 255, 255, .78);
  font-size: .88rem;
  padding: 8px 0;
}

.topbar-inner,
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
}

.site-header,
header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(8px);
}

nav {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: 1.68rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-logo img {
  width: 48px;
  height: 48px;
}

.logo .site {
  color: var(--green);
}

footer .logo {
  color: var(--white);
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 20px;
}

.navlinks a {
  color: var(--graphite);
  font-size: .95rem;
  font-weight: 800;
  text-decoration: none;
}

.navlinks a:not(.btn):hover,
.navlinks a.active {
  color: var(--green-dark);
}

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  cursor: pointer;
}

.mobile-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 8px;
  padding: 12px 18px;
  border: 2px solid var(--green);
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font: 900 .95rem var(--font-body);
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.btn:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  box-shadow: 0 10px 24px rgba(11, 143, 90, .22);
  transform: translateY(-1px);
}

.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.btn.secondary {
  background: transparent;
  color: var(--graphite);
  border-color: var(--graphite);
}

.btn.secondary:hover {
  background: var(--graphite);
  color: var(--white);
  box-shadow: none;
}

.btn.on-dark,
.btn.secondary.on-dark {
  color: var(--white);
  border-color: rgba(255, 255, 255, .72);
}

.btn.secondary.on-dark:hover {
  background: var(--white);
  color: var(--graphite);
}

.btn.gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--graphite);
}

.btn.gold:hover {
  background: #e1b220;
  border-color: #e1b220;
}

.btn.small-btn {
  min-height: 38px;
  padding: 9px 13px;
  font-size: .86rem;
}

.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.section {
  padding: var(--section-y) 0;
}

.section.alt {
  background: var(--mist);
}

.section.dark {
  background: var(--graphite);
  color: var(--white);
}

.section-head {
  max-width: 720px;
  margin-bottom: 30px;
}

.section-head.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 650px;
  padding: 92px 0 70px;
  background: var(--graphite);
  color: var(--white);
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(90deg, rgba(15, 23, 27, .96), rgba(15, 23, 27, .86) 45%, rgba(15, 23, 27, .38)),
    url("photos/hero-mine-site.jpg") right center / cover no-repeat;
}

.hero::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  content: "";
  background: linear-gradient(90deg, var(--gold) 0 18%, var(--green) 18% 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .72fr);
  gap: 54px;
  align-items: center;
}

.hero h1 {
  max-width: 820px;
  color: var(--white);
}

.hero .lead {
  color: rgba(255, 255, 255, .82);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.hero-meta span,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 8px;
  background: rgba(221, 244, 234, .12);
  color: var(--green-light);
  font-size: .82rem;
  font-weight: 900;
}

.tag.light {
  background: var(--green-light);
  color: var(--green-dark);
}

.hero-card,
.tool-panel,
.form-panel,
.quote-builder {
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  box-shadow: var(--shadow-dark);
}

.hero-card {
  padding: 26px;
}

.hero-card .topline {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.hero-card .price-note {
  color: var(--green-dark);
  font-weight: 900;
}

.action-list {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.action-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 14px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  font-weight: 900;
  text-decoration: none;
}

.action-list a:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.trustbar {
  background: var(--graphite-2);
  color: rgba(255, 255, 255, .82);
  padding: 15px 0;
}

.trustbar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: .92rem;
  font-weight: 900;
  text-align: center;
}

.trustbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trustbar span::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.card,
.intent-card,
.service-card,
.price-card,
.step,
.notice {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.card,
.intent-card,
.service-card,
.price-card {
  padding: 24px;
}

.card:hover,
.intent-card:hover,
.service-card:hover,
.price-card:hover {
  box-shadow: var(--shadow);
}

.intent-card,
.service-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
}

.service-card {
  gap: 10px;
}

.service-card .tag {
  align-self: flex-start;
  margin-bottom: 6px;
}

.service-card h2 {
  margin: 2px 0 8px;
}

.service-card p {
  margin-bottom: 12px;
}

.service-card .feature-list {
  margin-top: 8px;
}

.intent-card .number,
.step .number {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 900;
}

.intent-card p,
.service-card p,
.price-card p {
  color: var(--steel);
}

.intent-card .btn,
.service-card .btn,
.price-card .btn {
  margin-top: auto;
}

.price {
  display: block;
  margin: 8px 0 10px;
  color: var(--green-dark);
  font-size: 1.8rem;
  font-weight: 900;
}

.feature-list,
.checklist {
  display: grid;
  gap: 9px;
  padding: 0;
  margin: 16px 0;
  list-style: none;
}

.feature-list li,
.checklist li {
  position: relative;
  padding-left: 24px;
}

.feature-list li::before,
.checklist li::before {
  position: absolute;
  left: 0;
  top: .12rem;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: var(--green);
  color: var(--white);
  content: "\2713";
  font-size: .72rem;
  font-weight: 900;
  line-height: 16px;
  text-align: center;
}

.problem-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.problem-list li {
  padding: 14px 16px;
  border-left: 5px solid var(--gold);
  border-radius: 8px;
  background: var(--mist);
  font-weight: 800;
}

.step {
  padding: 22px;
  border-top: 6px solid var(--green);
}

.guide-panel,
.proof-panel {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 34px;
  align-items: center;
}

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

.guide-cover {
  padding: 30px;
  background: var(--graphite);
  color: var(--white);
}

.guide-cover .stripe {
  height: 6px;
  margin: 18px 0;
  background: linear-gradient(90deg, var(--gold) 0 18%, var(--green) 18% 100%);
}

.guide-cover h3 {
  font-size: 1.85rem;
}

.guide-body {
  padding: 24px;
}

.photo-panel {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.page-hero {
  padding: 70px 0;
  background: var(--mist);
}

.page-hero .grid-2 {
  align-items: center;
}

.page-hero h1 {
  color: var(--graphite);
  font-size: 3.2rem;
}

.notice {
  padding: 18px 20px;
  border-left: 6px solid var(--gold);
  background: #fff9dc;
}

.proof {
  padding: 28px;
  border-radius: 8px;
  background: var(--graphite);
  color: var(--white);
}

.proof h2,
.proof h3 {
  color: var(--white);
}

.proof .small,
.proof p {
  color: rgba(255, 255, 255, .78);
}

.quote-builder,
.form-panel {
  padding: 26px;
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.quote-builder.compact {
  box-shadow: none;
}

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

label {
  display: block;
  margin-bottom: 14px;
  color: var(--graphite);
  font-weight: 900;
}

.optional-label {
  color: var(--steel);
  font-size: .78rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  border: 1px solid #c7d0d2;
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(11, 143, 90, .18);
  border-color: var(--green);
}

form.was-validated input:invalid,
form.was-validated select:invalid,
form.was-validated textarea:invalid {
  border-color: #a73b35;
}

.grid-2 > *,
.form-grid > *,
.guide-panel > *,
form,
fieldset,
label,
input,
select,
textarea {
  min-width: 0;
}

.field-note {
  display: block;
  margin-top: 5px;
  color: var(--steel);
  font-size: .82rem;
  font-weight: 600;
}

.consent-group {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 12px;
  font-weight: 700;
}

.check-label:last-child {
  margin-bottom: 0;
}

.check-label input {
  width: auto;
  flex: 0 0 auto;
  margin: 4px 0 0;
}

.form-trust {
  margin: 12px 0 0;
  color: var(--steel);
  font-size: .86rem;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

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

.radio-row label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin: 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
  font-weight: 800;
}

.radio-row input {
  width: auto;
  margin: 0;
}

.form-success,
.quote-preview {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 6px solid var(--green);
  border-radius: 8px;
  background: var(--green-light);
  color: var(--green-dark);
  font-weight: 800;
}

.quote-preview.visible {
  display: block;
}

.form-status {
  margin-top: 16px;
  padding: 14px 16px;
  border-left: 6px solid var(--green);
  border-radius: 8px;
  font-weight: 800;
}

.form-status.working {
  border-color: var(--gold);
  background: #fff8dc;
  color: #665114;
}

.form-status.success {
  border-color: var(--green);
  background: var(--green-light);
  color: var(--green-dark);
}

.form-status.error {
  border-color: #a73b35;
  background: #fff0ef;
  color: #7e2722;
}

button[aria-busy="true"],
button:disabled {
  cursor: wait;
  opacity: .72;
}

.reference-card {
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 6px solid var(--green);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-reference {
  display: inline-block;
  margin: 8px 0 16px;
  padding: 8px 12px;
  border-radius: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 1.12rem;
  font-weight: 900;
  letter-spacing: .02em;
}

.faq {
  max-width: 860px;
  margin: 28px auto 0;
}

.faq-item {
  overflow: hidden;
  margin-bottom: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-q {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border: 0;
  background: transparent;
  color: var(--graphite);
  font: 900 1rem var(--font-body);
  text-align: left;
  cursor: pointer;
}

.faq-q:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.faq-q .chev {
  flex: 0 0 auto;
  color: var(--green);
  transition: transform .2s ease;
}

.faq-item.open .chev {
  transform: rotate(180deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-a p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--steel);
}

.faq-item.open .faq-a {
  max-height: 600px;
}

.cta-banner {
  padding: 62px 0;
  background: var(--graphite);
  color: var(--white);
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
}

.cta-banner .lead {
  margin-right: auto;
  margin-left: auto;
  color: rgba(255, 255, 255, .82);
}

.cta-banner .ctas {
  justify-content: center;
}

.audit-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 68px;
  background: var(--graphite);
  color: var(--white);
}

.audit-hero::before {
  position: absolute;
  inset: 0;
  background: url("photos/problem-file-review.jpg") center / cover no-repeat;
  content: "";
  opacity: .18;
}

.audit-hero > .container {
  position: relative;
}

.audit-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(310px, .8fr);
  gap: 48px;
  align-items: center;
}

.audit-hero h1 {
  max-width: 780px;
  color: var(--white);
  font-size: 3.7rem;
}

.audit-hero .lead {
  max-width: 720px;
  color: rgba(255, 255, 255, .82);
}

.audit-result-card {
  padding: 28px;
  border-top: 7px solid var(--gold);
  border-radius: 8px;
  background: var(--white);
  color: var(--graphite);
  box-shadow: var(--shadow-dark);
}

.audit-result-card h2 {
  margin-top: 18px;
  font-size: 1.75rem;
}

.audit-check-list {
  display: grid;
  gap: 11px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.audit-check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.audit-check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  content: "✓";
  font-size: .78rem;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.audit-form-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}

.audit-form-intro {
  position: sticky;
  top: 112px;
}

.audit-included {
  margin: 26px 0;
}

.upload-group {
  margin: 22px 0;
  padding: 0;
  border: 0;
}

.upload-group legend {
  margin-bottom: 12px;
  color: var(--graphite);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 900;
}

.upload-field {
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--green);
  border-radius: 8px;
  background: var(--mist);
}

.upload-field label {
  margin-bottom: 0;
}

.upload-field input[type="file"] {
  padding: 9px;
  border-style: dashed;
  background: var(--white);
  cursor: pointer;
}

.upload-field input[type="file"]::file-selector-button {
  margin-right: 10px;
  padding: 9px 12px;
  border: 0;
  border-radius: 6px;
  background: var(--graphite);
  color: var(--white);
  font: 800 .84rem var(--font-body);
  cursor: pointer;
}

.file-summary {
  display: block;
  margin-top: 7px;
  color: var(--green-dark);
  font-size: .82rem;
  font-weight: 800;
}

footer {
  padding: 52px 0 28px;
  background: var(--graphite-2);
  color: rgba(255, 255, 255, .78);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}

footer h3 {
  color: var(--white);
}

footer a {
  color: var(--white);
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

footer hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, .16);
  margin: 28px 0 18px;
}

.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 50;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(0, 0, 0, .28);
  transition: transform .16s ease;
}

.wa-float:hover {
  transform: translateY(-2px) scale(1.03);
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.legal-page {
  max-width: 900px;
}

.legal-page h1 {
  color: var(--graphite);
  font-size: 3rem;
}

.legal-page h2 {
  margin-top: 28px;
  font-size: 1.6rem;
}

html.js .reveal {
  opacity: 1;
  transform: none;
}

.cookie-consent {
  position: fixed;
  left: 12px;
  bottom: 12px;
  z-index: 100;
  display: grid;
  width: min(420px, calc(100% - 24px));
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 8px;
  background: var(--graphite-2);
  color: var(--white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .28);
}

.cookie-consent strong {
  font-size: .92rem;
}

.cookie-consent p {
  margin: 3px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: .78rem;
  line-height: 1.45;
}

.cookie-consent a {
  color: var(--white);
}

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

.cookie-consent-actions .btn {
  min-height: 34px;
  padding: 7px 10px;
  font-size: .78rem;
}

.cookie-consent .btn.secondary {
  border-color: rgba(255, 255, 255, .38);
  color: var(--white);
}

.cookie-consent .btn.secondary:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .72);
  color: var(--white);
}

.cookie-settings {
  position: fixed;
  bottom: 8px;
  left: 8px;
  z-index: 49;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: rgba(255, 255, 255, .96);
  color: var(--steel);
  font: 700 .72rem var(--font-body);
  cursor: pointer;
}

.cookie-settings:hover,
.cookie-settings:focus-visible {
  color: var(--green-dark);
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }

  html.js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .guide-panel,
  .proof-panel,
  .audit-hero-grid,
  .audit-form-layout {
    grid-template-columns: 1fr;
  }

  .audit-form-intro {
    position: static;
  }

  .hero {
    min-height: 0;
  }

  .audit-hero h1 {
    font-size: 3.1rem;
  }
}

@media (max-width: 760px) {
  :root {
    --section-y: 50px;
  }

  .cookie-consent {
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
  }

  .cookie-consent-actions {
    width: 100%;
  }

  .cookie-consent-actions .btn {
    flex: 1 1 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  h2 {
    font-size: 2rem;
  }

  .page-hero h1 {
    font-size: 2.35rem;
  }

  .audit-hero {
    padding: 56px 0 48px;
  }

  .audit-hero h1 {
    font-size: 2.55rem;
  }

  .grid-4,
  .grid-3,
  .grid-2,
  .footer-grid,
  .form-grid,
  .radio-row {
    grid-template-columns: 1fr;
  }

  .topbar-inner,
  .topbar .container {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  nav {
    min-height: 68px;
  }

  .logo img {
    width: 46px;
    height: 46px;
  }

  .mobile-toggle {
    display: block;
  }

  .navlinks {
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 4%;
    border-bottom: 1px solid var(--line);
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
  }

  .navlinks.open {
    display: flex;
  }

  .navlinks .btn {
    width: 100%;
  }

  .hero {
    padding: 58px 0 52px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(15, 23, 27, .96), rgba(15, 23, 27, .9)),
      url("photos/hero-mine-site.jpg") center / cover no-repeat;
  }

  .hero-card,
  .quote-builder,
  .form-panel {
    padding: 20px;
  }

  .intent-card,
  .service-card {
    min-height: 0;
  }
}
