:root {
  --bg: #fbfbfb;
  --paper: #ffffff;
  --text: #222222;
  --muted: rgba(34, 34, 34, 0.68);
  --primary: #ff1053;
  --primary-dark: #d60a45;
  --primary-soft: rgba(255, 16, 83, 0.10);
  --primary-line: rgba(255, 16, 83, 0.24);
  --line: rgba(34, 34, 34, 0.11);
  --line-strong: rgba(34, 34, 34, 0.16);
  --shadow-sm: 0 8px 22px rgba(34, 34, 34, 0.07);
  --shadow-md: 0 16px 42px rgba(34, 34, 34, 0.11);
  --shadow-pink: 0 18px 44px rgba(255, 16, 83, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --container: 1120px;
}

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

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

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;

  background:
          radial-gradient(1100px 700px at 8% 4%, rgba(255, 16, 83, 0.10), transparent 65%),
          radial-gradient(1000px 700px at 92% 12%, rgba(255, 16, 83, 0.08), transparent 66%),
          radial-gradient(900px 700px at 85% 92%, rgba(255, 16, 83, 0.05), transparent 65%),
          #fbfbfb;
}
img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

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

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

p {
  margin-bottom: 0;
}

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

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 251, 0.88);
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.nav-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  position: relative;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  object-fit: contain;
  display: block;
}

.brand-text {
  white-space: nowrap;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: clamp(18px, 2.5vw, 28px);
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  font-weight: 750;
  font-size: 0.94rem;
}

.desktop-nav a {
  position: relative;
  color: rgba(34, 34, 34, 0.80);
  transition: color 160ms ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 3px;
  border-radius: 999px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--text);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.menu-btn:hover {
  transform: translateY(-1px);
  border-color: var(--primary-line);
}

.menu-btn[aria-expanded="true"] {
  color: var(--bg);
  background: var(--primary);
  border-color: rgba(255, 16, 83, 0.34);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
}

.mobile-nav a:hover {
  background: var(--primary-soft);
}

/* Hero */

.hero {
  padding: 0 0 clamp(34px, 5vw, 56px);
}

