:root {
  --ink: #070707;
  --ink-2: #11110f;
  --panel: rgba(18, 18, 16, 0.82);
  --panel-solid: #151512;
  --paper: #f8f7f2;
  --muted: #bcb8ad;
  --line: rgba(255, 255, 255, 0.14);
  --gold: #c8a45d;
  --gold-2: #e3c982;
  --teal: #7abdc2;
  --danger: #e07b65;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.46);
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: var(--ink);
  color: var(--paper);
  letter-spacing: 0;
}

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

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

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

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

.site-header {
  position: fixed;
  z-index: 40;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 16px clamp(18px, 4vw, 56px);
  background: rgba(7, 7, 7, 0.52);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: background 180ms ease, padding 180ms ease;
}

.site-header.is-solid {
  background: rgba(7, 7, 7, 0.9);
  padding-block: 11px;
}

.brand img {
  width: 152px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.38));
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: clamp(14px, 2vw, 30px);
  color: rgba(248, 247, 242, 0.76);
  font-size: 0.92rem;
}

.main-nav a {
  padding: 8px 0;
}

.main-nav a:hover,
.footer-links a:hover {
  color: var(--gold-2);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  font-weight: 750;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  background: var(--gold);
  color: #11100c;
  min-height: 42px;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  stroke: currentColor;
}

.button.primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #11100c;
  box-shadow: 0 16px 35px rgba(200, 164, 93, 0.2);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--paper);
  border-color: var(--line);
}

.button.full {
  width: 100%;
}

.button.fit,
.section-link {
  width: fit-content;
}

.button.dark-fit {
  width: fit-content;
  background: #0d0d0b;
  color: var(--paper);
  border-color: rgba(7, 7, 7, 0.14);
}

.card-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold-2);
  font-weight: 850;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 96px clamp(18px, 4vw, 56px) 20px;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/generated/taxora-premium-showroom.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.035);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.72) 38%, rgba(7, 7, 7, 0.26) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.95) 0%, rgba(7, 7, 7, 0.08) 42%, rgba(7, 7, 7, 0.75) 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.07fr) minmax(320px, 430px);
  gap: clamp(28px, 5vw, 70px);
  align-items: end;
}

.eyebrow,
.form-kicker {
  margin: 0 0 14px;
  color: var(--gold-2);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 5.8vw, 5.15rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(248, 247, 242, 0.84);
  font-size: clamp(1.05rem, 1.9vw, 1.28rem);
  line-height: 1.65;
}

.hero-actions,
.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin: 24px 0 0;
}

.hero-proof div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  border-radius: var(--radius);
}

.hero-proof dt {
  color: var(--paper);
  font-weight: 900;
  font-size: 1.28rem;
}

.hero-proof dd {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.glass-panel,
.hero-form,
.calculator-shell,
.contact-form {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
  border-radius: var(--radius);
}

.hero-form,
.contact-form {
  padding: 22px;
}

.hero-form {
  gap: 8px;
  padding: 16px 18px;
}

.hero-form h2 {
  margin: 0 0 8px;
  font-size: 1.24rem;
  line-height: 1.15;
}

.hero-form label {
  gap: 6px;
  font-size: 0.86rem;
}

.hero-form input {
  min-height: 34px;
}

.hero-form textarea {
  min-height: 52px;
  max-height: 52px;
}

.hero-form .button {
  min-height: 42px;
}

label {
  display: grid;
  gap: 8px;
  color: rgba(248, 247, 242, 0.84);
  font-size: 0.91rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--paper);
  padding: 11px 13px;
  outline: 0;
}

select option {
  background: #141414;
  color: var(--paper);
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200, 164, 93, 0.18);
}

.hero-form,
.contact-form,
#calculatorForm {
  display: grid;
  gap: 14px;
}

.check-row {
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.45;
}

.check-row input {
  min-height: 18px;
  width: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.check-row a,
.legal-copy a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--teal);
  font-weight: 700;
}

