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

:root {
  --color-bg: #f8fafc;
  --color-surface: #ffffff;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-footer: #f1f5f9;
  --color-primary: #1e293b;
  --color-accent: #d97706;
  --color-accent-hover: #b45309;
  --color-accent-soft: #fef3c7;
  --color-carousel-bg: #383e47;
  --color-carousel-border: #4d5563;
  --radius: 12px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgb(15 23 42 / 0.06);
  --shadow-md: 0 8px 30px rgb(15 23 42 / 0.08);
  --header-h: 64px;
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --container: min(1120px, calc(100% - 2rem));
}

html {
  scroll-behavior: smooth;
}

@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;
  }
}

body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

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

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.icon {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border);
}

.btn--ghost:hover {
  border-color: var(--color-primary);
  background: var(--color-surface);
}

.btn--light {
  background: #fff;
  color: var(--color-primary);
  border-color: #fff;
}

.btn--light:hover {
  background: var(--color-accent-soft);
  border-color: var(--color-accent-soft);
}

.btn--lg {
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgb(255 255 255 / 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo__img {
  display: block;
  height: 2.75rem;
  width: auto;
  max-width: min(168px, 42vw);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__list a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: color 0.2s;
}

.nav__list a:hover {
  color: var(--color-primary);
}

.header__phone {
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  border-radius: 1px;
  transition: transform 0.2s, opacity 0.2s;
}

/* Hero */
.hero {
  padding: 1.5rem 0 2rem;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  min-height: 0;
}

.hero__content h1 {
  font-size: clamp(1.875rem, 3.4vw, 2.625rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: var(--color-primary);
  max-width: 14ch;
}

.hero__lead {
  margin-top: 1rem;
  font-size: 1.0625rem;
  color: var(--color-text-muted);
  max-width: 42ch;
}

.hero__price {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 1rem;
  padding: 0.625rem 1rem;
  font-size: 0.9375rem;
  color: var(--color-primary);
  background: var(--color-accent-soft);
  border: 1px solid rgb(217 119 6 / 0.2);
  border-radius: var(--radius);
}

.hero__price span {
  font-weight: 600;
  color: var(--color-accent-hover);
}

.hero__price strong {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-accent-hover);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.hero__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgb(30 41 59 / 0.08), transparent 50%);
  pointer-events: none;
}

.hero__visual img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

/* Slogan band */
.slogan-band {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
  text-align: center;
}

.slogan-band__text {
  font-size: clamp(1.375rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  line-height: 1.3;
}

.slogan-band__text em {
  font-style: italic;
  color: var(--color-accent-hover);
  line-height: 1.1;
  padding-bottom: 0.125rem;
}

/* Trust bar */
.trust-bar {
  background: var(--color-primary);
  color: #fff;
  padding: 2rem 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem 2rem;
}

.trust-bar__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-bar__item strong {
  font-size: 1rem;
  font-weight: 600;
}

.trust-bar__item span {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.72);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

.section__header {
  max-width: 36rem;
  margin-bottom: 3rem;
}

.section__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.section__header p {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
}

/* Services */
.services {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  padding: 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgb(217 119 6 / 0.25);
}

.service-card--featured {
  grid-column: span 2;
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}

.service-card--featured p {
  color: rgb(255 255 255 / 0.78);
}

.service-card--featured .service-card__icon {
  background: rgb(255 255 255 / 0.12);
  color: var(--color-accent);
}

.service-card__icon {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1.25rem;
  background: var(--color-accent-soft);
  color: var(--color-accent);
  border-radius: 10px;
}

.service-card__icon svg {
  width: 1.375rem;
  height: 1.375rem;
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.55;
}

/* Projects carousel */
.projects__title {
  max-width: 48rem;
  margin: 0 auto 2.5rem;
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--color-primary);
}

.carousel {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.carousel__viewport {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-carousel-border);
  background: var(--color-carousel-bg);
  box-shadow: 0 12px 40px rgb(15 23 42 / 0.18);
}

.carousel__track {
  position: relative;
  width: 100%;
  min-height: 420px;
  height: 580px;
  transition: height 0.35s ease;
}

.carousel__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}

.carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.carousel__slide img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.carousel__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.95);
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.15s;
}

.carousel__btn:hover {
  background: #fff;
}

.carousel__btn:active {
  transform: translateY(-50%) scale(0.96);
}

.carousel__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.carousel__btn--prev {
  left: -1.25rem;
}

.carousel__btn--next {
  right: -1.25rem;
}

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.carousel__dot {
  width: 0.625rem;
  height: 0.625rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.carousel__dot.is-active {
  background: var(--color-accent);
  transform: scale(1.15);
}

/* References strip — multi-item horizontal carousel */
.refs-strip {
  padding: 1.25rem 0 1.75rem;
  background: #383e47;
  border-block: 1px solid #4d5563;
}

.refs-strip__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.refs__title {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #f8fafc;
}

.refs__hint {
  margin: 0;
  font-size: 0.8125rem;
  color: #94a3b8;
  text-align: right;
}

.refs-strip__shell {
  position: relative;
  max-width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.refs-strip__viewport {
  overflow: hidden;
  border-radius: 12px;
  background: rgb(15 23 42 / 0.35);
}

.refs-strip__track {
  display: flex;
  gap: 0.65rem;
  width: max-content;
  padding: 0.65rem;
  will-change: transform;
}

.ref-thumb {
  flex: 0 0 auto;
  width: 132px;
  height: 176px;
  padding: 0;
  border: 1px solid rgb(255 255 255 / 0.08);
  border-radius: 8px;
  overflow: hidden;
  background: #1e293b;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ref-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.35);
}

.ref-thumb:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.ref-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.refs-strip__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgb(255 255 255 / 0.15);
  border-radius: 50%;
  background: rgb(255 255 255 / 0.92);
  color: var(--color-primary);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background 0.2s, transform 0.15s;
}

.refs-strip__btn:hover {
  background: #fff;
}

.refs-strip__btn:active {
  transform: translateY(-50%) scale(0.96);
}

.refs-strip__btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

.refs-strip__btn--prev {
  left: -0.35rem;
}

.refs-strip__btn--next {
  right: -0.35rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lightbox[hidden] {
  display: none;
}

.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgb(15 23 42 / 0.92);
}

.lightbox__figure {
  position: relative;
  z-index: 1;
  max-width: min(96vw, 1100px);
  max-height: 92vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.lightbox__figure img {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 2.5rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__caption {
  color: #e2e8f0;
  font-size: 0.875rem;
  text-align: center;
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.12);
  color: #fff;
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox__close:hover {
  background: rgb(255 255 255 / 0.22);
}

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.12);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s;
}

.lightbox__nav:hover {
  background: rgb(255 255 255 / 0.22);
}

.lightbox__nav svg {
  width: 1.35rem;
  height: 1.35rem;
}

.lightbox__nav--prev {
  left: 0.75rem;
}

.lightbox__nav--next {
  right: 0.75rem;
}

body.lightbox-open {
  overflow: hidden;
}

/* Why us */
.why {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why__content h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.why__content > p {
  margin-top: 1rem;
  color: var(--color-text-muted);
  max-width: 42ch;
}

.why__list {
  margin-top: 2rem;
  display: grid;
  gap: 1rem;
}

.why__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--color-text);
}

.why__list svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
}

.why__visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.why__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

/* Pricing band */
.pricing-band {
  background: var(--color-accent-soft);
  border-block: 1px solid rgb(217 119 6 / 0.15);
  padding: 3rem 0;
}

.pricing-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.pricing-band__label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-hover);
}

.pricing-band__price {
  margin-top: 0.375rem;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--color-primary);
}

.pricing-band__price strong {
  color: var(--color-accent-hover);
}

.pricing-band__note {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
}

.pricing-notes {
  margin-top: 1.5rem;
  padding: 1.1rem 1.25rem;
  background: rgb(255 255 255 / 0.55);
  border: 1px solid rgb(217 119 6 / 0.18);
  border-radius: var(--radius);
}

