:root {
  --state-alert-height: 36px;
  --state-header-height: 82px;
  --abe-ink: #10151c;
  --abe-muted: #65717e;
  --abe-orange: #ff5b22;
  --abe-blue: #0d6efd;
  --abe-green: #2f8f46;
  --abe-paper: #f7f4ed;
  --abe-card: #ffffff;
  --abe-line: #ded8cd;
  --abe-dark: #080c12;
  --abe-font: "D-DIN", "DIN 2014", "DIN Alternate", "Bahnschrift", "Arial Narrow", Arial, Helvetica, sans-serif;
  --abe-font-condensed: "D-DIN Condensed", "D-DIN", "DIN Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  --font-display: "D-DIN Condensed", "D-DIN", "DIN Condensed", "Arial Narrow", Arial, Helvetica, sans-serif;
  --brand-mark-width: clamp(270px, 24vw, 400px);
  --brand-mark-height: clamp(54px, 5vw, 66px);
  --brand-mark-title-size: clamp(1.65rem, 2vw, 2.1rem);
  --brand-mark-subtitle-size: clamp(0.72rem, 0.82vw, 0.92rem);
}

@font-face {
  font-family: "D-DIN";
  src: local("D-DIN"), local("D-DIN Regular"), local("DDIN");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "D-DIN";
  src: local("D-DIN Bold"), local("DDIN Bold");
  font-weight: 700 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "D-DIN Condensed";
  src: local("D-DIN Condensed"), local("D-DINCondensed");
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  scroll-padding-top: calc(var(--state-alert-height) + var(--state-header-height) + 18px);
  background: var(--abe-paper);
}

body.state-appliance-page {
  margin: 0;
  padding-top: calc(var(--state-alert-height) + var(--state-header-height));
  background: var(--abe-paper);
  color: var(--abe-ink);
  font-family: var(--abe-font);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

.state-appliance-page a {
  color: inherit;
  text-decoration: none;
}

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

.state-alert {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  background: var(--abe-dark);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.state-alert-inner,
.state-header-inner,
.state-footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 22px;
}

.state-alert-inner {
  min-height: 36px;
}

.state-alert a {
  color: #fff;
}

.state-header {
  position: fixed;
  top: var(--state-alert-height);
  right: 0;
  left: 0;
  z-index: 40;
  background: linear-gradient(180deg, rgba(9, 14, 20, 0.96), rgba(2, 4, 6, 0.92));
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 14px 34px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.state-header-inner {
  min-height: 82px;
}

.state-header .state-brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex: 0 0 var(--brand-mark-width);
  width: var(--brand-mark-width);
  min-width: var(--brand-mark-width);
  min-height: var(--brand-mark-height);
  padding: 0 0 0 16px;
  border: 0;
  border-left: 3px solid var(--abe-orange);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.state-header .state-brand strong,
.state-header .state-brand span {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  clip-path: none;
  white-space: nowrap;
}

.state-header .state-brand strong {
  color: #fff;
  font-family: var(--font-display);
  font-size: var(--brand-mark-title-size);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

.state-header .state-brand span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--brand-mark-subtitle-size);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0;
}

.state-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.state-btn {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.03);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: 0.18s ease;
}

.state-btn.primary {
  background: var(--abe-orange);
  border-color: var(--abe-orange);
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 91, 34, 0.26);
}

.state-btn.dark {
  background: var(--abe-ink);
  border-color: var(--abe-ink);
  color: #fff;
}

.state-btn:hover,
.state-btn:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.state-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.94) 0%, rgba(8, 12, 18, 0.68) 48%, rgba(8, 12, 18, 0.18) 100%),
    var(--state-hero-image) center/cover no-repeat;
  color: #fff;
}

.state-hero-inner {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
  padding: 76px 0;
}

.state-kicker {
  margin-bottom: 14px;
  color: var(--abe-orange);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.state-hero h1,
.state-section-title,
.state-cta h2,
.state-card h3,
.state-priority-copy h2,
.state-guarantee h2 {
  margin: 0;
  font-family: var(--abe-font-condensed);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.state-hero h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 0.88;
}

.state-hero p {
  max-width: 650px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.state-hero-card {
  background: rgba(255, 250, 240, 0.96);
  color: var(--abe-ink);
  border: 1px solid rgba(255, 255, 255, 0.44);
  padding: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.28);
}

.state-hero-card h2 {
  margin: 0 0 12px;
  font-family: var(--abe-font-condensed);
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.state-checklist {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.state-checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  color: var(--abe-muted);
  font-weight: 800;
}

.state-checklist li::before {
  content: "";
  width: 18px;
  height: 2px;
  margin-top: 11px;
  background: var(--abe-orange);
}

.state-guarantee {
  background: #fff;
  border-bottom: 1px solid var(--abe-line);
}

.state-guarantee-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 32px 0;
}

.state-guarantee h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.92;
}

.state-guarantee p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--abe-muted);
  font-weight: 800;
}

.state-section {
  padding: 70px 0;
}

.state-section.compact {
  padding: 52px 0;
}

.state-section-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 440px);
  gap: 44px;
  align-items: end;
  margin-bottom: 32px;
}