.brand-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.brand-strip span {
  min-height: 74px;
  display: grid;
  place-items: center;
  padding: 18px;
  text-align: center;
  background: #0d0d0b;
  color: rgba(248, 247, 242, 0.76);
  font-weight: 750;
}

.eyebrow.dark {
  color: #8f7438;
}

.home-why {
  display: grid;
  grid-template-columns: minmax(300px, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  padding: clamp(68px, 9vw, 112px) clamp(18px, 5vw, 72px);
  background: #f3f0e9;
  color: #11100c;
}

.home-why-copy {
  display: grid;
  gap: 18px;
  max-width: 520px;
}

.home-why h2,
.bpm-showcase h2,
.home-contact-panel h2 {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.home-why p,
.bpm-showcase-light p,
.home-contact-panel p {
  margin: 0;
  color: #4e4a41;
  line-height: 1.72;
  font-size: 1.04rem;
}

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

.why-card {
  min-height: 238px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(17, 16, 12, 0.12);
  border-radius: var(--radius);
  background: #fffdfa;
  box-shadow: 0 20px 54px rgba(40, 32, 18, 0.08);
}

.why-card h3 {
  margin: 0 0 10px;
  color: #11100c;
  font-size: 1.28rem;
}

.why-card p {
  color: #5c584f;
}

.icon-badge.light {
  border-color: rgba(200, 164, 93, 0.52);
  background: rgba(200, 164, 93, 0.12);
  color: #9a7433;
}

.services-strip {
  padding: clamp(66px, 8vw, 104px) clamp(18px, 4vw, 56px);
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.9)),
    url("assets/doc-media/image3.jpeg") center / cover;
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.services-strip-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.light-heading {
  max-width: 820px;
}

.service-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.service-tile {
  display: grid;
  align-content: start;
  min-height: 236px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(14, 14, 12, 0.78);
  box-shadow: var(--shadow-soft);
  transition: transform 200ms ease, border-color 200ms ease, background 200ms ease;
}

.service-tile:hover {
  transform: translateY(-5px);
  border-color: rgba(227, 201, 130, 0.46);
  background: rgba(24, 22, 17, 0.88);
}

.service-tile strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.16rem;
}

.service-tile small {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.96rem;
}

.bpm-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: 720px;
}

.bpm-showcase-light,
.bpm-showcase-dark {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(54px, 7vw, 96px);
}

.bpm-showcase-light {
  background: #f8f7f2;
  color: #11100c;
  overflow: hidden;
}

.bpm-showcase-dark {
  background:
    linear-gradient(135deg, rgba(10, 10, 8, 0.96), rgba(18, 16, 12, 0.9)),
    url("assets/generated/taxora-premium-showroom.jpg") center / cover;
  color: var(--paper);
}

.bpm-showcase-dark p {
  margin: 0;
  color: rgba(248, 247, 242, 0.72);
  line-height: 1.72;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.48em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.52);
}

.dark-list {
  color: #39352e;
  font-weight: 760;
}

.showcase-car {
  position: relative;
  min-height: 310px;
  margin-top: 10px;
}

.showcase-car img {
  width: min(680px, 112%);
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(37, 30, 18, 0.26);
}

.saving-card {
  position: absolute;
  right: clamp(8px, 5vw, 42px);
  bottom: 8px;
  display: grid;
  gap: 4px;
  min-width: 210px;
  padding: 18px 20px;
  border: 1px solid rgba(200, 164, 93, 0.45);
  border-radius: var(--radius);
  background: rgba(17, 16, 12, 0.9);
  color: var(--paper);
  box-shadow: var(--shadow-soft);
}

.saving-card span {
  color: var(--muted);
}

.process-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
  border-block: 1px solid rgba(255, 255, 255, 0.1);
}

.process-band article {
  min-height: 255px;
  padding: clamp(24px, 4vw, 46px);
  background: #10100e;
}

