:root {
  --ink: #111827;
  --muted: #637184;
  --paper: #ffffff;
  --soft: #f4f7fb;
  --line: #dce5ee;
  --navy: #071428;
  --steel: #26384f;
  --blue: #0d5a9c;
  --ice: #dceff9;
  --gold: #f3ad2f;
  --green: #14735b;
  --red: #c94435;
  --shadow-sm: 0 12px 28px rgba(15, 23, 42, 0.08);
  --shadow-md: 0 24px 64px rgba(15, 23, 42, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: linear-gradient(180deg, #ffffff 0, #f7f9fc 100%);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(13, 90, 156, 0.28);
  outline-offset: 3px;
}

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

h1,
h2,
h3,
p,
dl,
dd,
ul {
  margin: 0;
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 14px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  min-height: 66px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 2.4vw, 28px);
  padding: 10px 12px 10px 18px;
  color: #fff;
  background: rgba(7, 20, 40, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  box-shadow: 0 18px 50px rgba(7, 20, 40, 0.28);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-grid;
  gap: 3px;
  justify-items: start;
  color: #fff;
  text-decoration: none;
}

.brand img {
  width: clamp(136px, 12vw, 172px);
  height: auto;
}

.brand strong {
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 4px;
  padding: 5px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 6px;
  transition: background 0.18s ease, color 0.18s ease;
}

.site-nav a:hover {
  background: rgba(255, 255, 255, 0.11);
}

.site-nav a,
.header-call {
  text-decoration: none;
}

.site-nav a:hover,
.header-call:hover,
.site-footer a:hover {
  color: var(--gold);
}

.header-call {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid rgba(243, 173, 47, 0.74);
  border-radius: var(--radius);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(0deg, rgba(244, 247, 251, 1), rgba(244, 247, 251, 0));
  pointer-events: none;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 40, 0.97), rgba(7, 20, 40, 0.78) 45%, rgba(7, 20, 40, 0.2)),
    linear-gradient(0deg, rgba(7, 20, 40, 0.66), rgba(7, 20, 40, 0.04) 46%),
    url("./assets/sub-zero-classic.jpg") center / cover no-repeat;
  transform: scale(1.01);
}

.hero__inner {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  gap: 42px;
  margin: 0 auto;
  padding: 146px 0 86px;
}

.hero__copy {
  display: grid;
  align-content: end;
  gap: 24px;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  max-width: 900px;
  font-size: clamp(46px, 6.2vw, 82px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero__lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.58;
}

.hero__actions,
.hero__proof,
.request-form,
.section-cta,
.final-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  line-height: 1.2;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button--primary {
  color: #171100;
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(243, 173, 47, 0.26);
}

.button--primary:hover {
  background: #ffc85d;
  border-color: #ffc85d;
}

.button--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.button--ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.2);
}

.button--dark {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 14px 30px rgba(7, 20, 40, 0.18);
}

.hero__micro {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.5;
}