.state-section-title {
  max-width: 760px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.state-section-header p {
  margin: 0;
  color: var(--abe-muted);
  font-weight: 800;
}

.state-promise-grid,
.state-service-grid,
.state-article-grid,
.state-brand-grid,
.state-city-grid {
  display: grid;
  gap: 16px;
}

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

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

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

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

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

.state-card,
.state-brand,
.state-city {
  background: var(--abe-card);
  border: 1px solid var(--abe-line);
  padding: 22px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.74) inset;
}

.state-card.accent {
  border-top: 4px solid var(--abe-orange);
}

.state-card h3 {
  font-size: 1.55rem;
  line-height: 0.96;
  margin-bottom: 10px;
}

.state-card p,
.state-card li,
.state-city span,
.state-brand span {
  color: var(--abe-muted);
  font-weight: 760;
}

.state-card ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.state-card li {
  border-top: 1px solid rgba(16, 21, 28, 0.08);
  padding-top: 7px;
}

.state-priority {
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.96), rgba(8, 12, 18, 0.72)),
    url("https://images.unsplash.com/photo-1581092160607-ee22621dd758?auto=format&fit=crop&w=2200&q=90&fm=jpg") center/cover no-repeat;
  color: #fff;
}

.state-priority-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: center;
  padding: 82px 0;
}

.state-priority-visual {
  min-height: 430px;
  display: grid;
  align-content: end;
  padding: 28px;
  background:
    linear-gradient(180deg, transparent, rgba(8, 12, 18, 0.92)),
    url("https://images.unsplash.com/photo-1556911220-bff31c812dba?auto=format&fit=crop&w=1500&q=90&fm=jpg") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.state-priority-visual strong {
  font-family: var(--abe-font-condensed);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.state-priority-copy h2 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.9;
}

.state-priority-copy p,
.state-priority-copy li {
  color: rgba(255, 255, 255, 0.72);
}

.state-review-strip {
  overflow: hidden;
  background: #fff;
  border-block: 1px solid var(--abe-line);
  padding: 28px 0;
}

.state-review-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: stateReviewScroll 38s linear infinite;
}

.state-review-card {
  width: 360px;
  flex: 0 0 360px;
  background: var(--abe-paper);
  border: 1px solid var(--abe-line);
  padding: 20px;
}

.state-stars {
  color: #d7a63a;
  letter-spacing: 0.05em;
}

.state-review-card strong {
  display: block;
  margin: 8px 0 6px;
}

.state-review-card p {
  color: var(--abe-muted);
  font-weight: 760;
}

@keyframes stateReviewScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.state-offer {
  background: var(--abe-orange);
  color: #fff;
  text-align: center;
  padding: 36px 0;
}

.state-offer h2 {
  margin: 0;
  font-family: var(--abe-font-condensed);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.state-offer p {
  margin: 10px auto 0;
  max-width: 720px;
  font-weight: 900;
}

.state-brand,
.state-city {
  min-height: 86px;
}

.state-brand strong,
.state-city strong {
  display: block;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.state-cta {
  background:
    linear-gradient(90deg, rgba(8, 12, 18, 0.98), rgba(8, 12, 18, 0.68)),
    url("https://images.unsplash.com/photo-1581092334651-ddf26d9a09d0?auto=format&fit=crop&w=2200&q=90&fm=jpg") center/cover no-repeat;
  color: #fff;
}

.state-cta-inner {
  min-height: 360px;
  display: grid;
  align-content: center;
  padding: 72px 0;
}

.state-cta h2 {
  max-width: 760px;
  font-size: clamp(3rem, 6vw, 6rem);
  line-height: 0.86;
}

.state-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.state-footer {
  background: var(--abe-dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 40px 0;
}

.state-footer a {
  color: #fff;
}

@media (max-width: 980px) {
  :root {
    --brand-mark-width: min(100%, 320px);
    --brand-mark-height: 44px;
    --brand-mark-title-size: clamp(1.5rem, 5.2vw, 2rem);
    --brand-mark-subtitle-size: clamp(0.66rem, 2.1vw, 0.82rem);
  }

  .state-header-inner,
  .state-alert-inner,
  .state-guarantee-inner,
  .state-section-header,
  .state-priority-inner {
    grid-template-columns: 1fr;
  }

  .state-header-inner,
  .state-alert-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 12px 0;
  }

  .state-alert-inner {
    min-height: var(--state-alert-height);
    justify-content: center;
    align-items: center;
    flex-direction: row;
    padding: 0;
  }

  .state-alert-inner > div:first-child {
    display: none;
  }

  .state-alert-inner > div:last-child {
    max-width: 100%;
    overflow: hidden;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .state-nav {
    flex-wrap: wrap;
  }

  .state-hero-inner,
  .state-promise-grid,
  .state-service-grid,
  .state-article-grid,
  .state-brand-grid,
  .state-city-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .state-container {
    width: min(100% - 28px, 1180px);
  }

  .state-nav,
  .state-actions {
    display: none;
  }

  .state-hero-inner,
  .state-promise-grid,
  .state-service-grid,
  .state-article-grid,
  .state-brand-grid,
  .state-city-grid {
    grid-template-columns: 1fr;
  }

  .state-hero-inner {
    min-height: auto;
    padding: 54px 0;
  }

  .state-hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  .state-section {
    padding: 54px 0;
  }

  .state-priority-inner,
  .state-cta-inner {
    padding: 54px 0;
  }
}

@media (max-width: 380px) {
  :root {
    --brand-mark-title-size: 1.45rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .state-review-track {
    animation: none;
  }
}