.process-band h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.process-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.home-blog {
  padding-bottom: 70px;
}

.home-contact-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
  padding: clamp(62px, 8vw, 100px) clamp(18px, 5vw, 72px);
  background: #f4f1ea;
  color: #11100c;
}

.contact-intro {
  display: grid;
  gap: 18px;
}

.opening-card {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 24px;
  border-left: 3px solid var(--gold);
  background: #fffdfa;
  box-shadow: 0 18px 48px rgba(40, 32, 18, 0.08);
}

.opening-card strong {
  font-size: 1.16rem;
}

.opening-card span {
  color: #5a554d;
}

.contact-form-light {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid rgba(17, 16, 12, 0.12);
  border-radius: var(--radius);
  background: #fffdfa;
  box-shadow: 0 24px 70px rgba(40, 32, 18, 0.12);
}

.contact-form-light label {
  display: grid;
  gap: 8px;
  color: #27231c;
  font-weight: 750;
}

.contact-form-light input,
.contact-form-light textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(17, 16, 12, 0.14);
  border-radius: var(--radius);
  background: #10151b;
  color: var(--paper);
  padding: 13px 14px;
  outline: none;
}

.contact-form-light textarea {
  resize: vertical;
}

.contact-form-light .dark-check {
  display: flex;
  color: #4e4a41;
}

.contact-band-light {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(17, 16, 12, 0.12);
}

.contact-band-light a {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 2px;
  align-items: center;
  padding: clamp(24px, 4vw, 42px) clamp(18px, 6vw, 76px);
  background: #fffdfa;
  color: #11100c;
}

.contact-band-light .icon-badge {
  grid-row: span 2;
  margin-bottom: 0;
}

.contact-band-light strong {
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0;
  color: #7f7564;
}

.contact-band-light em {
  font-style: normal;
  font-size: clamp(1.18rem, 3vw, 2.2rem);
  font-weight: 900;
}

.section,
.blog-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 94px 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.split-copy h2,
.calculator-copy h1,
.calculator-copy h2,
.business-band h2,
.faq-block h2,
.review-block h2,
.contact-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.25rem);
  line-height: 1;
  letter-spacing: 0;
}

.section-heading p,
.split-copy p,
.calculator-copy p,
.business-band p,
.contact-card p {
  margin: 0;
  color: rgba(248, 247, 242, 0.74);
  line-height: 1.7;
  font-size: 1.02rem;
}

.service-grid,
.process-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.process-card,
.blog-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(12, 12, 10, 0.72);
  padding: 26px;
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
  transition: transform 320ms ease, border-color 320ms ease, background 320ms ease;
}

.service-card::after,
.process-card::after,
.blog-card::after {
  content: "";
  position: absolute;
  inset: auto -25% -45% 25%;
  height: 140px;
  background: radial-gradient(circle, rgba(200, 164, 93, 0.2), transparent 68%);
  pointer-events: none;
}

.service-card:hover,
.process-card:hover,
.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(227, 201, 130, 0.42);
  background: linear-gradient(180deg, rgba(200, 164, 93, 0.12), rgba(255, 255, 255, 0.04));
}

.line-icon,
.icon-badge {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  border: 1px solid rgba(227, 201, 130, 0.46);
  background:
    linear-gradient(145deg, rgba(227, 201, 130, 0.18), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.04);
  color: var(--gold-2);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(200, 164, 93, 0.12);
}

.icon-badge svg,
.line-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.process-card h3,
.blog-card h3 {
  margin: 0 0 12px;
  font-size: 1.3rem;
}

.service-card p,
.process-card p,
.blog-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.split-section,
.calculator-section,
.faq-reviews,
.contact-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 70px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.image-panel {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  min-height: 520px;
  background: #111;
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.split-copy,
.calculator-copy {
  display: grid;
  gap: 20px;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 10px;
}

.feature-list div,
.business-points span {
  display: grid;
  gap: 4px;
  padding: 18px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.045);
}