.diagnostic-card {
  align-self: end;
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.diagnostic-card__tag {
  width: fit-content;
  padding: 7px 10px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--red);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.diagnostic-card strong {
  font-size: 28px;
  line-height: 1.12;
}

.diagnostic-card ul,
.section--split ul {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.diagnostic-card li {
  color: rgba(255, 255, 255, 0.83);
  line-height: 1.45;
}

.diagnostic-card li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.hero__proof {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.hero__proof div {
  flex: 1 1 240px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero__proof dt {
  margin-bottom: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__proof dd {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.45;
}

.request-panel,
.section,
.final-cta,
.site-footer {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
}

.request-panel {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(0, 1.38fr);
  gap: 34px;
  align-items: start;
  padding: 30px;
  margin-top: -50px;
  border: 1px solid rgba(220, 229, 238, 0.9);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.request-panel h2,
.section h2,
.final-cta h2 {
  margin-top: 8px;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

.request-panel p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.request-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  justify-content: stretch;
}

.request-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.request-form span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.request-form input,
.request-form select,
.request-form textarea {
  width: 100%;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--soft);
  font: inherit;
}

.request-form input,
.request-form select {
  height: 54px;
}

.request-form textarea {
  min-height: 96px;
  padding-top: 13px;
  padding-bottom: 13px;
  line-height: 1.45;
  resize: vertical;
}

.request-form__wide {
  grid-column: 1 / -1;
}

.request-form button {
  grid-column: 1 / -1;
  align-self: end;
  width: 100%;
}

.request-form select {
  appearance: none;
  padding-right: 38px;
  background:
    linear-gradient(45deg, transparent 50%, var(--muted) 50%),
    linear-gradient(135deg, var(--muted) 50%, transparent 50%),
    var(--soft);
  background-position: calc(100% - 20px) 24px, calc(100% - 14px) 24px, 0 0;
  background-size: 6px 6px, 6px 6px, 100%;
  background-repeat: no-repeat;
}

.request-form input:focus,
.request-form select:focus,
.request-form textarea:focus {
  outline: 3px solid rgba(13, 90, 156, 0.18);
  border-color: var(--blue);
  background: #fff;
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  text-align: right;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(13, 90, 156, 0.18);
  border-radius: var(--radius);
  color: var(--navy);
  background: rgba(220, 239, 249, 0.68);
  font-size: 14px;
  font-weight: 800;
}

.form-status--error {
  border-color: rgba(220, 38, 38, 0.24);
  color: #8b1e1e;
  background: rgba(255, 235, 235, 0.86);
}

.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.section {
  padding: 86px 0;
}

.section__head {
  max-width: 850px;
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}

.section__head p:not(.eyebrow),
.seo-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  padding-top: 42px;
  padding-bottom: 56px;
}

.trust-strip div,
.process-grid div,
.reputation-grid div {
  display: grid;
  gap: 10px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.trust-strip div,
.process-grid div,
.service-card {
  min-height: 100%;
}

.trust-strip strong,
.process-grid strong,
.service-card strong {
  color: var(--navy);
  font-size: 20px;
  line-height: 1.2;
}

.trust-strip span,
.process-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.reputation-block {
  padding-top: 44px;
  padding-bottom: 58px;
}

.reputation-block .section__head {
  max-width: 760px;
}

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

.reputation-card {
  position: relative;
  min-height: 214px;
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(220, 229, 238, 0.92);
  border-radius: var(--radius);
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(220, 239, 249, 0.72)),
    #fff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.reputation-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: rgba(243, 173, 47, 0.18);
}

.reputation-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 90, 156, 0.28);
  box-shadow: var(--shadow-md);
}

.reputation-card__platform {
  width: fit-content;
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--blue);
  background: rgba(13, 90, 156, 0.08);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.reputation-card__stars {
  color: var(--gold);
  font-size: 22px;
  letter-spacing: 2px;
  line-height: 1;
}

.reputation-card strong {
  font-size: clamp(44px, 5vw, 68px);
  line-height: 0.95;
  letter-spacing: 0;
}

.reputation-card em {
  color: var(--muted);
  font-size: 15px;
  font-style: normal;
  font-weight: 800;
}

.reputation-card small {
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.company-block {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 36px;
  padding: 42px;
  border: 1px solid rgba(220, 229, 238, 0.95);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 251, 0.94)),
    #fff;
  box-shadow: var(--shadow-md);
}

.company-block.section {
  padding-top: 42px;
  padding-bottom: 42px;
}

.company-block__media {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: 230px 230px;
  gap: 14px;
}

.company-photo {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--soft);
  box-shadow: var(--shadow-sm);
}

.company-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 20, 40, 0), rgba(7, 20, 40, 0.18));
  pointer-events: none;
}

.company-photo--wide {
  grid-row: 1 / span 2;
}

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

.company-block__copy {
  display: grid;
  gap: 15px;
}

.company-block__copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

.company-block__points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 4px;
}

.company-block__points span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--steel);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

.company-block__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding-top: 8px;
}

.company-block__stats div {
  padding: 18px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--navy);
}

.company-block__stats dt {
  margin-bottom: 5px;
  color: var(--gold);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.company-block__stats dd {
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 700;
}

.section--services {
  padding-top: 54px;
}

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

.service-card {
  display: grid;
  grid-template-rows: 260px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

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

.service-card p {
  color: var(--muted);
  line-height: 1.58;
}

.section-cta {
  margin-top: 28px;
}

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

.process-grid div {
  align-content: start;
}

.process-grid span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--navy);
  background: var(--gold);
  font-weight: 800;
}

.section--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: 34px;
  align-items: center;
  padding: 38px;
  border: 1px solid rgba(220, 229, 238, 0.95);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(220, 239, 249, 0.92), rgba(255, 255, 255, 0.96)),
    #fff;
  box-shadow: var(--shadow-md);
}

.section--split p:not(.eyebrow) {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.section--split li {
  position: relative;
  padding: 15px 16px 15px 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--muted);
  line-height: 1.5;
}

