:root {
  --color-ink: #1e1e1e;
  --color-muted: #3b3b3b;
  --color-primary: #d71920;
  --color-primary-strong: #222222;
  --color-primary-deep: #1f1f1f;
  --color-primary-soft: #fbedee;
  --color-accent: #d71920;
  --color-accent-soft: #fff1f1;
  --color-white: #ffffff;
  --color-surface: #f7f5f2;
  --color-surface-warm: #faf8f5;
  --color-paper: #fffcf8;
  --color-smoke: #eee8e2;
  --color-line: #ded8d2;
  --shadow-soft: 0 16px 34px rgba(31, 31, 31, 0.07);
  --shadow-card: 0 18px 38px rgba(31, 31, 31, 0.08);
  --shadow-strong: 0 24px 54px rgba(31, 31, 31, 0.13);
  --radius: 8px;
  --radius-lg: 14px;
  --container: 1120px;
  --space-section: clamp(64px, 9vw, 112px);
  --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  background:
    linear-gradient(90deg, rgba(215, 25, 32, 0.025) 0 1px, transparent 1px 100%),
    linear-gradient(180deg, var(--color-surface-warm) 0%, #ffffff 48%, var(--color-surface) 100%);
  background-size: 112px 100%, auto;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

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

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

a:hover {
  color: var(--color-accent);
}

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

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

h1,
h2,
h3 {
  color: var(--color-ink);
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.25rem, 5.2vw, 4rem);
  letter-spacing: 0;
}

h2 {
  font-size: clamp(1.9rem, 4.3vw, 3.1rem);
}

h3 {
  font-size: clamp(1.15rem, 2.8vw, 1.45rem);
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 30;
  padding: 10px 14px;
  color: var(--color-white);
  background: var(--color-primary-deep);
  border-radius: var(--radius);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.section {
  position: relative;
  overflow: hidden;
  padding-block: var(--space-section);
}

@supports (content-visibility: auto) {
  .section,
  .post-card,
  .sidebar-card,
  .faq-item {
    content-visibility: auto;
    contain-intrinsic-size: auto 560px;
  }

  .post-card,
  .sidebar-card,
  .faq-item {
    contain-intrinsic-size: auto 320px;
  }
}

.section-alt {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--color-paper) 45%, var(--color-surface) 100%);
  border-block: 1px solid rgba(31, 31, 31, 0.05);
}

.section-head {
  position: relative;
  max-width: 760px;
  margin-inline: auto;
  margin-bottom: 46px;
  text-align: center;
}

.section-head .eyebrow {
  justify-content: center;
}

.section-head h2 {
  margin-bottom: 14px;
}

.section-head p {
  max-width: 620px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--color-primary);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
  content: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(180deg, rgba(255, 252, 248, 0.98) 0%, rgba(247, 245, 242, 0.98) 100%);
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
  box-shadow: 0 14px 28px rgba(31, 31, 31, 0.06);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding-block: 12px 10px;
  gap: clamp(18px, 4vw, 42px);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  gap: 0;
  line-height: 0;
}