.feature-list span,
.tick-list,
.business-points span {
  color: var(--muted);
}

.process-section {
  padding-top: 34px;
}

.compact-heading {
  max-width: 680px;
}

.process-card span {
  display: inline-grid;
}

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

.tick-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  line-height: 1.55;
}

.calculator-shell {
  padding: clamp(18px, 3vw, 28px);
}

.stepper {
  display: flex;
  gap: 10px;
  margin-bottom: 22px;
}

.step-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  font-weight: 900;
}

.step-dot.active {
  color: #10100d;
  background: var(--gold);
}

.calc-step {
  display: none;
  margin: 0;
  padding: 0;
  border: 0;
}

.calc-step.active {
  display: block;
}

.calc-step legend {
  margin-bottom: 18px;
  font-size: 1.5rem;
  font-weight: 900;
}

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

.calculator-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 10px;
}

[data-submit] {
  display: none;
}

.result-panel {
  display: grid;
  gap: 14px;
}

.result-panel[hidden] {
  display: none;
}

.result-panel h3 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}

.result-panel p {
  margin: 0;
  color: rgba(248, 247, 242, 0.78);
  line-height: 1.7;
}

.business-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(227, 201, 130, 0.13), transparent 34%),
    linear-gradient(90deg, rgba(13, 13, 11, 0.96), rgba(18, 18, 15, 0.9));
  box-shadow: var(--shadow-soft);
}

.business-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 92px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
  pointer-events: none;
  opacity: 0.45;
}

.business-band > * {
  position: relative;
  z-index: 1;
}

.business-points {
  display: grid;
  gap: 12px;
}

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

.faq-block,
.review-block,
.contact-card {
  display: grid;
  gap: 18px;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

summary {
  cursor: pointer;
  font-weight: 850;
  font-size: 1.05rem;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.review-slider {
  min-height: 260px;
  position: relative;
}

.review-card {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 260ms ease, transform 260ms ease;
}

.review-card.active {
  opacity: 1;
  transform: translateY(0);
}

.review-card span {
  color: var(--gold-2);
  font-size: 1.1rem;
}

.review-card p {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.45;
}

.blog-card time {
  color: var(--gold-2);
  font-weight: 800;
  font-size: 0.82rem;
}

.blog-card a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold-2);
  font-weight: 800;
}

.page-hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(18px, 4vw, 56px) 64px;
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.74) 38%, rgba(7, 7, 7, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.12) 48%, rgba(7, 7, 7, 0.72) 100%),
    url("assets/doc-media/image5.jpeg") center / cover;
  border-bottom: 1px solid var(--line);
}

.page-hero::before,
.page-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-hero::before {
  inset: 0;
  background:
    linear-gradient(115deg, rgba(227, 201, 130, 0.18), transparent 28%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 96px);
  mix-blend-mode: screen;
  opacity: 0.34;
}

.page-hero::after {
  right: clamp(18px, 8vw, 126px);
  bottom: clamp(28px, 7vw, 88px);
  width: min(34vw, 440px);
  aspect-ratio: 3.6 / 1;
  border: 1px solid rgba(227, 201, 130, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, rgba(227, 201, 130, 0.52), transparent 8%),
    linear-gradient(90deg, transparent, rgba(227, 201, 130, 0.18), transparent);
  filter: blur(0.2px);
  opacity: 0.74;
}

.calculator-hero {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.78) 40%, rgba(7, 7, 7, 0.16) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.08) 48%, rgba(7, 7, 7, 0.74) 100%),
    url("assets/generated/taxora-premium-showroom.jpg") 62% center / cover;
}

.taxatie-hero {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.72) 42%, rgba(7, 7, 7, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.12) 48%, rgba(7, 7, 7, 0.68) 100%),
    url("assets/generated/taxora-bpm-taxatie-studio.jpg") 66% center / cover;
}

