:root {
  --bg: #f3ede4;
  --bg-strong: #ece2d2;
  --surface: rgba(255, 255, 255, 0.74);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --surface-dark: #111417;
  --surface-dark-soft: rgba(17, 20, 23, 0.84);
  --line: rgba(17, 20, 23, 0.12);
  --line-strong: rgba(17, 20, 23, 0.2);
  --text: #111417;
  --text-soft: rgba(17, 20, 23, 0.72);
  --text-inverse: #f7f4ee;
  --accent: #cf563c;
  --accent-dark: #a5412d;
  --accent-soft: rgba(207, 86, 60, 0.12);
  --shadow-soft: 0 16px 50px rgba(21, 18, 13, 0.08);
  --shadow-card: 0 24px 60px rgba(17, 20, 23, 0.1);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 40px));
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(207, 86, 60, 0.18), transparent 28%),
    radial-gradient(circle at top right, rgba(31, 87, 118, 0.14), transparent 24%),
    linear-gradient(180deg, #f7f3ec 0%, #eee4d7 100%);
  min-height: 100vh;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.page {
  position: relative;
  overflow-x: clip;
}

.page::before,
.page::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  width: 360px;
  height: 360px;
  border-radius: 999px;
  filter: blur(20px);
  opacity: 0.55;
}

.page::before {
  top: -140px;
  right: -120px;
  background: rgba(207, 86, 60, 0.18);
}

.page::after {
  left: -180px;
  bottom: 10%;
  background: rgba(53, 91, 124, 0.12);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 34px 0;
}

.section:first-of-type {
  padding-top: 18px;
}

.surface {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.surface-strong {
  background: var(--surface-strong);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
}

.section-card {
  border-radius: var(--radius-xl);
  padding: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(17, 20, 23, 0.05);
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow--accent {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.section-heading {
  display: grid;
  gap: 16px;
  margin-bottom: 24px;
}

.section-heading h1,
.section-heading h2,
.hero-copy h1,
.page-hero__copy h1,
.modal__panel h2 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 0.96;
}

.section-heading h2,
.modal__panel h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.section-heading p,
.hero-copy p,
.page-hero__copy p,
.content-card p,
.feature-card p,
.contact-copy p,
.footer__meta p,
.detail-list li,
.faq-grid details p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.68;
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  padding: 16px 0 16px;
}

.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.64);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.brand img {
  width: 28px;
  height: auto;
}

.brand__text {
  display: grid;
  gap: 4px;
}

.brand__title {
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header .brand__title {
  color: #000;
}

.footer .brand__title,
.footer .brand__subtitle {
  color: #000;
}

.brand__subtitle {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.nav-toggle {
  display: none;
  border: 0;
  background: rgba(17, 20, 23, 0.06);
  color: var(--text);
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--text-soft);
  font-size: 0.95rem;
  font-weight: 700;
  transition: color 0.24s ease, background-color 0.24s ease, transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(17, 20, 23, 0.06);
  outline: none;
}

.hero {
  padding-top: 22px;
}

.hero__grid,
.page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 24px;
}

.hero__grid {
  align-items: stretch;
}

.page-hero {
  align-items: stretch;
}

.hero-copy {
  min-width: 0;
  padding: 38px 38px 34px;
  border-radius: var(--radius-xl);
}

.page-hero__copy {
  min-width: 0;
  padding: 34px 34px 30px;
  border-radius: var(--radius-xl);
}

.hero-copy h1,
.page-hero__copy h1 {
  hyphens: auto;
}

.hero-copy h1 {
  font-size: clamp(2.85rem, 4.75vw, 4.55rem);
  max-width: 11.6ch;
  text-wrap: balance;
}

.page-hero__copy h1 {
  font-size: clamp(2.05rem, 3.25vw, 3.4rem);
  max-width: 12.8ch;
  text-wrap: balance;
}

.hero-copy p,
.page-hero__copy p {
  font-size: 1rem;
  max-width: 56ch;
}

.page-hero__copy p {
  max-width: 50ch;
}

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

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.button {
  background: linear-gradient(135deg, var(--accent) 0%, #e27b58 100%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(207, 86, 60, 0.28);
  font-weight: 800;
}

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

.button-secondary {
  background: rgba(17, 20, 23, 0.06);
  color: var(--text);
  font-weight: 700;
}

.hero-details {
  padding-top: 8px;
}

.hero-details__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.hero-highlight {
  display: grid;
  align-content: space-between;
  gap: 18px;
  height: 100%;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(17, 20, 23, 0.96), rgba(17, 20, 23, 0.84));
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow-card);
}