.section--split li::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 17px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}

.seo-resource-block {
  padding-top: 34px;
  padding-bottom: 66px;
}

.seo-resource-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.6fr);
  gap: 20px;
  align-items: start;
  padding: 26px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(236, 246, 252, 0.88)),
    #fff;
  box-shadow: var(--shadow-sm);
}

.seo-resource-intro {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 14px;
}

.seo-resource-intro h2 {
  max-width: 460px;
}

.seo-resource-intro p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

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

.seo-resource-grid div {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.seo-resource-grid strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  color: var(--navy);
  font-size: 18px;
}

.seo-resource-grid strong::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.seo-resource-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: var(--steel);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.seo-resource-grid a::after {
  content: "›";
  color: var(--blue);
  font-size: 18px;
}

.seo-resource-grid a:hover {
  color: var(--blue);
}

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

.area-grid a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--steel);
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.area-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 90, 156, 0.32);
  box-shadow: var(--shadow-sm);
}

.section--seo {
  width: 100%;
  padding-left: max(18px, calc((100vw - 1220px) / 2));
  padding-right: max(18px, calc((100vw - 1220px) / 2));
  background: #eef4f9;
}

.seo-copy {
  max-width: 970px;
  display: grid;
  gap: 14px;
}

.seo-disclaimer {
  max-width: 860px;
  font-size: 15px !important;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

summary {
  padding: 19px 21px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  padding: 0 21px 21px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 72px;
  padding: 36px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 20, 40, 0.95), rgba(38, 56, 79, 0.84)),
    url("./assets/sub-zero-designer.webp") center / cover no-repeat;
  box-shadow: var(--shadow-md);
}

.final-cta .eyebrow {
  color: var(--gold);
}

.final-cta p:not(.eyebrow) {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.55;
}

.site-footer {
  display: grid;
  gap: 24px;
  padding: 42px 0 26px;
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.25fr) minmax(160px, 0.7fr) minmax(220px, 0.95fr) minmax(210px, 0.8fr);
  gap: 30px;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 8px;
  max-width: 430px;
}

.footer-brand img {
  width: 220px;
  max-width: 100%;
  height: auto;
  margin-bottom: 4px;
}

.footer-links,
.footer-contact,
.footer-action {
  display: grid;
  gap: 9px;
}

.footer-links strong,
.footer-contact strong,
.footer-action strong,
.footer-brand strong {
  color: var(--navy);
}

.footer-links a,
.footer-contact a {
  color: var(--steel);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--blue);
}