.site-header .brand {
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.brand img {
  display: block;
  width: auto;
  height: auto;
  border-radius: 0;
}

.brand .brand-logo-wide {
  width: clamp(150px, 36vw, 184px);
  height: auto;
  border-radius: 0;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  color: var(--color-white);
  background:
    linear-gradient(180deg, var(--color-accent) 0%, #b6161c 100%);
  border: 1px solid rgba(215, 25, 32, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 12px 22px rgba(215, 25, 32, 0.2);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  content: "";
}

.nav-toggle-lines {
  position: relative;
  transition: background 0.18s ease;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -7px;
  transition: transform 0.18s ease, top 0.18s ease;
}

.nav-toggle-lines::after {
  top: 7px;
  transition: transform 0.18s ease, top 0.18s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  position: fixed;
  inset: 89px 14px auto 14px;
  display: grid;
  gap: 8px;
  padding: 14px;
  background: rgba(250, 248, 245, 0.98);
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-top: 3px solid var(--color-accent);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 18px 42px rgba(31, 31, 31, 0.13);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.site-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.site-nav a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 43px;
  padding: 8px 14px;
  color: var(--color-ink);
  font-size: 0.98rem;
  font-weight: 800;
  border-radius: var(--radius);
  transition: color 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--color-primary-deep);
  background: transparent;
}

.site-nav .btn,
.site-nav .btn:focus {
  color: var(--color-white);
  background:
    linear-gradient(180deg, var(--color-accent) 0%, #b6161c 100%);
  border-color: var(--color-accent);
  box-shadow: 0 12px 24px rgba(215, 25, 32, 0.2);
}

.site-nav .btn:hover {
  color: var(--color-white);
  background: #b6161c;
  border-color: #b6161c;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  color: var(--color-white);
  background: var(--color-accent);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius);
  font-weight: 800;
  box-shadow: 0 14px 28px rgba(215, 25, 32, 0.2);
  overflow: hidden;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  color: var(--color-white);
  background: #b6161c;
  border-color: #b6161c;
  transform: translateY(-1px);
}

.btn-secondary {
  color: var(--color-ink);
  background: transparent;
  border-color: rgba(30, 30, 30, 0.72);
  box-shadow: 0 10px 24px rgba(31, 31, 31, 0.06);
}

.btn-secondary:hover {
  color: var(--color-ink);
  background: var(--color-paper);
  border-color: var(--color-primary-deep);
}

.btn-small {
  min-height: 42px;
  padding: 9px 14px;
  font-size: 0.94rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(68px, 9vw, 112px);
  background:
    linear-gradient(135deg, #f7f5f2 0%, #faf8f5 54%, #ffffff 100%);
  border-bottom: 1px solid var(--color-line);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 58%, rgba(215, 25, 32, 0.06) 58% 58.55%, transparent 58.55% 100%),
    linear-gradient(115deg, transparent 0 66%, rgba(31, 31, 31, 0.055) 66% 66.25%, transparent 66.25% 100%);
  content: "";
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(34px, 6vw, 66px);
  align-items: center;
}

.hero-content {
  max-width: 700px;
}

.hero-content p {
  max-width: 610px;
  font-size: clamp(1.03rem, 2.2vw, 1.16rem);
}

.hero-content h1 {
  position: relative;
  max-width: 650px;
  margin-bottom: 24px;
}

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

.hero-media {
  position: relative;
  align-self: center;
  display: grid;
  min-height: clamp(420px, 52vw, 560px);
  place-items: center;
  overflow: hidden;
  padding: 10px;
  background:
    linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: var(--radius);
  box-shadow:
    var(--shadow-strong),
    inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.hero-media::before {
  position: absolute;
  inset: 22px auto 22px -1px;
  width: 5px;
  background: var(--color-accent);
  content: "";
}

.hero-media::after,
.device-figure::after,
.media-card-clean::after,
.article-hero-media::after {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 56px;
  height: 4px;
  background:
    linear-gradient(90deg, var(--color-primary-deep) 0 24px, var(--color-accent) 24px 56px);
  border-radius: 999px;
  content: "";
  opacity: 0.92;
}

.hero-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 400px;
  max-height: 540px;
  object-fit: cover;
  object-position: center;
  padding: 0;
  border-radius: 6px;
  filter: none;
}

.service-card,
.why-card,
.post-card,
.sidebar-card,
.process-step {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--color-paper) 100%);
  border: 1px solid rgba(31, 31, 31, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.card-grid {
  display: grid;
  gap: 22px;
}

.split-grid > .card-grid {
  grid-template-columns: 1fr;
}

.service-card,
.why-card,
.post-card {
  padding: 28px;
}

.service-card,
.why-card {
  position: relative;
  display: flex;
  min-height: 230px;
  flex-direction: column;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.service-card::before,
.why-card::before,
.post-card::before,
.sidebar-card::before,
.process-step::after,
.contact-info-card::before,
.article-body::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 58px;
  height: 4px;
  background:
    linear-gradient(90deg, var(--color-accent) 0 36px, var(--color-primary-deep) 36px 58px);
  content: "";
}

.service-card::after {
  position: absolute;
  inset: auto 18px 18px auto;
  width: 44px;
  height: 2px;
  background: var(--color-primary-deep);
  border-radius: 999px;
  content: "";
  opacity: 0.2;
}

.service-card:hover,
.why-card:hover {
  border-color: rgba(215, 25, 32, 0.22);
  box-shadow: 0 18px 42px rgba(31, 31, 31, 0.11);
  transform: translateY(-4px);
}

.service-card h3,
.why-card h3 {
  margin-bottom: 12px;
  letter-spacing: 0;
}

.service-card p,
.why-card p,
.process-step p {
  margin-bottom: 0;
}

.why-card {
  border-top: 1px solid var(--color-line);
}

.why-index {
  display: inline-grid;
  width: 50px;
  height: 50px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--color-white);
  background: var(--color-primary-deep);
  border-radius: var(--radius);
  box-shadow:
    inset 0 -4px 0 rgba(215, 25, 32, 0.72),
    0 12px 24px rgba(31, 31, 31, 0.14);
  font-weight: 900;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--color-white);
  background: var(--color-primary-deep);
  border-radius: var(--radius);
  box-shadow:
    inset 0 -4px 0 rgba(215, 25, 32, 0.72),
    0 12px 24px rgba(31, 31, 31, 0.14);
  font-size: 0.94rem;
  font-weight: 900;
}

