@charset "UTF-8";

:root {
  --navy: #101025;
  --navy-soft: #262642;
  --text: #42445f;
  --muted: #6e7088;
  --violet: #4935bd;
  --violet-dark: #38289d;
  --violet-pale: #efedff;
  --green: #159a6b;
  --white: #ffffff;
  --tint: #f6f7fb;
  --line: #e1e3ec;
  --line-dark: rgba(255, 255, 255, 0.15);
  --container: 1120px;
  --radius: 10px;
  --header-height: 72px;
  --shadow: 0 8px 28px rgba(20, 20, 50, 0.08);
}

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

html {
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  max-width: 100%;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

h1,
h2,
h3 {
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

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

.section {
  padding: clamp(88px, 9vw, 132px) 0;
  border-top: 1px solid var(--line);
}

.section--tinted {
  background: var(--tint);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 5px;
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

.header-inner {
  min-width: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  flex: 0 0 auto;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.8vw, 38px);
  color: #575a75;
  font-size: 13px;
  font-weight: 650;
}

.site-nav > a:not(.button) {
  padding: 10px 0;
  transition: color 160ms ease;
}

.site-nav > a:not(.button):hover,
.site-nav > a:not(.button):focus-visible,
.site-nav > a[aria-current="page"]:not(.button) {
  color: var(--violet);
}

.site-nav > a[aria-current="page"]:not(.button) {
  box-shadow: inset 0 -2px 0 var(--violet);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  width: 22px;
  height: 2px;
  display: block;
  margin: 5px auto;
  background: var(--navy);
  transition: transform 180ms ease, opacity 180ms ease;
}

.button {
  min-height: 50px;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(20, 20, 50, 0.12);
}

.button--small {
  min-height: 40px;
  padding: 10px 16px;
  color: var(--white);
}

.button--primary {
  color: var(--white);
  background: var(--violet);
  border-color: var(--violet);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--violet-dark);
  border-color: var(--violet-dark);
}

.button--secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--line);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  border-color: #b9b9ca;
}

.button--outline {
  color: var(--violet);
  background: transparent;
  border-color: var(--violet);
}

.button--outline:hover,
.button--outline:focus-visible {
  color: var(--violet-dark);
  background: var(--violet-pale);
  border-color: var(--violet-dark);
}