.hero-inner {
  color: var(--bg);
  min-height: 520px;
  display: grid;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: clamp(44px, 7vw, 82px) clamp(20px, 5vw, 56px);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  background:
    radial-gradient(620px 360px at 78% 18%, rgba(255, 16, 83, 0.72), transparent 60%),
    linear-gradient(145deg, #222222 0%, #222222 52%, #ff1053 122%);
  box-shadow: var(--shadow-md);
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(34, 34, 34, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

h1 {
  margin-bottom: 12px;
  font-size: clamp(2.35rem, 6vw, 4.35rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
  text-wrap: balance;
}

h1 span {
  color: var(--primary);
}

.hero-sub {
  margin-bottom: 18px;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 750;
  color: rgba(251, 251, 251, 0.88);
}

.hero-text {
  max-width: 610px;
  margin-bottom: 24px;
  color: rgba(251, 251, 251, 0.78);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
}

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

.btn,
.contact-form__submit,
.phone-link,
.mail-pill {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1.1;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    filter 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.btn {
  padding: 14px 18px;
  border: 1px solid transparent;
  font-size: 0.96rem;
}

.btn-light,
.contact-form__submit,
.phone-link {
  color: var(--bg);
  background: var(--primary);
  border-color: rgba(255, 16, 83, 0.22);
}

.btn-work {
  color: var(--bg);
  background: #ff6a2a;
  border-color: transparent;
  box-shadow: 0 14px 32px rgba(255, 96, 42, 0.22);
}

.btn-light:hover,
.btn-work:hover,
.contact-form__submit:hover,
.phone-link:hover {
  transform: translateY(-2px);
  filter: brightness(0.97);
  box-shadow: var(--shadow-pink);
}

.btn-dark {
  color: var(--text);
  background: var(--paper);
  border-color: var(--line);
}

.btn:focus-visible,
.menu-btn:focus-visible,
.contact-form__submit:focus-visible,
.phone-link:focus-visible,
.mail-pill:focus-visible,
.slideshow__open:focus-visible,
.lightbox__close:focus-visible,
.lightbox__nav:focus-visible {
  outline: 3px solid rgba(255, 16, 83, 0.34);
  outline-offset: 3px;
}

.hero-benefits {
  display: grid;
  gap: 18px;
  align-items: center;
}

.hero-list,
.check-list,
.dot-list,
.small-list,
.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-list {
  display: grid;
  gap: 10px;
  color: rgba(251, 251, 251, 0.84);
}

.hero-list li,
.check-list li,
.dot-list li,
.small-list li {
  position: relative;
  padding-left: 26px;
}

.hero-list li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 900;
}

.hero-list li::before {
  color: #fbfbfb;
}

.dot-list li::before,
.small-list li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--primary);
}

.check-list,
.dot-list,
.small-list {
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.check-list strong {
  color: var(--text);
}

.why-reference {
  align-self: center;
  justify-self: end;
  width: min(100%, 520px);
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(150px, 0.95fr);
  align-items: stretch;
}

.why-reference::before {
  display: none;
}

.why-reference__media {
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: rgba(34, 34, 34, 0.04);
}

.why-reference__media img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: block;
  object-fit: cover;
}

.why-reference__content {
  display: grid;
  gap: 8px;
  padding: 16px;
}

.why-reference__eyebrow {
  margin: 0;
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.why-reference__content h3 {
  font-size: 1.12rem;
}

.why-reference__content h3,
.why-reference__content p {
  margin: 0;
}

.why-reference__content p:not(.why-reference__eyebrow) {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.why-reference__link {
  width: fit-content;
  margin-top: 4px;
  min-height: 40px;
  padding: 11px 14px;
  font-size: 0.88rem;
}

.hero-start {
  display: none;
}

.hero-start-img {
  display: block;
  filter: drop-shadow(0 18px 38px rgba(0, 0, 0, 0.28));
}

.contact-strip {
  margin-top: 18px;
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  color: var(--bg);
  background: rgba(34, 34, 34, 0.96);
  border: 1px solid rgba(255, 16, 83, 0.22);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-weight: 750;
}

/* Sections */

.section {
  padding: clamp(46px, 7vw, 76px) 0;
}

.section--accent {
  padding-top: clamp(42px, 6vw, 68px);
}

h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 34px;
  font-size: clamp(1.85rem, 3.3vw, 2.55rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 64px;
  height: 4px;
  border-radius: 999px;
  background: var(--primary);
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.split,
.two-col,
.reference-grid {
  display: grid;
  gap: clamp(22px, 4vw, 34px);
}

.steps {
  display: grid;
  gap: 14px;
  counter-reset: step;
}

.steps li {
  counter-increment: step;
  position: relative;
  padding: 18px 18px 18px 58px;
  border: 1px solid rgba(34, 34, 34, 0.10);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
    radial-gradient(220px 80px at 0% 0%, rgba(255, 16, 83, 0.08), transparent 70%);
  box-shadow: 0 8px 22px rgba(34, 34, 34, 0.055);
}

.steps li::before {
  content: counter(step);
  position: absolute;
  left: 18px;
  top: 50%;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 999px;
  color: var(--bg);
  background: var(--primary);
  box-shadow: 0 8px 18px rgba(255, 16, 83, 0.24);
  font-weight: 900;
  font-size: 0.84rem;
  line-height: 1;
}

.card {
  position: relative;
  overflow: hidden;
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-sm);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(520px 220px at 0% 0%, var(--primary-soft), transparent 66%);
}

.card > * {
  position: relative;
  z-index: 1;
}

/* References */

.reference-grid {
  align-items: stretch;
}

.reference-card {
  border-left: 5px solid rgba(255, 16, 83, 0.68);
}

.reference-card__header {
  display: grid;
  align-content: start;
  gap: 10px;
}

.reference-card__title,
.reference-card__desc,
.reference-card__meta {
  margin: 0;
}

.reference-card__desc,
.reference-card__meta,
.reference-card p,
.quote,
.contact-card p {
  color: var(--muted);
}

.reference-card__meta {
  font-size: 0.95rem;
}

.reference-card__content {
  display: grid;
  gap: 12px;
}

.reference-card__content > :last-child {
  margin-bottom: 0;
}

.reference-card__link {
  width: 100%;
  margin: 0 0 18px;
}

.quote {
  margin-top: 6px;
  padding: 16px;
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 16, 83, 0.07);
  font-weight: 650;
}

.reference-card__gallery {
  display: none;
}

.reference-card__slideshow {
  margin: 20px 0 16px;
}

/* Slideshow */

.slideshow__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.slideshow__viewport {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(34, 34, 34, 0.04);
}

.slideshow__track {
  display: flex;
  width: 100%;
  transform: translateX(0%);
  transition: transform 380ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.slideshow__slide {
  flex: 0 0 100%;
  margin: 0;
}

.slideshow__open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.slideshow__slide img {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  transform: scale(1.012);
  opacity: 0.92;
  transition: transform 380ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 260ms ease;
}

#alabarte-s1:checked ~ .slideshow__viewport .slideshow__slide:nth-child(1) img,
#alabarte-s2:checked ~ .slideshow__viewport .slideshow__slide:nth-child(2) img,
#alabarte-s3:checked ~ .slideshow__viewport .slideshow__slide:nth-child(3) img,
#weba-s1:checked ~ .slideshow__viewport .slideshow__slide:nth-child(1) img,
#weba-s2:checked ~ .slideshow__viewport .slideshow__slide:nth-child(2) img,
#weba-s3:checked ~ .slideshow__viewport .slideshow__slide:nth-child(3) img {
  transform: scale(1);
  opacity: 1;
}

.slideshow__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.slideshow__dot {
  width: 10px;
  height: 10px;
  border: 1px solid var(--primary-line);
  border-radius: 999px;
  background: rgba(255, 16, 83, 0.14);
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.slideshow__dot:hover {
  transform: scale(1.12);
}

#alabarte-s1:checked ~ .slideshow__viewport .slideshow__track,
#weba-s1:checked ~ .slideshow__viewport .slideshow__track {
  transform: translateX(0%);
}

#alabarte-s2:checked ~ .slideshow__viewport .slideshow__track,
#weba-s2:checked ~ .slideshow__viewport .slideshow__track {
  transform: translateX(-100%);
}

#alabarte-s3:checked ~ .slideshow__viewport .slideshow__track,
#weba-s3:checked ~ .slideshow__viewport .slideshow__track {
  transform: translateX(-200%);
}

#alabarte-s1:checked ~ .slideshow__dots label[for="alabarte-s1"],
#alabarte-s2:checked ~ .slideshow__dots label[for="alabarte-s2"],
#alabarte-s3:checked ~ .slideshow__dots label[for="alabarte-s3"],
#weba-s1:checked ~ .slideshow__dots label[for="weba-s1"],
#weba-s2:checked ~ .slideshow__dots label[for="weba-s2"],
#weba-s3:checked ~ .slideshow__dots label[for="weba-s3"] {
  background: var(--primary);
  border-color: var(--primary);
}