.process-list {
  display: grid;
  gap: 18px;
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 26px 26px 26px 84px;
  counter-increment: process;
}

.process-step::before {
  position: absolute;
  left: 22px;
  top: 26px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--color-white);
  background: var(--color-primary-deep);
  border-radius: var(--radius);
  box-shadow: inset 0 -4px 0 rgba(215, 25, 32, 0.72);
  content: counter(process);
  font-weight: 900;
}

.split-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.about-panel {
  display: grid;
  gap: clamp(30px, 6vw, 64px);
  align-items: center;
}

.about-copy {
  max-width: 680px;
}

.about-copy p {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-points {
  display: grid;
  gap: 0;
  padding: clamp(24px, 4vw, 34px);
  color: var(--color-white);
  background: var(--color-primary-deep);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
}

.about-points div {
  position: relative;
  padding: 18px 0 18px 22px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
}

.about-points div:last-child {
  border-bottom: 0;
}

.about-points div::before {
  position: absolute;
  left: 0;
  top: 23px;
  width: 4px;
  height: 34px;
  background: var(--color-accent);
  border-radius: 999px;
  content: "";
}

.about-points strong {
  display: block;
  margin-bottom: 5px;
  color: var(--color-white);
  font-size: 1.02rem;
}

.about-points span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.notice-band {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.notice-band::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 4px;
  background:
    linear-gradient(90deg, var(--color-accent) 0 40px, var(--color-primary-deep) 40px 64px);
  content: "";
}

.notice-band h3 {
  color: var(--color-primary-strong);
}

.media-card {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.test-grid {
  display: grid;
  gap: clamp(24px, 5vw, 48px);
  align-items: start;
}

.device-figure {
  position: relative;
  display: grid;
  min-height: clamp(480px, 52vw, 570px);
  margin: 0;
  place-items: center;
  overflow: hidden;
  padding: 10px;
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f5f2 100%);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.device-figure img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
  filter: none;
}

.test-steps {
  align-self: stretch;
  gap: 18px;
}

.test-steps .process-step {
  display: flex;
  min-height: 154px;
  flex-direction: column;
  justify-content: center;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(46px, 8vw, 82px);
  background: linear-gradient(135deg, var(--color-surface), var(--color-white));
  border-bottom: 1px solid var(--color-line);
}

.page-hero > .container {
  position: relative;
  z-index: 1;
}

.page-hero::before {
  display: none;
  content: none;
}

.page-hero p {
  max-width: 760px;
  font-size: 1.08rem;
}

.about-page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(68px, 9vw, 112px);
  background:
    linear-gradient(135deg, #f7f5f2 0%, #ffffff 48%, #faf8f5 100%);
}

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

.about-hero-grid {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.about-hero-copy {
  max-width: 780px;
}

.about-hero-copy h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 4.8vw, 3.65rem);
}

.about-hero-copy p {
  max-width: 720px;
  margin-bottom: 14px;
  font-size: clamp(1.04rem, 2.2vw, 1.16rem);
  line-height: 1.78;
}