.aangifte-hero {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.74) 42%, rgba(7, 7, 7, 0.22) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.1) 46%, rgba(7, 7, 7, 0.72) 100%),
    url("assets/generated/taxora-bpm-aangifte-road.jpg") 64% center / cover;
}

.zakelijk-hero {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.72) 42%, rgba(7, 7, 7, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 7, 7, 0.96) 0%, rgba(7, 7, 7, 0.1) 46%, rgba(7, 7, 7, 0.72) 100%),
    url("assets/generated/taxora-premium-showroom.jpg") 64% center / cover;
}

.over-hero,
.contact-hero,
.aanbod-hero {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.96), rgba(7, 7, 7, 0.52)),
    url("assets/generated/taxora-premium-showroom.jpg") center / cover;
}

.over-hero {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.74) 46%, rgba(7, 7, 7, 0.22) 100%),
    url("assets/generated/taxora-over-ons-team.jpg") 68% center / cover;
}

.blog-hero {
  background:
    linear-gradient(90deg, rgba(7, 7, 7, 0.98) 0%, rgba(7, 7, 7, 0.72) 44%, rgba(7, 7, 7, 0.2) 100%),
    url("assets/generated/taxora-bpm-taxatie-studio.jpg") 66% center / cover;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.7rem, 7vw, 5.5rem);
  line-height: 0.98;
}

.page-hero p:not(.eyebrow) {
  max-width: 700px;
  margin: 22px 0 0;
  color: rgba(248, 247, 242, 0.78);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.65;
}

.page-hero .button {
  margin-top: 28px;
}

.page-hero .hero-actions .button {
  margin-top: 0;
}

.hero-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  width: min(860px, 100%);
  margin-top: 30px;
}

.hero-detail-card {
  min-height: 142px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(8, 8, 7, 0.62);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(18px);
}

.hero-detail-card strong,
.hero-detail-card span:not(.icon-badge) {
  display: block;
}

.hero-detail-card strong {
  margin-bottom: 7px;
  font-size: 1rem;
}

.hero-detail-card span:not(.icon-badge) {
  color: rgba(248, 247, 242, 0.68);
  font-size: 0.88rem;
  line-height: 1.48;
}

.icon-badge.small {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
}

.icon-badge.small svg {
  width: 18px;
  height: 18px;
}

.page-calculator {
  padding-top: 94px;
}

.calculator-section.page-calculator {
  padding-top: clamp(154px, 12vw, 190px);
  align-items: start;
}

.cta-band {
  width: min(1180px, calc(100% - 36px));
  margin: 36px auto 96px;
  padding: clamp(30px, 6vw, 64px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 15%, rgba(200, 164, 93, 0.22), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    #0c0c0a;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.cta-copy {
  position: relative;
  z-index: 1;
}

.cta-visual {
  position: relative;
  min-height: 320px;
  perspective: 900px;
}

.cta-visual::before {
  content: "";
  position: absolute;
  inset: 36px 0 0;
  border: 1px solid rgba(227, 201, 130, 0.2);
  border-radius: 50%;
  transform: rotateX(64deg) rotateZ(-18deg);
  background:
    repeating-radial-gradient(circle, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 28px),
    radial-gradient(circle, rgba(122, 189, 194, 0.12), transparent 58%);
}

.cockpit-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(17, 17, 14, 0.78);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.cockpit-main {
  right: 8%;
  top: 24px;
  width: 260px;
  padding: 22px;
  transform: rotateY(-10deg) rotateX(4deg);
}

.cockpit-main strong {
  display: block;
  margin-top: 16px;
  font-size: 2.9rem;
  line-height: 1;
}

.cockpit-main span,
.cockpit-small span {
  color: var(--muted);
}

.cockpit-meter {
  width: 100%;
  height: 92px;
  border-radius: 92px 92px 0 0;
  border: 12px solid rgba(255, 255, 255, 0.09);
  border-bottom: 0;
  position: relative;
  overflow: hidden;
}

.cockpit-meter::before {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: inherit;
  border: 12px solid var(--gold);
  border-right-color: transparent;
  border-bottom: 0;
  transform: rotate(-8deg);
}

.cockpit-meter::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 3px;
  height: 74px;
  background: var(--gold-2);
  transform-origin: bottom;
  transform: rotate(38deg);
}