.footer-action {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.footer-action p {
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer-bottom span {
  font-size: 14px;
}

.site-footer p,
.site-footer address,
.site-footer span {
  color: var(--muted);
  font-style: normal;
  line-height: 1.7;
}

.mobile-cta {
  display: none;
}

.breadcrumb {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding-top: 110px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}

.city-hero {
  min-height: auto;
  align-items: start;
}

.city-hero .hero__inner {
  grid-template-columns: minmax(0, 1fr);
  padding-top: 64px;
  padding-bottom: 72px;
}

.city-hero h1 {
  max-width: 980px;
}

.city-hero .hero__copy {
  max-width: 980px;
}

.city-proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.city-proof div {
  position: relative;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.07)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.city-proof div::after {
  content: "";
  position: absolute;
  right: -26px;
  top: -26px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(243, 173, 47, 0.16);
}

.city-proof__icon {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: var(--navy) !important;
  background: var(--gold);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.city-proof__icon--urgent {
  color: #fff !important;
  background: var(--red);
}

.city-proof strong {
  display: block;
  color: #fff;
  font-size: 16px;
  line-height: 1.15;
}

.city-proof span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.35;
}

.city-page .request-panel {
  margin-top: -34px;
}

.city-review-strip {
  width: min(1220px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px auto 0;
}

.city-review-strip a {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 18px 20px;
  border: 1px solid rgba(220, 229, 238, 0.95);
  border-radius: var(--radius);
  color: var(--navy);
  background: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
}

.city-review-strip span {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 1px;
  line-height: 1;
}

.city-review-strip strong {
  font-size: 16px;
}

.city-content {
  width: min(1220px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 28px;
  margin: 0 auto;
  padding: 72px 0;
}

.city-main,
.city-sidebar {
  display: grid;
  gap: 18px;
}

.city-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.city-card h2,
.city-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  line-height: 1.12;
}

.city-card p,
.city-card li {
  color: var(--muted);
  line-height: 1.68;
}

.city-card ul {
  display: grid;
  gap: 9px;
  padding-left: 19px;
}

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

.city-service-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.city-service-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}

.city-service-grid p {
  font-size: 15px;
}

.related-pages-card {
  position: relative;
  overflow: hidden;
  border-color: rgba(13, 90, 156, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(236, 246, 252, 0.92)),
    #fff;
}

.related-pages-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
}

.related-pages-card h2,
.related-pages-card h3 {
  position: relative;
  padding-top: 3px;
}

.related-pages-card > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.city-service-grid--links div {
  display: grid;
  align-content: start;
  gap: 0;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
}

.city-service-grid--links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 44px;
  padding: 10px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
  color: var(--steel);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.city-service-grid--links a::after {
  content: "›";
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: rgba(13, 90, 156, 0.08);
  font-size: 18px;
  line-height: 1;
}

.city-service-grid--links a:hover {
  color: var(--blue);
}

.city-local-card {
  border-color: rgba(13, 90, 156, 0.18);
  background:
    linear-gradient(135deg, rgba(220, 239, 249, 0.72), rgba(255, 255, 255, 0.98)),
    #fff;
}

.city-sidebar .city-card {
  background:
    linear-gradient(135deg, rgba(220, 239, 249, 0.86), rgba(255, 255, 255, 0.96)),
    #fff;
}

.city-nearby {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 9px;
}

.city-nearby a {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: var(--radius);
  color: var(--steel);
  background: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.city-nearby a::after {
  content: "›";
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 18px;
  line-height: 1;
}

.city-nearby a:hover {
  transform: translateY(-1px);
  border-color: rgba(13, 90, 156, 0.34);
  color: var(--blue);
  box-shadow: var(--shadow-sm);
}

.city-faq details + details {
  margin-top: 10px;
}

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

.promise-strip > div,
.decision-grid > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.promise-strip strong,
.decision-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 17px;
}

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

.cta-band {
  width: min(1220px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 0 auto 88px;
  padding: 28px;
  border: 1px solid rgba(13, 90, 156, 0.18);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(220, 239, 249, 0.82), rgba(255, 255, 255, 0.98)),
    #fff;
  box-shadow: var(--shadow-sm);
}

.cta-band h2 {
  margin: 8px 0 10px;
  color: var(--navy);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
}

.cta-band p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.7;
}

.cta-band__actions {
  display: grid;
  gap: 10px;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(7, 20, 40, 0.96), rgba(38, 56, 79, 0.9)),
    url("./assets/sub-zero-classic.jpg") center / cover no-repeat;
}

.thanks {
  width: min(760px, 100%);
  display: grid;
  gap: 22px;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(18px);
}

.thanks h1 {
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.04;
}

.thanks p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.65;
}

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

  .site-nav {
    display: none;
  }

  .header-call {
    font-size: 14px;
  }

  .hero__inner,
  .request-panel,
  .section--split,
  .final-cta,
  .site-footer,
  .city-content {
    grid-template-columns: 1fr;
  }

  .city-proof {
    grid-template-columns: 1fr;
  }

  .city-review-strip,
  .city-service-grid,
  .promise-strip,
  .decision-grid,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .seo-resource-layout {
    grid-template-columns: 1fr;
  }

  .seo-resource-intro {
    position: static;
  }

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

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

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

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