.about-hero-copy p:last-child {
  margin-bottom: 0;
}

.about-identity-card {
  position: relative;
  display: grid;
  gap: 22px;
  min-height: 360px;
  padding: clamp(28px, 4vw, 42px);
  color: var(--color-white);
  background:
    linear-gradient(135deg, var(--color-primary-deep), #2a2a2a);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.about-identity-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background:
    linear-gradient(90deg, var(--color-accent) 0 58%, rgba(255, 255, 255, 0.82) 58% 72%, transparent 72% 100%);
  content: "";
}

.identity-mark {
  display: inline-grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: var(--color-white);
  font-size: 1.05rem;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius);
}

.identity-summary strong {
  display: block;
  margin-bottom: 12px;
  color: var(--color-white);
  font-size: clamp(1.25rem, 2.6vw, 1.65rem);
  line-height: 1.2;
}

.identity-summary span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.identity-points {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.identity-points span {
  display: block;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.contact-page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(60px, 8vw, 96px);
  background:
    linear-gradient(135deg, #ffffff 0%, #faf8f5 58%, #f7f5f2 100%);
}

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

.contact-hero-grid {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.contact-hero-copy {
  max-width: 780px;
}

.contact-hero-copy h1 {
  max-width: 680px;
  margin-bottom: 22px;
}

.contact-hero-copy p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.04rem, 2.2vw, 1.16rem);
  line-height: 1.78;
}

.contact-access-panel {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 14px;
  background: var(--color-white);
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.contact-access-panel::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  background:
    linear-gradient(180deg, var(--color-accent), var(--color-primary-deep));
  content: "";
}

.contact-access-item {
  display: grid;
  gap: 4px;
  padding: 16px 18px;
  background: var(--color-surface);
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: var(--radius);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-access-item:hover {
  color: inherit;
  background: var(--color-white);
  border-color: rgba(215, 25, 32, 0.26);
  transform: translateY(-2px);
}

.contact-access-item span {
  color: var(--color-primary);
  font-size: 0.8rem;
  font-weight: 900;
}

.contact-access-item strong {
  color: var(--color-ink);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.25;
}

.blog-page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(66px, 9vw, 108px);
  background:
    linear-gradient(180deg, #faf8f5 0%, #f7f5f2 100%);
}

.blog-page-hero::before {
  display: none;
  content: none;
}

.blog-hero-grid {
  position: relative;
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}

.blog-hero-copy {
  max-width: 780px;
}

.blog-hero-copy h1 {
  max-width: 680px;
  margin-bottom: 22px;
}

.blog-hero-copy p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: clamp(1.04rem, 2.2vw, 1.16rem);
  line-height: 1.78;
}

.blog-index-panel {
  position: relative;
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  background: var(--color-white);
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-left: 6px solid var(--color-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.blog-index-head span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 0.82rem;
  font-weight: 900;
}

.blog-index-head strong {
  display: block;
  color: var(--color-ink);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.25;
}

.blog-index-list {
  display: grid;
}

.blog-index-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 0;
  color: var(--color-primary-strong);
  font-weight: 800;
  border-top: 1px solid var(--color-line);
}

.blog-index-list a::after {
  color: var(--color-accent);
  content: ">";
}

.blog-index-list a:hover {
  color: var(--color-accent);
}

.article-page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(54px, 8vw, 96px);
  background:
    linear-gradient(135deg, #f7f5f2 0%, #faf8f5 50%, #ffffff 100%);
}

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

.article-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  align-items: center;
}

.article-hero-copy {
  max-width: 780px;
}

.article-hero-copy h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(2rem, 4.8vw, 3.45rem);
  line-height: 1.08;
}

.article-hero-copy p {
  max-width: 690px;
  margin-bottom: 0;
  color: #55514d;
  font-size: clamp(1.02rem, 2vw, 1.15rem);
  line-height: 1.78;
}

.article-hero-media {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: clamp(10px, 2vw, 14px);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f5f2 100%);
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(31, 31, 31, 0.1);
}

.article-hero-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 6px;
}

.article-section {
  padding-block: clamp(50px, 8vw, 92px);
  background:
    linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
}