.cockpit-small {
  left: 2%;
  bottom: 22px;
  width: 210px;
  padding: 18px;
}

.cockpit-small strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold-2);
  font-size: 1.15rem;
}

.cockpit-pill {
  right: 0;
  bottom: 34px;
  padding: 12px 16px;
  color: var(--paper);
  font-weight: 850;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(20px);
}

.motion-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 560ms ease, transform 560ms ease;
}

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

.car-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-solid);
}

.car-card img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
}

.car-card div {
  display: grid;
  gap: 10px;
  padding: 18px;
}

.car-card h3,
.car-card p {
  margin: 0;
}

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

.car-card strong {
  color: var(--gold-2);
}

.legal-copy {
  display: grid;
  gap: 14px;
  max-width: 860px;
}

.legal-copy h2,
.legal-copy p {
  margin: 0;
}

.legal-copy p {
  color: rgba(248, 247, 242, 0.76);
  line-height: 1.7;
}

.contact-section {
  align-items: stretch;
  padding-bottom: 96px;
}

.contact-card {
  padding: clamp(28px, 5vw, 56px);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(18, 18, 15, 0.92), rgba(8, 8, 7, 0.98));
}

.contact-lines {
  display: grid;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 900;
}

.contact-lines a {
  color: var(--gold-2);
}

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

.deep-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
}

.deep-section.tight {
  padding-top: 46px;
}

.light-section {
  background: #f4f1ea;
  color: #11100c;
  padding: clamp(66px, 8vw, 102px) 0;
}

.light-section .section-heading p,
.light-section .rich-card p,
.light-section .timeline-card p,
.light-section .parameter-chip span {
  color: #595348;
}

.light-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.service-split {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 86px 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: center;
}

.service-split.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.service-copy {
  display: grid;
  gap: 20px;
}

.service-copy h2,
.cta-split h2,
.light-section h2 {
  margin: 0;
  font-size: clamp(2.15rem, 4.8vw, 4.75rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.service-copy p,
.cta-split p {
  margin: 0;
  color: rgba(248, 247, 242, 0.74);
  line-height: 1.7;
  font-size: 1.04rem;
}

.service-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow-soft);
}

.service-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.media-note {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid rgba(227, 201, 130, 0.34);
  border-radius: var(--radius);
  background: rgba(7, 7, 7, 0.78);
  backdrop-filter: blur(16px);
}

.media-note strong {
  color: var(--gold-2);
}

.media-note span {
  color: var(--muted);
}

.rich-grid,
.parameter-grid,
.segment-grid,
.contact-route-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

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