.hero-highlight__eyebrow {
  margin: 0;
  color: rgba(247, 244, 238, 0.62);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-highlight h2 {
  margin: 0;
  max-width: 10ch;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(1.85rem, 2.5vw, 2.55rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-highlight p {
  margin: 0;
  max-width: 34ch;
  font-size: 0.98rem;
  color: rgba(247, 244, 238, 0.8);
  line-height: 1.6;
}

.metric-list.hero-details__metrics {
  margin-top: 0;
  height: 100%;
  grid-auto-rows: 1fr;
  align-self: stretch;
}

.hero-details__metrics .metric {
  display: grid;
  align-content: start;
  min-height: 0;
}

.metric-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.metric {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(17, 20, 23, 0.045);
  border: 1px solid rgba(17, 20, 23, 0.08);
}

.metric strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Prata", Georgia, serif;
  font-size: clamp(1.35rem, 2.3vw, 1.55rem);
  font-weight: 400;
  line-height: 1.04;
}

.metric span {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.5;
  overflow-wrap: break-word;
}

.hero-media {
  position: relative;
  min-height: 0;
  align-self: stretch;
  height: 100%;
  padding: 20px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 244, 238, 0.65), rgba(247, 244, 238, 0.16)),
    rgba(17, 20, 23, 0.9);
  color: var(--text-inverse);
}

.page-banner {
  position: relative;
  min-height: 100%;
  align-self: stretch;
  height: 100%;
  padding: 18px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 244, 238, 0.65), rgba(247, 244, 238, 0.16)),
    rgba(17, 20, 23, 0.9);
  color: var(--text-inverse);
}

.hero-media__frame {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
}

.page-banner__media {
  position: relative;
  height: 100%;
  min-height: 0;
  border-radius: calc(var(--radius-xl) - 8px);
  overflow: hidden;
}

.hero-media__frame img,
.page-banner__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media__overlay,
.page-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17, 20, 23, 0.06) 0%, rgba(17, 20, 23, 0.62) 78%),
    linear-gradient(135deg, rgba(207, 86, 60, 0.12), transparent 70%);
}