.article-layout {
  gap: clamp(22px, 4vw, 40px);
  align-items: start;
}

.about-section-copy {
  max-width: 700px;
}

.about-section-copy p {
  max-width: 660px;
  margin-bottom: 14px;
  font-size: 1.06rem;
  line-height: 1.78;
}

.about-section-copy p:last-child {
  margin-bottom: 0;
}

.about-history-grid,
.about-service-grid {
  gap: clamp(30px, 5vw, 56px);
}

.about-history-grid {
  align-items: stretch;
}

.notice-band-large {
  display: flex;
  min-height: 282px;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 44px);
  background:
    linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
  border-color: rgba(31, 31, 31, 0.1);
  box-shadow: 0 18px 44px rgba(31, 31, 31, 0.1);
}

.notice-band-large h3 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.notice-band-large p {
  margin-bottom: 0;
  font-size: 1.06rem;
  line-height: 1.75;
}

.about-service-grid {
  align-items: start;
}

.media-card-clean {
  position: relative;
  overflow: hidden;
  padding: 12px;
  box-shadow: 0 18px 44px rgba(31, 31, 31, 0.1);
}

.media-card-clean img {
  border-radius: 6px;
}

.about-service-section .media-card-clean img {
  aspect-ratio: 4 / 5;
  min-height: 460px;
  object-fit: cover;
  object-position: center;
}

.contact-layout {
  display: grid;
  gap: 24px;
}

.contact-layout-balanced {
  align-items: stretch;
  gap: clamp(20px, 3vw, 30px);
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3vw, 30px);
  background: var(--color-white);
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(31, 31, 31, 0.1);
}

.contact-info-card h2 {
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
}

.contact-info-list {
  display: grid;
  gap: 15px;
}

.contact-info-row {
  display: grid;
  gap: 4px;
  padding: 0;
}

a.contact-info-row {
  transition: color 0.2s ease, transform 0.2s ease;
}

a.contact-info-row:hover {
  color: var(--color-primary-strong);
  transform: translateX(3px);
}

a.contact-info-row:hover .contact-info-value {
  color: var(--color-primary-strong);
}

.contact-info-label {
  color: var(--color-primary-strong);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-info-value {
  color: var(--color-ink);
  font-weight: 700;
  line-height: 1.48;
  transition: color 0.2s ease;
}

.map-frame {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(31, 31, 31, 0.1);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.map-directions {
  position: absolute;
  right: 16px;
  top: 16px;
  bottom: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  color: var(--color-white);
  background: var(--color-accent);
  border-radius: var(--radius);
  box-shadow: 0 12px 24px rgba(215, 25, 32, 0.2);
  font-weight: 800;
}

.map-directions:hover {
  color: var(--color-white);
  background: #b6161c;
}

.content-layout {
  display: grid;
  gap: 24px;
}

.post-list {
  display: grid;
  gap: 20px;
}

.post-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 20px;
  overflow: hidden;
}

.post-thumb-image {
  width: 100%;
  height: clamp(150px, 18vw, 190px);
  aspect-ratio: auto;
  object-fit: cover;
  margin-bottom: 14px;
  border-radius: var(--radius);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
  color: var(--color-primary-strong);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.post-card h2 {
  margin-bottom: 10px;
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.22;
}

.post-card p {
  margin-bottom: 0;
  line-height: 1.58;
}

.post-card a {
  color: var(--color-primary-strong);
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
}

.sidebar-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
}

.sidebar-card h3 {
  margin-bottom: 12px;
  font-size: 1.08rem;
}

.sidebar-card ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 18px;
  color: var(--color-muted);
}

.sidebar-card p {
  margin-bottom: 14px;
  line-height: 1.58;
}

.article-layout .sidebar {
  gap: 14px;
}