@media (max-width: 700px) {
  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    min-height: 62px;
    padding: 9px 12px;
  }

  .brand img {
    width: 134px;
  }

  .brand strong {
    font-size: 9px;
  }

  .header-call {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    background:
      linear-gradient(180deg, rgba(7, 20, 40, 0.92), rgba(7, 20, 40, 0.78)),
      url("./assets/sub-zero-classic.jpg") center top / cover no-repeat;
  }

  .hero__inner {
    gap: 22px;
    padding-top: 112px;
    padding-bottom: 46px;
  }

  h1 {
    font-size: clamp(38px, 11vw, 54px);
    line-height: 1.02;
  }

  .button,
  .hero__proof div {
    width: 100%;
  }

  .hero__lead {
    font-size: 17px;
  }

  .request-panel {
    width: 100%;
    margin-top: 0;
    padding: 24px 18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .request-form {
    grid-template-columns: 1fr;
  }

  .request-form input,
  .request-form select,
  .request-form textarea {
    font-size: 16px;
  }

  .form-note {
    text-align: left;
  }

  .section {
    padding: 62px 0;
  }

  .trust-strip,
  .process-grid,
  .reputation-grid,
  .area-grid,
  .seo-resource-grid,
  .company-block {
    grid-template-columns: 1fr;
  }

  .company-block__media {
    grid-template-rows: 220px 220px;
  }

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

  .section--split {
    width: calc(100% - 36px);
    padding: 26px;
  }

  .service-card {
    grid-template-rows: 230px 1fr;
  }

  .service-card img {
    height: 230px;
  }

  .final-cta {
    width: calc(100% - 36px);
    margin-bottom: 84px;
    padding: 26px;
  }

  .site-footer {
    align-items: start;
    padding-bottom: 96px;
  }

  .mobile-cta {
    position: fixed;
    z-index: 40;
    left: 0;
    right: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 10px;
    padding: 10px;
    background: rgba(7, 20, 40, 0.94);
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 -16px 34px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(14px);
  }

  .mobile-cta a {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
  }

  .mobile-cta a:first-child {
    color: var(--navy);
    background: var(--gold);
  }

  .mobile-cta a:last-child {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
  }

  .city-card,
  .cta-band {
    padding: 22px;
  }

  .city-nearby {
    grid-template-columns: 1fr;
  }

  .city-service-grid--links a,
  .city-nearby a {
    min-height: 52px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .site-header {
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand strong {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero__inner,
  .request-panel,
  .section,
  .final-cta,
  .site-footer,
  .city-content,
  .breadcrumb,
  .city-review-strip {
    width: calc(100% - 28px);
  }

  .footer-main,
  .footer-bottom,
  .seo-resource-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .request-panel {
    width: 100%;
  }

  .hero__inner {
    padding-top: 104px;
  }

  h1 {
    font-size: 36px;
  }

  .request-panel h2,
  .section h2,
  .final-cta h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .diagnostic-card,
  .section--split,
  .final-cta {
    padding: 22px;
  }

  .company-block__media {
    grid-template-columns: 1fr;
    grid-template-rows: 240px 190px 190px;
  }

  .company-photo--wide {
    grid-row: auto;
  }

  .company-block__stats {
    grid-template-columns: 1fr;
  }

  .diagnostic-card strong {
    font-size: 24px;
  }

  .mobile-cta {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

/* SZ6 SIX-PAGE CLUSTER 2026-08-13 START */
.sz6-hero,
.sz6 {
  --sz6-hero-image: url("img/sub-zero-classic.jpg");
  --sz6-ink: #10243a;
  --sz6-muted: #58697a;
  --sz6-navy: #071a30;
  --sz6-navy-2: #0e2b4a;
  --sz6-accent: #f3ad2f;
  --sz6-accent-text: #8a5000;
  --sz6-accent-soft: #fff3d8;
  --sz6-tint: #f3f7fa;
  --sz6-line: #dce4eb;
  --sz6-white: #fff;
  --sz6-green: #14735b;
  --sz6-shadow: 0 16px 42px rgba(7, 26, 48, .11);
  --sz6-radius: 14px;
  --sz6-width: 1180px;
  color: var(--sz6-ink);
  font-family: Manrope, Arial, sans-serif;
}

.sz6-hero *,
.sz6 * { box-sizing: border-box; }

.sz6-hero a:focus-visible,
.sz6 a:focus-visible,
.sz6 summary:focus-visible {
  outline: 3px solid rgba(13, 90, 156, .38);
  outline-offset: 4px;
}

.sz6-hero {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--sz6-navy);
}

.sz6-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 20, 40, .98), rgba(7, 20, 40, .84) 48%, rgba(7, 20, 40, .30)),
    linear-gradient(0deg, rgba(7, 20, 40, .72), transparent 60%),
    var(--sz6-hero-image) center / cover no-repeat;
}

.sz6-hero__inner {
  width: min(var(--sz6-width), calc(100% - 48px));
  margin: 0 auto;
  padding: 148px 0 72px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
  gap: 54px;
  align-items: end;
}

.sz6-hero__copy { max-width: 760px; }

.sz6-eyebrow {
  margin: 0 0 12px;
  color: var(--sz6-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.sz6 .sz6-eyebrow { color: var(--sz6-accent-text); }

.sz6-hero h1 {
  max-width: 780px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.01;
  letter-spacing: -.045em;
}

.sz6-hero__lead {
  max-width: 720px;
  margin: 0 0 26px;
  color: #e4ebf2;
  font-size: clamp(18px, 1.7vw, 21px);
  line-height: 1.6;
}

.sz6-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.sz6-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
}

.sz6-button--primary { color: #171100; background: var(--sz6-accent); }
.sz6-button--ghost { color: #fff; border-color: rgba(255, 255, 255, .58); background: rgba(255, 255, 255, .09); }

.sz6-hero__note {
  max-width: 650px;
  margin: 18px 0 0;
  color: #d3dde6;
  font-size: 14px;
  line-height: 1.55;
}

.sz6-hero__card {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .19);
  border-radius: var(--sz6-radius);
  background: rgba(7, 26, 48, .80);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .25);
  backdrop-filter: blur(14px);
}

.sz6-hero__card > span {
  display: inline-flex;
  margin-bottom: 13px;
  color: var(--sz6-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.sz6-hero__card h2 { margin: 0 0 14px; color: #fff; font-size: 24px; line-height: 1.2; }
.sz6-hero__card ul { list-style: none; margin: 0; padding: 0; }
.sz6-hero__card li { position: relative; padding: 12px 0 12px 21px; border-top: 1px solid rgba(255,255,255,.14); color: #e5edf4; line-height: 1.45; }
.sz6-hero__card li::before { content: ""; position: absolute; left: 0; top: 21px; width: 7px; height: 7px; border-radius: 50%; background: var(--sz6-accent); }

.sz6-hero__proof {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 8px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  background: rgba(255,255,255,.15);
}

.sz6-hero__proof div { padding: 17px 20px; background: rgba(7,26,48,.88); }
.sz6-hero__proof dt { margin: 0 0 3px; color: #fff; font-size: 14px; font-weight: 800; }
.sz6-hero__proof dd { margin: 0; color: #cad5df; font-size: 13px; line-height: 1.45; }

.sz6 {
  width: min(var(--sz6-width), calc(100% - 48px));
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.65;
}

.sz6 h2,
.sz6 h3,
.sz6 p,
.sz6 ul,
.sz6 ol,
.sz6 figure { margin-top: 0; }

.sz6 h2 { color: var(--sz6-ink); font-size: clamp(28px, 3.1vw, 42px); line-height: 1.13; letter-spacing: -.035em; }
.sz6 h3 { color: var(--sz6-ink); line-height: 1.3; }
.sz6 p { color: var(--sz6-muted); }

.sz6-section { padding: 56px 48px; }
.sz6-section + .sz6-section { border-top: 1px solid var(--sz6-line); }
.sz6-section--tint { margin: 10px 0; border: 0 !important; border-radius: var(--sz6-radius); background: var(--sz6-tint); }
.sz6-section--dark { margin: 10px 0; border: 0 !important; border-radius: var(--sz6-radius); color: #fff; background: var(--sz6-navy); }
.wp-content-section .entry-content .sz6 .sz6-section--dark h2,
.wp-content-section .entry-content .sz6 .sz6-section--dark h3 { color: #fff; }
.sz6-section--dark p { color: #ccd7e1; }

.sz6-head { max-width: 820px; margin: 0 auto 30px; text-align: center; }
.sz6-head h2 { margin-bottom: 13px; }
.sz6-head p:last-child { max-width: 760px; margin-right: auto; margin-bottom: 0; margin-left: auto; font-size: 17px; }

.sz6-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .75fr);
  gap: 50px;
  align-items: center;
}

.sz6-intro h2 { margin-bottom: 16px; }
.sz6-intro p:last-child { margin-bottom: 0; }

.sz6-callout {
  padding: 26px;
  border-left: 4px solid var(--sz6-accent);
  border-radius: 0 12px 12px 0;
  background: var(--sz6-tint);
}
.sz6-callout strong { display: block; margin-bottom: 8px; color: var(--sz6-ink); font-size: 18px; }
.sz6-callout p { margin-bottom: 0; }

.sz6-route-grid,
.sz6-decision-grid,
.sz6-issue-grid,
.sz6-related-grid { display: grid; gap: 16px; }
.sz6-route-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sz6-decision-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.sz6-issue-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sz6-related-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.sz6-route,
.sz6-decision,
.sz6-issue,
.sz6-related {
  min-width: 0;
  padding: 24px;
  border: 1px solid var(--sz6-line);
  border-radius: 12px;
  background: #fff;
}

a.sz6-route,
a.sz6-related { display: block; color: inherit; text-decoration: none; }
a.sz6-route:hover,
a.sz6-related:hover { border-color: #c8953d; box-shadow: var(--sz6-shadow); transform: translateY(-2px); }

.sz6-route { border-top: 3px solid var(--sz6-accent); transition: .18s ease; }
.sz6-route small,
.sz6-decision small,
.sz6-issue small { display: block; margin-bottom: 11px; color: var(--sz6-accent-text); font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.sz6-route h3, .sz6-decision h3, .sz6-issue h3, .sz6-related h3 { margin-bottom: 8px; font-size: 19px; }
.sz6-route p, .sz6-decision p, .sz6-issue p, .sz6-related p { margin-bottom: 0; }
.sz6-route__link, .sz6-related__link { display: inline-flex; margin-top: 16px; color: var(--sz6-ink); font-size: 14px; font-weight: 800; }

.sz6-signal-list { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); column-gap: 44px; margin: 0; padding: 0; list-style: none; }
.sz6-signal-list li { position: relative; padding: 17px 0 17px 21px; border-bottom: 1px solid var(--sz6-line); color: var(--sz6-muted); }
.sz6-signal-list li::before { content: ""; position: absolute; left: 0; top: 27px; width: 7px; height: 7px; border-radius: 50%; background: var(--sz6-accent); }
.sz6-signal-list strong { display: block; margin-bottom: 3px; color: var(--sz6-ink); }

.sz6-split { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: 46px; align-items: start; }
.sz6-split h2 { margin-bottom: 15px; }

.sz6-checklist { margin: 0; padding: 0; list-style: none; }
.sz6-checklist li { display: grid; grid-template-columns: minmax(150px, .72fr) minmax(0, 1.28fr); gap: 18px; padding: 15px 0; border-top: 1px solid var(--sz6-line); }
.sz6-section--dark .sz6-checklist li { border-color: rgba(255,255,255,.16); }
.sz6-checklist li:first-child { border-top: 0; padding-top: 0; }
.sz6-checklist strong { color: var(--sz6-ink); }
.sz6-checklist span { color: var(--sz6-muted); }
.sz6-section--dark .sz6-checklist strong { color: #fff; }
.sz6-section--dark .sz6-checklist span { color: #ccd7e1; }

.sz6-meter { display: grid; gap: 12px; }
.sz6-meter__row { display: grid; grid-template-columns: minmax(145px,.65fr) minmax(0,1.35fr); gap: 16px; align-items: start; padding: 16px 18px; border: 1px solid var(--sz6-line); border-radius: 10px; background: #fff; }
.sz6-meter__row strong { color: var(--sz6-ink); }
.sz6-meter__row span { color: var(--sz6-muted); }

.sz6-compare { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 18px; }
.sz6-compare article { padding: 27px; border: 1px solid var(--sz6-line); border-radius: 12px; background: #fff; }
.sz6-compare article:first-child { box-shadow: inset 0 3px 0 var(--sz6-green); }
.sz6-compare article:last-child { box-shadow: inset 0 3px 0 var(--sz6-accent); }
.sz6-compare h3 { margin-bottom: 10px; font-size: 21px; }
.sz6-compare ul { margin-bottom: 0; padding-left: 20px; color: var(--sz6-muted); }
.sz6-compare li + li { margin-top: 8px; }

.sz6-step-list { max-width: 900px; margin: 0 auto; padding: 0; list-style: none; counter-reset: step; }
.sz6-step-list li { counter-increment: step; display: grid; grid-template-columns: 46px 1fr; gap: 17px; padding: 18px 0; border-top: 1px solid var(--sz6-line); }
.sz6-step-list li:first-child { border-top: 0; }
.sz6-step-list li::before { content: counter(step); display: grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; color: #744400; background: var(--sz6-accent-soft); font-weight: 800; }
.sz6-step-list strong { display: block; margin-bottom: 4px; color: var(--sz6-ink); }
.sz6-step-list span { color: var(--sz6-muted); }

.sz6-local { display: grid; grid-template-columns: minmax(0,1fr) minmax(280px,.7fr); gap: 44px; align-items: start; }
.sz6-local h2 { margin-bottom: 14px; }
.sz6-address { padding: 24px; border-radius: 12px; color: #fff; background: var(--sz6-navy); }
.sz6-address strong { display: block; margin-bottom: 8px; color: #fff; font-size: 18px; }
.sz6-address p { margin-bottom: 0; color: #cfdae4; }
.sz6-address a { min-height: 44px; display: inline-flex; align-items: center; color: #fff; font-weight: 800; }

.sz6-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.sz6-review-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sz6-review {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 28px 28px 24px;
  border: 1px solid var(--sz6-line);
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 3px 0 var(--sz6-accent);
}
.sz6-review-grid .sz6-review { max-width: none; }
.sz6-review::before {
  content: "“";
  display: block;
  height: 30px;
  color: var(--sz6-accent-text);
  font-family: Georgia, serif;
  font-size: 48px;
  line-height: .8;
}
.sz6-review p { margin: 8px 0 20px; color: var(--sz6-ink); font-size: 18px; line-height: 1.55; }
.sz6-review footer { display: flex; flex-wrap: wrap; gap: 5px 10px; align-items: baseline; }
.sz6-review cite { color: var(--sz6-ink); font-style: normal; font-weight: 800; }
.sz6-review footer span { color: var(--sz6-muted); font-size: 13px; }
.sz6-review-source { margin: 18px 0 0; text-align: center; }
.sz6-review-source a { min-height: 44px; display: inline-flex; align-items: center; color: var(--sz6-ink); font-weight: 800; }

.sz6-faq { max-width: 900px; margin: 0 auto; border-top: 1px solid var(--sz6-line); }
.sz6-faq details { border-bottom: 1px solid var(--sz6-line); }
.sz6-faq summary { position: relative; min-height: 52px; padding: 18px 44px 18px 0; cursor: pointer; list-style: none; color: var(--sz6-ink); font-weight: 800; }
.sz6-faq summary::-webkit-details-marker { display: none; }
.sz6-faq summary::after { content: "+"; position: absolute; top: 14px; right: 8px; color: var(--sz6-accent-text); font-size: 24px; }
.sz6-faq details[open] summary::after { content: "−"; }
.sz6-faq details p { margin: 0; padding: 0 44px 19px 0; }

.sz6-cluster-nav { display: flex; flex-wrap: wrap; gap: 10px; margin: 20px 0 0; }
.sz6-cluster-nav a { min-height: 44px; display: inline-flex; align-items: center; padding: 8px 13px; border: 1px solid var(--sz6-line); border-radius: 999px; color: var(--sz6-ink); background: #fff; font-size: 14px; font-weight: 750; text-decoration: none; }

.sz6-disclosure { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start; margin-top: 24px; padding: 16px 18px; border: 1px solid #d2dce5; border-radius: 10px; background: #fff; }
.sz6-disclosure::before { content: "i"; display: grid; place-items: center; width: 24px; height: 24px; border-radius: 50%; color: #fff; background: var(--sz6-navy-2); font-size: 13px; font-weight: 800; }
.sz6-disclosure p { margin: 0; font-size: 14px; }

@media (max-width: 960px) {
  .sz6-hero__inner { grid-template-columns: 1fr; gap: 28px; }
  .sz6-hero__card { max-width: 720px; }
  .sz6-intro, .sz6-split, .sz6-local { grid-template-columns: 1fr; }
  .sz6-decision-grid, .sz6-related-grid, .sz6-review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .sz6-hero { min-height: auto; }
  .sz6-hero__media { background-position: 62% center; }
  .sz6-hero__inner { width: min(100% - 28px, var(--sz6-width)); padding: 116px 0 38px; }
  .sz6-hero h1 { font-size: clamp(38px, 11vw, 52px); }
  .sz6-hero__lead { font-size: 17px; }
  .sz6-hero__actions { display: grid; grid-template-columns: 1fr; }
  .sz6-button { width: 100%; }
  .sz6-hero__card { padding: 21px; }
  .sz6-hero__proof { grid-template-columns: 1fr; }
  .sz6 { width: min(100% - 28px, var(--sz6-width)); }
  .sz6-section { padding: 40px 18px; }
  .sz6-section--tint, .sz6-section--dark { border-radius: 10px; }
  .sz6-route-grid, .sz6-issue-grid, .sz6-signal-list, .sz6-compare { grid-template-columns: 1fr; }
  .sz6-route, .sz6-decision, .sz6-issue, .sz6-related { padding: 21px; }
  .sz6-review { padding: 24px 21px 21px; }
  .sz6-checklist li, .sz6-meter__row { grid-template-columns: 1fr; gap: 4px; }
  .sz6-cluster-nav { display: grid; }
  .sz6-cluster-nav a { border-radius: 9px; }
}

@media (prefers-reduced-motion: reduce) {
  .sz6-hero *, .sz6 * { scroll-behavior: auto !important; transition: none !important; }
}
/* SZ6 SIX-PAGE CLUSTER 2026-08-13 END */