.button--dark-outline {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.button--dark-outline:hover,
.button--dark-outline:focus-visible {
  border-color: var(--white);
}

.section-label,
.card-label,
.item-number {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-label {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--violet);
}

.section-label > span {
  width: 28px;
  height: 1px;
  background: #9a91db;
}

.section-label--center {
  justify-content: center;
}

.section-label--light {
  color: #aaa5e1;
}

.section-label--light > span {
  background: #756bc6;
}

.hero {
  min-height: 660px;
  padding: 110px 0 104px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 50% 5%, rgba(89, 66, 204, 0.075), transparent 42%),
    linear-gradient(180deg, #f9f9ff 0, #ffffff 72%);
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  max-width: 920px;
  text-align: center;
}

.hero h1 {
  max-width: 890px;
  margin: 0 auto 24px;
  font-size: clamp(42px, 5.2vw, 68px);
  font-weight: 780;
}

.hero-summary {
  max-width: 780px;
  margin: 0 auto 30px;
  color: #54566f;
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.55;
}

.hero-kicker {
  max-width: 680px;
  margin: 0 auto 22px;
  color: var(--violet);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust-grid {
  max-width: 940px;
  margin: 42px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  text-align: center;
}

.hero-trust-card {
  min-height: 154px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid #dfe1e9;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(20, 20, 50, 0.07);
}

.hero-trust-card--warranty {
  background: linear-gradient(180deg, #f1fff9 0%, #ffffff 100%);
  border-color: #8dddc0;
}

.hero-trust-card h2 {
  max-width: 230px;
  margin-bottom: 10px;
  color: #1818dc;
  font-size: 21px;
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.hero-trust-card--warranty h2 {
  color: #007d57;
}

.hero-trust-card p {
  max-width: 250px;
  margin: 0;
  color: #55576d;
  font-size: 14px;
  line-height: 1.48;
}

.trusted-by {
  padding: 52px 0 58px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.trusted-by-heading {
  margin-bottom: 32px;
  text-align: center;
}

.trusted-by-heading h2 {
  margin: 0;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 770;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.client-logo {
  min-width: 0;
  min-height: 150px;
  padding: 28px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
}

.client-logo:last-child {
  border-right: 0;
}

.client-logo img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  opacity: 0.7;
  filter: grayscale(1);
  transition: opacity 160ms ease, filter 160ms ease;
}

.client-logo:hover img {
  opacity: 1;
  filter: grayscale(0);
}

.section-intro {
  max-width: 720px;
  margin-bottom: 58px;
}

.section-intro h2,
.store-content h2 {
  margin-bottom: 20px;
  font-size: clamp(36px, 4.3vw, 56px);
  font-weight: 770;
}

.section-intro > p:last-child,
.store-content > p {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 17px;
}

.info-block {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.item-number,
.card-label {
  margin-bottom: 16px;
  color: var(--violet);
}

.info-block h3 {
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 750;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.info-block > p:last-child {
  margin-bottom: 0;
  color: var(--text);
  font-size: 14px;
  line-height: 1.65;
}

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

.output-note {
  margin-top: 48px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.output-note--accent {
  background: var(--white);
  border-left: 3px solid var(--violet);
}

.output-note .card-label {
  margin-bottom: 8px;
}

.output-note p:last-child {
  max-width: 820px;
  margin: 0;
  font-size: 14px;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.brand-card {
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-right: 1px solid var(--line);
}

.brand-card:last-child {
  border-right: 0;
}

.brand-card img {
  width: 92px;
  height: 92px;
  max-width: none;
  object-fit: contain;
  opacity: 0.82;
}

.brand-card:nth-child(3) img,
.brand-card:nth-child(4) img {
  width: 140px;
  height: 140px;
}

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

.spec-card {
  min-height: 190px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 3px 12px rgba(20, 20, 50, 0.045);
}

.spec-card .card-label {
  margin-bottom: 28px;
}

.spec-value {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.3;
}

.spec-value strong {
  color: var(--navy);
  font-size: 28px;
  font-weight: 780;
  letter-spacing: -0.04em;
}

.quality-statement {
  margin-top: 26px;
  padding: 28px 30px;
  display: grid;
  grid-template-columns: 0.65fr 1fr 2fr;
  align-items: center;
  gap: 30px;
  background: var(--violet-pale);
  border: 1px solid #d8d3fa;
  border-radius: var(--radius);
}

.quality-statement .card-label {
  margin: 0;
}

.quality-statement h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 780;
}

.quality-statement > p:last-child {
  margin: 0;
  font-size: 14px;
}

.store-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
}

.store-photo {

  overflow: hidden;
  background: #ececf4;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

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

.store-content h2 {
  max-width: 520px;
}

.contact-list {
  margin: 34px 0;
  font-style: normal;
  border-top: 1px solid var(--line);
}

.contact-list > div {
  padding: 16px 0;
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
}

.contact-list span {
  color: var(--violet);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-list strong {
  color: var(--navy);
  font-size: 14px;
  font-style: normal;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--violet);
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.closing-cta {
  padding: clamp(96px, 10vw, 146px) 0;
  color: #c2c2d7;
  background: var(--navy);
}

.closing-inner {
  max-width: 800px;
  text-align: center;
}

.closing-cta h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(40px, 5vw, 62px);
  font-weight: 760;
}

.closing-cta .closing-inner > p:not(.section-label) {
  max-width: 640px;
  margin: 0 auto 30px;
  font-size: 17px;
}

.site-footer {
  padding: 76px 0 24px;
  color: #9999b6;
  background: var(--navy);
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.8fr);
  gap: 55px;
}

.brand--footer {
  width: fit-content;
  display: block;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 6px;
}

.brand--footer img {
  width: 105px;
}

.footer-brand p {
  max-width: 275px;
  margin: 22px 0 0;
  font-size: 13px;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
}

.footer-column h2 {
  margin-bottom: 8px;
  color: var(--white);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column p {
  margin: 0;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--white);
}

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

.footer-bottom p {
  margin: 0;
}

.back-to-top {
  position: fixed;
  z-index: 90;
  width: 40px;
  height: 40px;
  right: 20px;
  bottom: 20px;
  display: grid;
  place-items: center;
  color: var(--violet);
  background: var(--white);
  border: 1px solid #b9b5df;
  border-radius: 7px;
  box-shadow: var(--shadow);
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.page-hero {
  padding: clamp(86px, 10vw, 138px) 0 clamp(80px, 9vw, 120px);
  background:
    radial-gradient(circle at 78% 20%, rgba(73, 53, 189, 0.12), transparent 30%),
    linear-gradient(180deg, #f8f7ff 0%, var(--white) 100%);
  border-bottom: 1px solid var(--line);
}

.page-hero-inner {
  max-width: 850px;
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 790;
}

.page-hero .hero-summary {
  max-width: 740px;
  margin: 0 0 30px;
}

.page-hero .hero-actions {
  justify-content: flex-start;
}

.breadcrumb {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  color: var(--violet);
}

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

.service-card {
  min-height: 410px;
  padding: clamp(32px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 6px 24px rgba(20, 20, 50, 0.055);
}

.service-card--rental {
  background: linear-gradient(145deg, #f2efff 0%, #ffffff 60%);
  border-color: #d8d2fb;
}

.service-card .item-number {
  margin-bottom: auto;
}

.service-card h3 {
  max-width: 420px;
  margin: 38px 0 16px;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 780;
}

.service-card > p:not(.item-number) {
  max-width: 500px;
  margin-bottom: 26px;
}

.text-link {
  margin-top: auto;
  display: inline-block;
  color: var(--violet);
  font-size: 13px;
  font-weight: 780;
}

.text-link::after {
  content: " \2192";
}

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

.use-case,
.benefit-card,
.faq-item {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.use-case h3,
.benefit-card h3,
.faq-item h3 {
  margin-bottom: 12px;
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.02em;
}

.use-case p,
.benefit-card p,
.faq-item p {
  margin: 0;
  font-size: 14px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.process-step {
  min-height: 260px;
  padding: 30px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.process-step h3 {
  margin: 46px 0 12px;
  font-size: 19px;
  font-weight: 760;
}

.process-step p:last-child {
  margin: 0;
  font-size: 14px;
}

.comparison {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparison-card {
  padding: clamp(32px, 5vw, 54px);
  background: var(--white);
}

.comparison-card:first-child {
  background: var(--violet-pale);
  border-right: 1px solid #d8d3fa;
}

.comparison-card h3 {
  margin-bottom: 18px;
  font-size: 28px;
  font-weight: 780;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-top: 1px solid rgba(72, 68, 95, 0.14);
  font-size: 14px;
}

.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 2px;
  color: var(--green);
  font-weight: 850;
}

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

.faq-item {
  padding: 30px;
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(44px, 8vw, 96px);
}

.quote-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
}

.quote-intro h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 790;
}

.quote-intro > p:not(.section-label) {
  font-size: 17px;
}

.quote-form {
  padding: clamp(28px, 5vw, 52px);
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: 14px;
}

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

.field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.field label,
.field legend {
  color: var(--navy);
  font-size: 12px;
  font-weight: 750;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  color: var(--navy);
  background: var(--white);
  border: 1px solid #cbcddd;
  border-radius: 6px;
  font: inherit;
  font-size: 14px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--violet);
  outline: 3px solid rgba(73, 53, 189, 0.12);
}

.form-note {
  margin: 20px 0;
  color: var(--muted);
  font-size: 12px;
}

.direct-contact {
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.direct-contact a {
  color: var(--navy);
  font-weight: 750;
}

.direct-contact a:hover,
.direct-contact a:focus-visible {
  color: var(--violet);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 520ms ease, transform 520ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 3px solid #a89cf5;
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .nav-toggle {
    position: relative;
    z-index: 102;
    flex: 0 0 44px;
    display: block;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(3) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] > span:nth-child(4) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    z-index: 101;
    inset: var(--header-height) 0 auto;
    height: calc(100svh - var(--header-height));
    padding: 36px max(20px, calc((100% - var(--container)) / 2));
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    background: var(--white);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: visibility 180ms, opacity 180ms ease, transform 180ms ease;
  }

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

  .site-nav > a:not(.button) {
    width: 100%;
    padding: 12px 0;
    color: var(--navy);
    font-size: 20px;
  }

  .site-nav .button {
    margin-top: 18px;
  }

  .site-nav > a[aria-current="page"]:not(.button) {
    box-shadow: none;
  }

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

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .quote-intro {
    position: static;
    max-width: 720px;
  }

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

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

  .client-logo:nth-child(even) {
    border-right: 0;
  }

  .client-logo:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .quality-statement {
    grid-template-columns: 1fr 1.4fr;
  }

  .quality-statement > p:last-child {
    grid-column: 1 / -1;
  }

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

  .store-photo {
    min-height: min(70vw, 650px);
  }

  .footer-grid {
    grid-template-columns: 1.3fr repeat(3, 1fr);
    gap: 30px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 0;
    padding: 88px 0 80px;
  }

  .hero h1 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust-card {
    min-height: 138px;
  }

  .trusted-by {
    padding: 44px 0 48px;
  }

  .section-intro {
    margin-bottom: 44px;
  }

  .section-intro h2,
  .store-content h2 {
    font-size: clamp(34px, 9.5vw, 48px);
  }

  .three-column-grid,
  .brand-grid,
  .service-grid,
  .use-case-grid,
  .benefit-grid,
  .faq-grid,
  .comparison {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 360px;
  }

  .comparison-card:first-child {
    border-right: 0;
    border-bottom: 1px solid #d8d3fa;
  }

  .three-column-grid {
    gap: 40px;
  }

  .brand-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .brand-card:last-child {
    border-bottom: 0;
  }

  .brand-card {
    min-height: 135px;
  }

  .output-note {
    align-items: flex-start;
    flex-direction: column;
  }

  .quality-statement {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .quality-statement > p:last-child {
    grid-column: auto;
  }

  .store-photo {
    min-height: 95vw;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 540px) {
  .brand img {
    width: 105px;
  }

  .hero-actions,
  .store-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button,
  .store-actions .button {
    width: 100%;
  }

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

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

  .process-step,
  .process-step:nth-child(2) {
    min-height: 220px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .field--full {
    grid-column: auto;
  }

  .client-logo {
    min-height: 124px;
    padding: 20px;
  }

  .contact-list > div {
    grid-template-columns: 62px 1fr;
  }

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

  .footer-brand {
    grid-column: auto;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