.article-layout .sidebar-card {
  padding: 20px;
  background:
    linear-gradient(180deg, #ffffff 0%, #faf8f5 100%);
  border-color: rgba(31, 31, 31, 0.1);
  box-shadow: 0 16px 38px rgba(31, 31, 31, 0.08);
}

.article-layout .sidebar-card h3 {
  margin-bottom: 14px;
  padding-bottom: 12px;
  color: var(--color-primary-strong);
  border-bottom: 1px solid var(--color-line);
  font-size: 1.08rem;
}

.article-layout .sidebar-card ul {
  gap: 0;
  padding: 0;
  list-style: none;
}

.article-layout .sidebar-card li {
  border-bottom: 1px solid rgba(222, 216, 210, 0.78);
}

.article-layout .sidebar-card li:last-child {
  border-bottom: 0;
}

.article-layout .sidebar-card li a {
  display: block;
  padding: 10px 0;
  color: var(--color-ink);
  font-weight: 750;
  line-height: 1.45;
  transition: color 0.2s ease, transform 0.2s ease;
}

.article-layout .sidebar-card li a:hover {
  color: var(--color-accent);
  transform: translateX(3px);
}

.article-layout .sidebar-card .btn {
  width: 100%;
}

.article-layout .sidebar-card p {
  color: var(--color-muted);
  font-size: 0.98rem;
}

.article-body {
  position: relative;
  overflow: hidden;
  max-width: none;
  padding: clamp(24px, 4vw, 42px);
  background: var(--color-white);
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(31, 31, 31, 0.09);
}

.article-body::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), #b6161c);
  content: "";
}

.article-body p,
.article-body li {
  color: var(--color-muted);
  font-size: clamp(1rem, 1.4vw, 1.06rem);
  line-height: 1.84;
}

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

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body h2 {
  position: relative;
  margin-top: 38px;
  margin-bottom: 14px;
  padding-left: 16px;
  color: var(--color-primary-strong);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  line-height: 1.22;
}

.article-body h2:first-of-type {
  margin-top: 0;
}

.article-body h2::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 4px;
  height: 1.05em;
  background: var(--color-accent);
  border-radius: 999px;
  content: "";
}

.article-body h3 {
  margin-top: 30px;
  margin-bottom: 12px;
  color: var(--color-primary-strong);
  font-size: clamp(1.15rem, 2vw, 1.35rem);
}

.article-body .post-meta {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-line);
}

.article-body ul {
  color: var(--color-muted);
}

.article-body ul {
  display: grid;
  gap: 10px;
  margin: 16px 0 22px;
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: var(--radius);
  list-style: none;
}

.article-body li {
  position: relative;
  padding-left: 22px;
}

.article-body li::before {
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(215, 25, 32, 0.12);
  content: "";
}

.faq-accordion {
  display: grid;
  max-width: 880px;
  margin-inline: auto;
  gap: 8px;
}

.faq-item {
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(31, 31, 31, 0.06);
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 50px;
  align-items: center;
  padding: 11px 44px 11px 18px;
  color: var(--color-primary-strong);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  color: var(--color-primary);
  content: "⌄";
  font-size: 1.25rem;
  line-height: 1;
  transform: translateY(-50%);
  transition: color 0.2s ease, transform 0.2s ease;
}

.faq-item[open] summary::after {
  color: var(--color-primary-strong);
  transform: translateY(-50%) rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 44px 14px 18px;
  color: var(--color-muted);
  line-height: 1.62;
}

.faq-item[open] {
  border-color: rgba(215, 25, 32, 0.2);
  box-shadow: 0 14px 32px rgba(31, 31, 31, 0.08);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-block: 62px 26px;
  color: var(--color-ink);
  background:
    linear-gradient(180deg, #fffcf8 0%, var(--color-surface) 100%);
  border-top: 1px solid rgba(31, 31, 31, 0.08);
}

.site-footer::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background:
    linear-gradient(90deg, var(--color-accent) 0 34%, #b6161c 34% 52%, rgba(245, 243, 240, 0.75) 52% 58%, transparent 58% 100%);
  content: "";
}

.site-footer::after {
  position: absolute;
  right: 0;
  bottom: 72px;
  width: min(34vw, 360px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(31, 31, 31, 0.16));
  content: "";
}

.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1080px);
  align-items: start;
  gap: clamp(26px, 4vw, 46px);
  margin-inline: auto;
}

.footer-grid > div {
  display: flex;
  flex-direction: column;
  align-self: start;
  gap: 15px;
  min-width: 0;
}