/* Contact */

.contact-card {
  scroll-margin-top: 96px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin: 18px 0 14px;
}

.contact-form__row {
  display: grid;
  gap: 7px;
}

.contact-form__label {
  font-size: 0.94rem;
  font-weight: 800;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  color: var(--text);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form__textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: rgba(255, 16, 83, 0.48);
  box-shadow: 0 0 0 4px rgba(255, 16, 83, 0.10);
}

.contact-form__submit {
  width: fit-content;
  padding: 12px 18px;
  border: 1px solid rgba(255, 16, 83, 0.24);
  cursor: pointer;
}

.contact-form__submit:disabled {
  opacity: 0.72;
  cursor: progress;
  transform: none;
  box-shadow: none;
}

.contact-form__status {
  min-height: 1.35em;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.contact-form__status[data-status="success"] {
  color: #0a7a2f;
}

.contact-form__status[data-status="error"] {
  color: #b00020;
}

.contact-form__privacy {
  margin: -4px 0 0;
  color: rgba(34, 34, 34, 0.56);
  font-size: 0.84rem;
  line-height: 1.45;
}

.contact-form__hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-card__fallback {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mail-pill {
  min-height: 44px;
  padding: 11px 14px;
  color: var(--bg);
  background: var(--text);
  border: 1px solid rgba(255, 16, 83, 0.32);
}

.mail-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.phone-link {
  padding: 11px 14px;
}

.phone-tedy {
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

/* Footer */

.site-footer {
  padding: clamp(34px, 5vw, 54px) 0 24px;
  color: rgba(251, 251, 251, 0.82);
  background: #222222;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-brand,
.footer-block,
.footer-privacy {
  min-width: 0;
}

.footer-brand__logo {
  margin-bottom: 14px;
  color: var(--bg);
}

.footer-brand p,
.footer-block p,
.footer-bottom {
  color: rgba(251, 251, 251, 0.68);
}

.footer-block {
  font-style: normal;
}

.footer-block h3 {
  margin-bottom: 12px;
  color: var(--bg);
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-block p,
.footer-brand p {
  margin: 0;
}

.footer-block p + p {
  margin-top: 7px;
}

.footer-block a {
  color: inherit;
  text-decoration: none;
}

.footer-block a:hover {
  color: var(--bg);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(251, 251, 251, 0.12);
  font-size: 0.86rem;
}

/* Lightbox */

body.is-lightbox-open {
  overflow: hidden;
}

.lightbox[hidden] {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.76);
  opacity: 0;
  transition: opacity 180ms ease;
}

.lightbox__dialog {
  position: absolute;
  inset: 0;
  margin: auto;
  width: min(1100px, calc(100% - 28px));
  max-height: min(86vh, 760px);
  display: grid;
  align-items: center;
  justify-items: center;
  outline: none;
  transform: scale(0.94);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.lightbox__figure {
  width: 100%;
  height: 100%;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-md);
  background: #111;
}

.lightbox__img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #0c0c0c;
}

.lightbox__caption {
  padding: 12px 14px;
  color: rgba(251, 251, 251, 0.86);
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lightbox__close,
.lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.84);
  color: var(--bg);
  cursor: pointer;
  transition: background-color 160ms ease, transform 160ms ease;
}

.lightbox__close {
  top:20px;
  right: 10px;
  width: 42px;
  height: 42px;
  font-size: 26px;
}

.lightbox__nav {
  top: 50%;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  font-size: 0;
}

.lightbox__nav::before {
  content: "";
  display: block;
  width: 11px;
  height: 11px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
}

.lightbox__nav--prev {
  left: 10px;
}

.lightbox__nav--prev::before {
  transform: translate(2px, 6px) rotate(-135deg);
}

.lightbox__nav--next {
  right: 10px;
}

.lightbox__nav--next::before {
  transform: translate(-2px, 6px) rotate(45deg);
}

.lightbox__close:hover,
.lightbox__nav:hover {
  background: rgba(17, 17, 17, 0.94);
}

.lightbox.is-open .lightbox__backdrop {
  opacity: 1;
}

.lightbox.is-open .lightbox__dialog {
  transform: scale(1);
  opacity: 1;
}

/* Responsive */

@media (min-width: 768px) {
  .menu-btn,
  .mobile-nav {
    display: none;
  }

  .desktop-nav {
    display: flex;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .contact-strip {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
  }

  .split,
  .two-col {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .reference-grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .reference-grid .right-stack {
    grid-column: 1 / -1;
    display: grid;
    gap: 24px;
  }

  .reference-card {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .reference-card__header {
    min-height: 292px;
  }

  .reference-card__slideshow {
    margin-top: 0;
  }

  .reference-card__content {
    align-content: start;
  }

  .hero-benefits {
    grid-template-columns: minmax(0, 1fr) 320px;
  }

  .hero-start {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .hero-start-img {
    width: min(360px, 100%);
  }

  .slideshow__slide img {
    aspect-ratio: 3 / 2;
  }

  .footer-grid {
    grid-template-columns: minmax(240px, 1.35fr) minmax(170px, 0.9fr) minmax(150px, 0.75fr) minmax(260px, 1.3fr);
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .reference-card__header {
    min-height: 274px;
  }
}

@media (min-width: 1120px) {
  .hero-benefits {
    grid-template-columns: minmax(0, 1fr) 430px;
  }

  .hero-start-img {
    width: 430px;
    transform: translateX(32px);
  }

  .reference-card__header {
    min-height: 258px;
  }
}

@media (max-width: 767px) {
  body::before {
    display: none;
  }

  .brand-text {
    font-size: 0.95rem;
  }

  .hero-inner {
    min-height: auto;
  }

  .btn,
  .contact-form__submit {
    width: 100%;
  }

  .why-reference {
    display: none;
  }

  .contact-strip {
    font-size: 0.94rem;
  }

  .section {
    padding-block: 44px;
  }

  .steps {
    gap: 12px;
  }

  .steps li {
    padding: 16px 16px 16px 52px;
  }

  .steps li::before {
    left: 16px;
    width: 24px;
    height: 24px;
    font-size: 0.78rem;
  }

  .reference-card__link,
  .contact-card__fallback > * {
    width: 100%;
  }

  .reference-card__slideshow {
    margin-top: 18px;
  }

  .lightbox__nav {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .hero-inner {
    padding-inline: 18px;
    border-radius: 0 0 22px 22px;
  }

  h1 {
    font-size: clamp(2.05rem, 13vw, 2.7rem);
  }

  h2::after {
    width: 52px;
  }
}

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

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

  .slideshow__slide img {
    transform: none;
    opacity: 1;
  }
}
/* =========================
   FULL WIDTH SECTIONS
   ========================= */

.section--why,
.section--band {
  position: relative;
  background: transparent;
  border-top: 1px solid rgba(34, 34, 34, 0.055);
  border-bottom: 1px solid rgba(34, 34, 34, 0.055);
}

.section--band {
  margin: 40px 0;
}
.section--band {
  margin: 40px 0;
}
.section--why,
.section--band {
  background: linear-gradient(
          180deg,
          rgba(255,16,83,0.04),
          rgba(255,16,83,0.02)
  );
}