.pricing-notes__title {
  margin: 0 0 0.55rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent-hover);
}

.pricing-notes__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.pricing-notes__list li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--color-text);
}

.pricing-notes__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--color-accent);
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, #334155 100%);
  color: #fff;
  padding: 3.5rem 0;
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-band p {
  margin-top: 0.5rem;
  color: rgb(255 255 255 / 0.75);
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.5rem;
}

.contact__card {
  padding: 2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
}

.contact__card--main {
  background: var(--color-accent-soft);
  border-color: rgb(217 119 6 / 0.2);
}

.contact__card h2,
.contact__card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-primary);
}

.contact__card > p {
  margin-top: 0.75rem;
  color: var(--color-text-muted);
}

.contact__phone {
  display: inline-block;
  margin-top: 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--color-accent-hover);
  transition: color 0.2s;
}

.contact__phone:hover {
  color: var(--color-primary);
}

.contact__note {
  margin-top: 0.75rem !important;
  font-size: 0.875rem !important;
}

.contact__card ul {
  margin-top: 1.25rem;
  display: grid;
  gap: 0.625rem;
}

.contact__card li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

.contact__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

/* Footer */
.footer {
  background: var(--color-footer);
  color: var(--color-text);
  border-top: 1px solid var(--color-border);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer__logo {
  display: block;
  height: 3rem;
  width: auto;
  max-width: 180px;
}

.footer__brand span {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

.footer__phone {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--color-accent-hover);
  transition: color 0.2s;
}

.footer__phone:hover {
  color: var(--color-primary);
}

.footer__copy {
  width: 100%;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--color-text-muted);
}

/* Floating call button */
.fab-call {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 3.75rem;
  height: 3.75rem;
  background: var(--color-accent);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgb(217 119 6 / 0.45);
  transition: background 0.2s, transform 0.15s;
}

.fab-call svg {
  width: 1.5rem;
  height: 1.5rem;
}

.fab-call:hover {
  background: var(--color-accent-hover);
}

.fab-call:active {
  transform: scale(0.95);
}

/* Mobile nav */
@media (max-width: 900px) {
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

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

  .nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav__list a {
    display: block;
    padding: 0.875rem 0.5rem;
    border-bottom: 1px solid var(--color-border);
  }

  .menu-toggle {
    display: flex;
  }

  .menu-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header__phone span {
    display: none;
  }

  .header__phone {
    padding: 0.75rem;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 2rem;
  }

  .hero__content h1 {
    max-width: none;
    font-size: clamp(2rem, 4vw, 3rem);
  }

  .hero {
    padding: 1.5rem 0 2.5rem;
  }

  .hero__visual img {
    aspect-ratio: 4 / 3;
  }

  .trust-bar__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    text-align: center;
  }

  .pricing-band__inner {
    flex-direction: column;
    text-align: center;
  }

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

  .service-card--featured {
    grid-column: span 1;
  }

  .why {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .why__visual {
    order: -1;
  }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

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

  .section {
    padding: 3.5rem 0;
  }

  .carousel__slide {
    padding: 0.75rem 1rem;
  }

  .carousel__track {
    min-height: 300px;
    height: 420px;
  }

  .refs-strip__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .refs__hint {
    text-align: left;
  }

  .ref-thumb {
    width: 110px;
    height: 148px;
  }

  .refs-strip__btn--prev {
    left: 0.35rem;
  }

  .refs-strip__btn--next {
    right: 0.35rem;
  }

  .lightbox__nav--prev {
    left: 0.35rem;
  }

  .lightbox__nav--next {
    right: 0.35rem;
  }

  .carousel__btn--prev {
    left: 0.5rem;
  }

  .carousel__btn--next {
    right: 0.5rem;
  }

  .carousel__btn {
    width: 2.25rem;
    height: 2.25rem;
    background: rgb(255 255 255 / 0.92);
  }
}

@media (max-width: 480px) {
  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
  }

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

@media (min-width: 901px) {
  .header__phone span {
    display: inline;
  }
}