.footer-grid > div:first-child {
  gap: 21px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  font-weight: 900;
}

.footer-brand img {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
}

.footer-brand .brand-logo-wide {
  width: clamp(182px, 20vw, 208px);
  height: auto;
  border-radius: 0;
}

.footer-title {
  position: relative;
  margin: 0;
  padding-bottom: 11px;
  color: var(--color-primary-deep);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.footer-title::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 48px;
  height: 2px;
  background:
    linear-gradient(90deg, var(--color-accent) 0 28px, var(--color-primary-deep) 28px 48px);
  border-radius: 999px;
  content: "";
}

.footer-grid p {
  max-width: none;
  margin-bottom: 0;
  color: #514b45;
  font-size: 0.98rem;
  line-height: 1.72;
}

.footer-grid > div:first-child p {
  max-width: 31ch;
  line-height: 1.8;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links li {
  position: relative;
  min-width: 0;
  color: var(--color-muted);
  line-height: 1.58;
}

.footer-links strong {
  color: var(--color-primary-deep);
  font-weight: 800;
}

.footer-links a {
  color: var(--color-muted);
  font-weight: 400;
}

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

.footer-bottom {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  margin: 42px auto 0;
  padding: 15px 20px;
  color: #f5f3f0;
  background: var(--color-primary-deep);
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: var(--radius);
  text-align: center;
}

.footer-bottom small {
  color: rgba(245, 243, 240, 0.88);
}

.footer-bottom a {
  color: #f5f3f0;
  font-weight: 800;
}

.footer-bottom a:hover {
  color: #ff7a7f;
}

.whatsapp-float {
  position: fixed;
  right: max(18px, calc(18px + env(safe-area-inset-right, 0px)));
  bottom: max(18px, calc(18px + env(safe-area-inset-bottom, 0px)));
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(54px, 4.4vw, 60px);
  height: clamp(54px, 4.4vw, 60px);
  color: #ffffff;
  background: linear-gradient(180deg, #24bc63 0%, #1fa955 100%);
  border: 1px solid rgba(22, 110, 56, 0.18);
  border-radius: 999px;
  box-shadow: 0 16px 34px rgba(31, 31, 31, 0.16);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
  transition:
    opacity 0.32s ease,
    transform 0.32s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease;
}

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

.whatsapp-float:hover {
  background: linear-gradient(180deg, #22b35d 0%, #1d994d 100%);
  box-shadow: 0 18px 38px rgba(31, 31, 31, 0.2);
  transform: translateY(-2px) scale(1.02);
}

.whatsapp-float:focus-visible {
  outline: 0;
  box-shadow:
    0 0 0 4px rgba(36, 188, 99, 0.16),
    0 18px 38px rgba(31, 31, 31, 0.2);
}

.whatsapp-float-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
}

.whatsapp-float-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: currentColor;
}

body.nav-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.96);
}

.footer-contact-list {
  gap: 10px;
}

.footer-contact-list .footer-address {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  margin: 0;
}

.footer-contact-list .footer-address span {
  color: var(--color-muted);
  font-weight: 400;
  font-size: 0.98rem;
  line-height: 1.66;
}

.footer-contact-list li:not(.footer-address) {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  column-gap: 10px;
  align-items: baseline;
}

.footer-contact-list li:not(.footer-address) a,
.footer-contact-list li:not(.footer-address) span {
  color: var(--color-muted);
  font-weight: 400;
  justify-self: start;
  line-height: 1.65;
}

.footer-hours-list {
  gap: 7px;
  padding-top: 0;
}

.footer-hours-list li {
  display: grid;
  grid-template-columns: 8.8ch auto;
  column-gap: 4px;
  justify-content: start;
  align-items: baseline;
  line-height: 1.48;
}

.footer-hours-list li span:first-child {
  color: var(--color-primary-deep);
  font-weight: 700;
}

.footer-hours-list li span:last-child {
  color: var(--color-muted);
  font-weight: 400;
  white-space: nowrap;
  text-align: right;
  justify-self: end;
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
}