.rich-card,
.timeline-card,
.segment-card,
.contact-route-card,
.parameter-chip {
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.rich-card,
.timeline-card,
.contact-route-card {
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(12, 12, 10, 0.72);
  box-shadow: var(--shadow-soft);
}

.light-section .rich-card,
.light-section .timeline-card,
.light-section .parameter-chip {
  border-color: rgba(17, 16, 12, 0.12);
  background: #fffdfa;
  box-shadow: 0 18px 50px rgba(40, 32, 18, 0.08);
}

.rich-card h3,
.timeline-card h3,
.segment-card h3,
.contact-route-card h3 {
  margin: 0 0 10px;
  font-size: 1.22rem;
}

.rich-card p,
.timeline-card p,
.segment-card p,
.contact-route-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.parameter-grid {
  margin-top: 28px;
}

.parameter-chip {
  display: grid;
  gap: 6px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.parameter-chip strong,
.parameter-chip span {
  display: block;
}

.parameter-chip strong {
  color: inherit;
  font-size: 0.98rem;
}

.parameter-chip span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.timeline-card {
  position: relative;
  min-height: 220px;
}

.timeline-card em {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: #11100c;
  font-style: normal;
  font-weight: 950;
}

.cta-split {
  width: min(1180px, calc(100% - 36px));
  margin: 34px auto 96px;
  padding: clamp(30px, 6vw, 60px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.76fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
  border: 1px solid rgba(227, 201, 130, 0.25);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(200, 164, 93, 0.18), transparent 34%),
    linear-gradient(90deg, rgba(13, 13, 11, 0.96), rgba(18, 18, 15, 0.92));
  box-shadow: var(--shadow);
}

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

.cta-list li {
  padding: 15px 16px;
  border-left: 2px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(248, 247, 242, 0.78);
}

.segment-card {
  overflow: hidden;
  background: var(--panel-solid);
  box-shadow: var(--shadow-soft);
}

.segment-card img {
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
}

.segment-card div {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.segment-card strong {
  color: var(--gold-2);
}

.contact-route-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  color: var(--gold-2);
  font-weight: 850;
}

.contact-form.compact-form {
  padding: clamp(22px, 4vw, 34px);
}

.service-note {
  padding: 22px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(248, 247, 242, 0.78);
  line-height: 1.65;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 32px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #0a0a09;
}

.site-footer img {
  width: 136px;
  margin-bottom: 8px;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

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

.floating-whatsapp {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  color: #07110c;
  background: #75d98f;
  font-weight: 950;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.floating-whatsapp.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

@media (max-height: 760px) and (min-width: 981px) {
  .hero-proof {
    display: none;
  }

  .hero h1 {
    font-size: clamp(3rem, 5vw, 4.55rem);
  }

  .hero-lead {
    max-width: 560px;
  }
}

.admin-body {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(7, 7, 7, 0.86), rgba(7, 7, 7, 1)),
    url("assets/doc-media/image5.jpeg") center / cover fixed;
}

.admin-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 42px 0 80px;
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.admin-top img {
  width: 150px;
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: 18px;
}

.admin-login {
  min-height: 70vh;
  display: grid;
  place-items: center;
}

.login-panel {
  width: min(440px, 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 15, 13, 0.92);
  padding: 26px;
  box-shadow: var(--shadow);
}

.login-panel form {
  display: grid;
  gap: 14px;
}

.admin-content[hidden],
.admin-login[hidden] {
  display: none;
}

.admin-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(15, 15, 13, 0.88);
  padding: 22px;
  box-shadow: var(--shadow);
}

.admin-panel h1,
.admin-panel h2 {
  margin: 0 0 16px;
}

.admin-panel h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.admin-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.lead-list,
.blog-admin-list {
  display: grid;
  gap: 12px;
}

.lead-item,
.blog-admin-item {
  display: grid;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
}

.lead-item strong,
.blog-admin-item strong {
  color: var(--gold-2);
}

.lead-meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.lead-row {
  display: grid;
  grid-template-columns: minmax(180px, 0.72fr) minmax(280px, 1fr) auto;
  gap: 14px;
  align-items: center;
}

.lead-main,
.lead-summary {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.lead-main strong {
  color: var(--gold-2);
  font-size: 1.08rem;
}

.lead-main span,
.lead-summary span,
.lead-summary small {
  color: rgba(248, 247, 242, 0.72);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lead-summary small {
  color: var(--muted);
  font-size: 0.82rem;
}

.lead-toggle {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(227, 201, 130, 0.34);
  border-radius: var(--radius);
  background: rgba(227, 201, 130, 0.08);
  color: var(--gold-2);
  cursor: pointer;
  font-weight: 850;
}

.lead-detail-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.lead-detail-grid[hidden] {
  display: none;
}

.lead-detail {
  min-width: 0;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 7px;
  background: rgba(0, 0, 0, 0.16);
}

.lead-detail span,
.lead-detail strong {
  display: block;
}

.lead-detail span {
  color: rgba(248, 247, 242, 0.52);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-detail strong {
  margin-top: 4px;
  color: rgba(248, 247, 242, 0.88);
  font-size: 0.94rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.lead-detail a {
  color: var(--gold-2);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.mail-form,
.blog-form {
  display: grid;
  gap: 14px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

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

  .main-nav {
    display: none;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner,
  .home-why,
  .bpm-showcase,
  .home-contact-panel,
  .service-split,
  .service-split.reverse,
  .cta-split,
  .split-section,
  .calculator-section,
  .faq-reviews,
  .contact-section,
  .business-band,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  .hero-detail-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  .lead-row {
    grid-template-columns: minmax(180px, 0.8fr) minmax(220px, 1fr) auto;
  }

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

  .hero-detail-card {
    min-height: 0;
  }

  .hero-form {
    max-width: 560px;
  }

  .brand-strip,
  .service-row,
  .process-band,
  .timeline-grid,
  .rich-grid.four,
  .parameter-grid.four,
  .service-grid,
  .process-grid,
  .blog-grid,
  .car-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rich-grid,
  .parameter-grid,
  .segment-grid,
  .contact-route-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bpm-showcase {
    min-height: 0;
  }

  .bpm-showcase-light,
  .bpm-showcase-dark {
    padding: clamp(42px, 7vw, 70px) clamp(18px, 5vw, 48px);
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 10px 14px;
  }

  .brand img {
    width: 118px;
  }

  .nav-cta {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: 92vh;
    padding: 92px 14px 24px;
    align-items: end;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .hero-form,
  .hero-proof {
    display: none;
  }

  .hero-proof,
  .why-grid,
  .service-row,
  .process-band,
  .contact-band-light,
  .timeline-grid,
  .rich-grid,
  .rich-grid.four,
  .parameter-grid,
  .parameter-grid.four,
  .segment-grid,
  .contact-route-grid,
  .brand-strip,
  .service-grid,
  .process-grid,
  .blog-grid,
  .field-grid,
  .car-grid {
    grid-template-columns: 1fr;
  }

  .deep-section,
  .light-inner,
  .service-split,
  .cta-split {
    width: min(100% - 28px, 1180px);
  }

  .service-split,
  .deep-section {
    padding-block: 58px;
  }

  .calculator-section.page-calculator {
    padding-top: 116px;
  }

  .service-media,
  .service-media img {
    min-height: 320px;
  }

  .cta-split {
    margin-bottom: 70px;
  }

  .home-why,
  .home-contact-panel {
    padding-inline: 18px;
  }

  .home-why h2,
  .bpm-showcase h2,
  .home-contact-panel h2 {
    font-size: clamp(2.35rem, 12vw, 3rem);
  }

  .why-card,
  .service-tile,
  .process-band article {
    min-height: 0;
  }

  .showcase-car,
  .showcase-car img {
    min-height: 260px;
  }

  .showcase-car img {
    height: 260px;
  }

  .saving-card {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 12px;
  }

  .page-hero {
    min-height: 70vh;
    padding: 112px 14px 36px;
  }

  .page-hero h1 {
    font-size: clamp(2.45rem, 13vw, 2.85rem);
  }

  .page-hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .page-hero::after {
    display: none;
  }

  .hero-detail-grid {
    margin-top: 22px;
  }

  .lead-row {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .lead-detail-grid {
    grid-template-columns: 1fr;
  }

  .section,
  .blog-section,
  .split-section,
  .calculator-section,
  .faq-reviews,
  .contact-section,
  .admin-shell {
    width: min(100% - 28px, 1180px);
    padding-block: 58px;
  }

  .image-panel,
  .image-panel img {
    min-height: 340px;
  }

  .calculator-actions,
  .hero-actions,
  .result-actions,
  .site-footer,
  .admin-top {
    align-items: stretch;
    flex-direction: column;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .review-slider {
    min-height: 310px;
  }
}