.hero-media__card,
.page-banner__card {
  position: absolute;
  max-width: 280px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(247, 244, 238, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
}

.hero-media__card {
  left: 24px;
  bottom: 24px;
}

.page-banner__card {
  display: none;
}

.hero-media__card strong,
.page-banner__card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.hero-media__card p,
.page-banner__card p,
.page-banner__eyebrow {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(247, 244, 238, 0.8);
  line-height: 1.55;
}

.hero-media__tool {
  position: absolute;
  right: -6px;
  top: 18px;
  width: min(220px, 38%);
  transform: rotate(-6deg);
  filter: drop-shadow(0 20px 38px rgba(0, 0, 0, 0.34));
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 13px;
  border-radius: 999px;
  background: rgba(17, 20, 23, 0.05);
  color: var(--text-soft);
  font-size: 0.86rem;
  font-weight: 700;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.service-card,
.feature-card,
.content-card,
.pricing-card,
.info-card,
.contact-copy,
.contact-form-wrap,
.faq-grid details,
.process-item,
.brand-strip,
.note-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.service-card h3,
.feature-card h3,
.content-card h3,
.pricing-card h3,
.info-card h3,
.contact-copy h3,
.note-card h3 {
  margin: 0 0 14px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.service-card p,
.feature-card p,
.content-card p,
.pricing-card p,
.info-card p,
.note-card p {
  margin: 0;
}

.service-card strong,
.pricing-card strong,
.info-card strong {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 20, 23, 0.06);
  color: var(--text-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-card {
  min-height: 100%;
}

.feature-card {
  background: linear-gradient(180deg, rgba(17, 20, 23, 0.02), rgba(17, 20, 23, 0.07));
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: start;
}

.process-list {
  display: grid;
  gap: 14px;
}

.process-item {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.process-item__index {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(17, 20, 23, 0.92), rgba(17, 20, 23, 0.74));
  color: var(--text-inverse);
  font-family: "Prata", Georgia, serif;
  font-size: 1.4rem;
}

.process-item__body h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
}

.process-item__body p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

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

.detail-list li,
.bullet-list li {
  position: relative;
  padding-left: 24px;
}

.detail-list li::before,
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-grid details {
  background: rgba(17, 20, 23, 0.045);
  border: 1px solid rgba(17, 20, 23, 0.08);
}

.faq-grid summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
}

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

.faq-grid summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(17, 20, 23, 0.08);
  font-size: 1.2rem;
}

.faq-grid details[open] summary::after {
  content: "−";
}

.faq-grid details p {
  margin-top: 16px;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
}

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

.contact-meta {
  display: grid;
  gap: 12px;
}

.contact-meta strong {
  display: block;
  margin-bottom: 6px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-meta a {
  color: var(--accent-dark);
  font-weight: 800;
}

.brands {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.brands img {
  width: 84px;
  height: 84px;
  object-fit: contain;
  padding: 14px;
  border-radius: 22px;
  background: rgba(17, 20, 23, 0.04);
  border: 1px solid rgba(17, 20, 23, 0.08);
}

.contact-form-wrap {
  display: grid;
  gap: 20px;
}

.contact-form-wrap h3 {
  margin: 0;
  font-size: 1.5rem;
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field--wide {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(17, 20, 23, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  padding: 15px 16px;
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(207, 86, 60, 0.42);
  box-shadow: 0 0 0 4px rgba(207, 86, 60, 0.12);
}

.form-note {
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(17, 20, 23, 0.08);
}

.map-frame img {
  width: 100%;
  height: auto;
  background: #0f1113;
}

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

.pricing-card {
  min-height: 100%;
}

.pricing-card h3 {
  margin-bottom: 10px;
}

.pricing-card .price {
  display: block;
  margin-bottom: 10px;
  font-family: "Prata", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}

.footer {
  padding: 30px 0 48px;
}

.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: end;
  padding: 28px 30px;
  border-radius: var(--radius-xl);
}

.footer__meta {
  display: grid;
  gap: 14px;
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.footer__nav a {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(17, 20, 23, 0.06);
  color: var(--text-soft);
  font-weight: 700;
}

.footer__copyright {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(17, 20, 23, 0.48);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 50;
}

.modal.is-visible {
  opacity: 1;
  visibility: visible;
}

.modal__panel {
  position: relative;
  width: min(560px, 100%);
  padding: 36px;
  border-radius: var(--radius-xl);
}

.modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 20, 23, 0.08);
  color: var(--text);
  font-size: 1.1rem;
}

.modal__panel p {
  margin: 14px 0 0;
}

.hidden {
  display: none !important;
}

.stack-top {
  margin-top: 18px;
}

.stack-top-sm {
  margin-top: 16px;
}

[data-reveal] {
  animation: rise-up 0.7s ease both;
}

[data-reveal="2"] {
  animation-delay: 0.12s;
}

[data-reveal="3"] {
  animation-delay: 0.24s;
}

[data-reveal="4"] {
  animation-delay: 0.36s;
}

@keyframes rise-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .hero__grid,
  .hero-details__grid,
  .page-hero,
  .contact-grid,
  .split-layout {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .page-hero__copy {
    padding: 36px;
  }

  .hero-copy h1,
  .page-hero__copy h1 {
    max-width: 12ch;
  }

  .hero-highlight h2 {
    max-width: 13ch;
  }

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

  .hero-media__frame {
    height: clamp(400px, 62vw, 520px);
  }

  .page-banner__media {
    min-height: 360px;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
  }

  .site-header__inner {
    border-radius: 30px;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 10px);
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 28px;
    background: rgba(247, 244, 238, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: var(--shadow-card);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    justify-content: center;
  }

  .brand {
    flex: 1;
  }

  .brand__subtitle {
    display: none;
  }
}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 24px, 100vw - 24px);
  }

  .section {
    padding: 20px 0;
  }

  .section-card,
  .hero-copy,
  .page-hero__copy,
  .hero-highlight,
  .hero-media,
  .page-banner,
  .service-card,
  .feature-card,
  .content-card,
  .pricing-card,
  .info-card,
  .contact-copy,
  .contact-form-wrap,
  .faq-grid details,
  .process-item,
  .brand-strip,
  .note-card,
  .footer__inner,
  .modal__panel {
    padding: 22px;
    border-radius: 26px;
  }

  .hero-copy h1,
  .page-hero__copy h1 {
    font-size: clamp(2.05rem, 9.6vw, 3.25rem);
    max-width: none;
  }

  .hero-highlight h2 {
    font-size: clamp(1.75rem, 7vw, 2.55rem);
    max-width: none;
  }

  .hero-highlight p {
    max-width: none;
  }

  .metric-list,
  .grid-3,
  .grid-2,
  .price-grid,
  .grid-4,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-media__frame {
    height: 320px;
  }

  .hero-media__tool {
    width: 160px;
    right: -10px;
    top: 12px;
  }

  .hero-media__card,
  .page-banner__card {
    position: static;
    margin-top: 18px;
    max-width: none;
  }

  .process-item {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
  }

  .process-item__index {
    width: 52px;
    height: 52px;
    border-radius: 15px;
  }

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

  .footer__nav {
    justify-content: flex-start;
  }
}