@media (max-width: 520px) {
  body {
    background: var(--color-surface-warm);
  }

  .header-inner {
    min-height: 78px;
    padding-block: 10px 8px;
  }

  .brand .brand-logo-wide {
    width: min(146px, 54vw);
  }

  .site-nav {
    inset: 81px 10px auto 10px;
  }

  .hero-media {
    min-height: 360px;
    padding: 8px;
  }

  .hero-media img {
    min-height: 344px;
    max-height: 390px;
  }

  .device-figure {
    min-height: 390px;
    padding: 8px;
  }

  .device-figure img {
    min-height: 374px;
  }

  .about-service-section .media-card-clean img {
    min-height: 380px;
  }

  .site-header,
  .hero-media,
  .device-figure,
  .service-card,
  .why-card,
  .post-card,
  .sidebar-card,
  .process-step,
  .article-body,
  .map-frame,
  .contact-info-card {
    box-shadow: 0 10px 24px rgba(31, 31, 31, 0.08);
  }

  .footer-grid {
    gap: 28px;
  }

  .footer-grid > div {
    max-width: none;
  }

  .footer-grid > div:first-child {
    gap: 18px;
  }

  .footer-grid > div:first-child p {
    max-width: 31ch;
  }

  .footer-contact-list .footer-address {
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 8px;
  }

  .footer-contact-list li:not(.footer-address) {
    grid-template-columns: 64px minmax(0, 1fr);
    column-gap: 8px;
  }

  .footer-hours-list li {
    grid-template-columns: 8.6ch auto;
    column-gap: 4px;
  }

  .whatsapp-float {
    right: max(14px, calc(14px + env(safe-area-inset-right, 0px)));
    bottom: max(14px, calc(14px + env(safe-area-inset-bottom, 0px)));
    width: 54px;
    height: 54px;
    box-shadow: 0 14px 30px rgba(31, 31, 31, 0.14);
  }

  .whatsapp-float-icon {
    width: 26px;
    height: 26px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .whatsapp-float:hover,
  .whatsapp-float.is-visible,
  body.nav-open .whatsapp-float {
    transform: none;
  }
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 860px) {
  body.nav-open {
    overflow: auto;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    flex: 0 1 auto;
    justify-content: flex-end;
    gap: 10px;
    margin-left: auto;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .site-nav a {
    min-height: 40px;
    padding: 8px 2px;
    color: var(--color-ink);
    border-radius: 0;
  }

  .site-nav a:hover,
  .site-nav a[aria-current="page"] {
    color: var(--color-primary-deep);
    background: transparent;
  }

  .site-nav .btn {
    min-height: 42px;
    margin-left: 6px;
    padding-inline: 18px;
    color: var(--color-white);
    background:
      linear-gradient(180deg, var(--color-accent) 0%, #b6161c 100%);
    border-color: var(--color-accent);
    box-shadow: 0 10px 20px rgba(215, 25, 32, 0.18);
  }

  .hero-grid,
  .split-grid,
  .test-grid,
  .contact-layout,
  .content-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  }

  .about-panel {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  }

  .about-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  }

  .contact-hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.82fr);
  }

  .blog-hero-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  }

  .article-hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  }

  .about-history-grid {
    grid-template-columns: minmax(0, 0.98fr) minmax(360px, 1.02fr);
  }

  .about-service-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 1fr);
  }

  .test-grid {
    grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  }

  .contact-layout-balanced {
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  }

  .contact-info-card,
  .map-frame,
  .map-frame iframe {
    min-height: 540px;
  }

  .content-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
  }

  .article-layout {
    grid-template-columns: minmax(0, 1fr) 270px;
  }

  .article-layout .sidebar {
    position: sticky;
    top: 104px;
  }

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

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

  .process-list {
    grid-template-columns: 1fr;
  }

  .test-steps {
    grid-template-columns: 1fr;
  }

  .test-steps .process-step {
    padding: 22px 22px 22px 76px;
  }

  .test-steps .process-step::before {
    left: 22px;
  }

  .split-grid > .process-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: clamp(28px, 3vw, 40px);
    row-gap: 20px;
  }

  .footer-grid > div {
    max-width: none;
    width: 100%;
  }
}

@media (min-width: 1080px) {
  .site-nav a {
    padding-inline: 16px;
  }
}
