@font-face {
  font-family: "TT Interfaces";
  src: url("../fonts/TTInterfaces-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Interfaces";
  src: url("../fonts/TTInterfaces-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TT Interfaces";
  src: url("../fonts/TTInterfaces-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #f7f7f5;
  --white: #ffffff;
  --text: #0c0c0c;
  --text-soft: rgba(12, 12, 12, 0.68);
  --line: #e5e5e0;
  --line-dark: #d7d7d2;
  --orange: #ff4d00;
  --header-height: 70px;
  --shell: min(1380px, calc(100vw - 32px));
  --transition: 220ms ease;
}

body {
  font-family: "TT Interfaces", sans-serif;
  background: var(--white);
  color: var(--text);
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

body.is-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  background: #f7f7f5;
  transition: opacity 500ms ease, visibility 500ms ease;
}

.loader-logo img {
  width: 108px;
  animation: loader-pulse 1.4s ease-in-out infinite;
}

[hidden],
.is-hidden {
  display: none !important;
  pointer-events: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  width: var(--shell);
  min-height: 70px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__mark {
  width: 34px;
  height: 34px;
}

.brand__copy {
  display: grid;
  gap: 2px;
}

.brand__copy strong {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1;
}

.brand__copy span {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  color: var(--text-soft);
}

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

.site-nav a {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  text-transform: lowercase;
  color: var(--text-soft);
  transition: color var(--transition);
}

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

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 15px;
}

.icon-button {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text);
  border-radius: 0;
}

.icon-button img {
  width: 22px;
  height: 18px;
  object-fit: contain;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  transition: transform var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button--primary {
  background: var(--orange);
  color: #fff;
}

.header-actions .button--primary {
  background: var(--text);
}

.button--light {
  background: #fff;
  color: var(--text);
}

.button--ghost {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  background: #fff;
  border: 1px solid var(--line);
}

.menu-toggle span {
  display: block;
  width: 16px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  grid-template-columns: minmax(70px, 1fr) minmax(0, calc(80% + 12px)) minmax(70px, 1fr);
  border-bottom: 1px solid var(--line);
}

.hero__rail {
  overflow: hidden;
}

.hero__rail--left {
  border-right: 1px solid var(--line);
}

.hero__rail--right {
  border-left: 1px solid var(--line);
}

.hero__rail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.hero__main {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hero__top-gap {
  height: 10px;
  flex-shrink: 0;
}

.hero__viewport {
  position: relative;
  flex: 1;
  min-height: 0;
  overflow: hidden;
}

.hero__media,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__video,
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__image {
  display: none;
}

.hero__overlay {
  background: linear-gradient(180deg, rgba(9, 9, 9, 0.36) 0%, rgba(9, 9, 9, 0.54) 100%);
}

.hero__overlay-shell {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 100px;
}

.hero__content {
  position: relative;
  width: min(1320px, calc(100% - 60px));
  max-width: 1320px;
  padding-inline: 30px;
}

.hero__eyebrow {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 500;
  color: #fff;
}

.hero h1 {
  margin-top: clamp(40px, 8vw, 100px);
  max-width: 680px;
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.14;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}

.hero__lede {
  margin-top: 30px;
  max-width: 650px;
  font-family: "Inter", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 50px;
}

.hero__stats {
  position: relative;
  width: min(1320px, calc(100% - 60px));
  max-width: 1320px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: 20px;
  margin-top: auto;
  margin-bottom: 32px;
}

.hero-stat {
  min-height: 133px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: #fff;
}

.hero-stat__value {
  display: block;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
}

.hero-stat__label {
  display: block;
  margin-top: 15px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.84);
}

.component-band {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.component-band__line {
  height: 75px;
  border-bottom: 1px solid var(--line);
}

.component-band__inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 75px;
  padding: 0 20px;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.component-band__number {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.component-band__dot {
  width: 5px;
  height: 5px;
  background: currentColor;
}

.component-band h2 {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}

.component-band--dark {
  background: #000;
}

.component-band--dark .component-band__line {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.component-band--dark .component-band__inner {
  border-left-color: rgba(255, 255, 255, 0.12);
  border-right-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.section-shell {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 30px;
}

.section-head {
  margin-bottom: 28px;
}

.section-head__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  margin-bottom: 18px;
}

.section-head__label img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.section-head__label span {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
}

.section-head__label--light {
  background: #fff;
  border: 1px solid var(--line);
}

.section-head__label--dark {
  background: #111111;
  color: #fff;
}

.section-head__copy-block {
  max-width: 900px;
}

.section-head--split {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
}

.section-head h3,
.faq-hero h3,
.contact-panel__content h3 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.section-head p,
.faq-hero p,
.contact-panel__content p {
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.96rem;
  color: var(--text-soft);
}

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

.portfolio-column {
  display: grid;
  gap: 40px;
}

.portfolio-card {
  display: block;
}

.portfolio-card img {
  width: 100%;
  display: block;
  filter: grayscale(1);
  transition: filter 300ms ease, transform 300ms ease;
}

.portfolio-card:hover img,
.portfolio-card:focus-visible img {
  filter: grayscale(0);
  transform: scale(1.01);
}

.portfolio-card p {
  margin-top: 14px;
  font-size: 1.05rem;
  line-height: 1.1;
}

.decor-line {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-top: 1px solid var(--line);
  height: 133px;
  overflow: hidden;
}

.decor-line img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.decor-line--dark {
  border-left-color: rgba(255, 255, 255, 0.12);
  border-right-color: rgba(255, 255, 255, 0.12);
  border-top-color: rgba(255, 255, 255, 0.12);
  background: #000;
}

.advantages-section,
.profile-section,
.reviews-section,
.faq-section,
.contact-section {
  padding-bottom: 56px;
}

.advantage-grid,
.showcase-grid,
.profile-grid,
.review-grid {
  display: grid;
  gap: 20px;
}

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

.advantage-card,
.profile-card,
.review-card {
  border: 1px solid var(--line);
  background: #fff;
}

.advantage-card {
  position: relative;
  min-height: 384px;
  overflow: hidden;
}

.advantage-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.advantage-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 34px 20px;
  text-align: center;
}

.advantage-card__icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  background: var(--orange);
}

.advantage-card__icon {
  width: 20px;
  height: 20px;
  animation: float-y 4.5s ease-in-out infinite;
}

.advantage-card h4,
.profile-card h4 {
  font-size: 1.28rem;
  line-height: 1.1;
  font-weight: 600;
}

.advantage-card p,
.profile-card p,
.review-card p,
.faq-item__content {
  margin-top: 10px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--text-soft);
}

.advantage-card h4,
.advantage-card p {
  max-width: 265px;
  text-align: center;
}

.showcase-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 20px;
}

.showcase-card {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.showcase-card__bg,
.showcase-card__frame,
.showcase-card__accent {
  position: absolute;
}

.showcase-card__bg {
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card__frame {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: auto;
  height: 90%;
}

.showcase-card__accent--left {
  left: 12%;
  bottom: 0;
  height: 52%;
}

.showcase-card__accent--right {
  right: 4%;
  top: 8%;
  height: 54%;
  animation: float-y 5.5s ease-in-out infinite;
  animation-delay: 0.8s;
}

.showcase-card__accent--center {
  left: 46%;
  top: 12%;
  transform: translateX(-50%);
  height: 58%;
  animation: float-y-center 5.5s ease-in-out infinite;
}

.showcase-card__accent--ui {
  right: 4%;
  bottom: 18%;
  height: 42%;
}

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

.profile-section {
  background: #000;
  color: #fff;
  padding-bottom: 0;
}

.profile-section .section-shell {
  border-left-color: rgba(255, 255, 255, 0.12);
  border-right-color: rgba(255, 255, 255, 0.12);
  background: #000;
  padding-top: 0;
}

.profile-section .section-head {
  position: relative;
  margin-left: -30px;
  margin-right: -30px;
  margin-bottom: 0;
  min-height: 220px;
  padding: 28px 30px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #000 url("../img/Line2.webp") center bottom / auto 95% no-repeat;
}

.profile-section .section-head h3,
.profile-section .section-head p {
  color: #fff;
}

.profile-section .section-head p {
  color: rgba(255, 255, 255, 0.62);
}

.profile-grid {
  padding-top: 16px;
}

.profile-card {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.profile-card__media {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 12px;
  overflow: hidden;
}

.profile-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.profile-card__body {
  display: flex;
  flex-direction: column;
  min-height: 180px;
  padding: 16px 20px 20px;
}

.profile-card h4,
.profile-card p {
  color: #fff;
}

.profile-card p {
  color: rgba(255, 255, 255, 0.6);
}

.profile-card__body a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
  padding-top: 12px;
  color: var(--orange);
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
}

.profile-card__body a span {
  font-size: 1.1rem;
  line-height: 1;
}

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

.reviews-section .section-head {
  position: relative;
  min-height: 180px;
  padding: 26px 0 30px;
  margin-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  background: url("../img/Line3.webp") center bottom / auto 95% no-repeat;
}

.review-card {
  border: 1px solid var(--line);
  background: #fff;
  min-height: 296px;
}

.review-card__date {
  min-height: 70px;
  padding: 16px 20px 12px;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.review-card__content {
  display: flex;
  flex-direction: column;
  min-height: calc(100% - 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.review-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin: 20px 20px 0;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.review-card__bar {
  width: 2px;
  height: 16px;
  background: var(--orange);
  flex-shrink: 0;
  margin-right: auto;
}

.review-card__meta strong {
  font-weight: 500;
}

.review-card__content > p {
  margin: 22px 20px 0;
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--text);
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
  padding: 25px 20px 20px;
}

.review-card__author img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.review-card__author strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 500;
}

.review-card__author span {
  display: block;
  margin-top: 4px;
  font-family: "Inter", sans-serif;
  font-size: 0.74rem;
  color: var(--text-soft);
}

.faq-hero {
  position: relative;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
  padding: 30px;
  text-align: center;
}

.faq-hero > div {
  position: relative;
  z-index: 1;
}

.faq-shell {
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}

.faq-list {
  max-width: 874px;
  margin: 0 auto;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 30px 0;
}

.faq-item {
  border-top: 1px solid var(--line);
  padding: 0 20px;
}

.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  padding: 16px 0;
  font-size: 1.1rem;
  line-height: 1.15;
  font-weight: 500;
}

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

.faq-item summary::after {
  content: "";
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  clip-path: polygon(100% 90%, 0 90%, 0 100%, 100% 100%, 100% 0, 90% 0, 90% 82%, 0 82%, 0 90%, 100% 90%);
  background: var(--orange);
  transition: transform 300ms ease, background-color 300ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(-90deg);
  background: var(--text);
}

.faq-item__content {
  padding: 0 0 16px;
}

.contact-panel {
  position: relative;
  min-height: 360px;
  border: 1px solid var(--line);
  overflow: hidden;
  color: #fff;
}

.contact-panel__bg,
.contact-panel__overlay {
  position: absolute;
  inset: 0;
}

.contact-panel__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-panel__overlay {
  background: rgba(8, 8, 8, 0.46);
}

.contact-panel__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 58px 30px;
}

.contact-panel__content p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.site-footer {
  padding: 0 0 40px;
}

.site-footer__inner {
  display: grid;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  color: var(--text-soft);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-stagger] > * {
  transition-delay: calc(var(--stagger-order, 0) * 70ms);
}

@keyframes loader-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.85;
    transform: scale(1.06);
  }
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes float-y-center {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@media (max-width: 1180px) {
  .portfolio-grid,
  .advantage-grid,
  .profile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .showcase-grid,
  .review-grid,
  .hero__stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .site-header__inner {
    grid-template-columns: auto auto;
  }

  .menu-toggle {
    display: inline-block;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    border: 1px solid var(--line);
    background: #fff;
  }

  .site-nav.is-open {
    display: flex;
  }

  .header-actions {
    display: none;
  }

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

  .hero__rail {
    display: none;
  }

  .hero__overlay-shell {
    padding-top: 72px;
  }

  .hero__content,
  .hero__stats {
    width: min(100%, calc(100% - 32px));
    padding-inline: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --shell: min(100vw - 24px, 100%);
    --header-height: 58px;
  }

  .hero__video {
    display: none;
  }

  .hero__image {
    display: block;
  }

  .hero__stats,
  .portfolio-grid,
  .advantage-grid,
  .showcase-grid,
  .profile-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .hero__overlay-shell {
    padding-top: 56px;
  }

  .hero__content {
    width: calc(100% - 32px);
  }

  .hero h1 {
    margin-top: 30px;
    max-width: 95%;
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .hero__lede {
    margin-top: 18px;
    max-width: 95%;
    font-size: 1rem;
  }

  .hero__actions {
    margin-top: 28px;
  }

  .hero__stats {
    width: calc(100% - 32px);
    gap: 10px;
    margin-bottom: 16px;
    padding-inline: 0;
  }

  .hero-stat {
    min-height: 92px;
    padding: 18px 16px;
  }

  .section-shell,
  .faq-hero,
  .contact-panel__content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .profile-section .section-head {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .profile-card__media {
    height: 160px;
  }

  .section-head--split,
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .component-band__inner {
    padding-inline: 12px;
  }

  .faq-list {
    border-left: 0;
    border-right: 0;
  }
}

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

.site-header,
main {
  transition: opacity 220ms ease, transform 220ms ease;
}

body.is-locale-swapping .site-header,
body.is-locale-swapping main {
  opacity: 0.55;
  transform: translateY(6px);
}

body.has-promo-open {
  overflow: hidden;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.locale-switch {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background: var(--text);
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  border-radius: 0;
}

.locale-switch__divider,
.locale-switch__next {
  color: rgba(255, 255, 255, 0.6);
}

.button--secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
}

.page-hero {
  padding: 96px 0 56px;
  border-bottom: 1px solid var(--line);
}

.page-hero__eyebrow,
.lead-section__eyebrow,
.calculator-section__eyebrow {
  margin: 0 0 14px;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-soft);
}

.page-hero h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.98;
}

.page-hero p:last-child {
  max-width: 640px;
  margin: 22px 0 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.page-section {
  padding: 56px 0;
}

.page-section--dark {
  background: #0c0c0c;
  color: #fff;
}

.utility-grid,
.case-grid,
.step-grid,
.pricing-grid,
.article-grid {
  display: grid;
  gap: 20px;
}

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

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

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

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

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

.utility-card,
.case-card,
.step-card,
.pricing-card,
.article-card {
  border: 1px solid var(--line);
  background: #fff;
}

.utility-card,
.pricing-card,
.article-card,
.step-card {
  padding: 24px;
}

.utility-card--dark {
  background: #111;
  border-color: rgba(255, 255, 255, 0.12);
}

.utility-card--dark h3,
.utility-card--dark p {
  color: #fff;
}

.utility-card img,
.case-card img {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.utility-card h3,
.case-card h3,
.step-card h3,
.pricing-card h3,
.article-card h3 {
  margin: 18px 0 10px;
  font-size: 1.15rem;
}

.utility-card p,
.case-card p,
.step-card p,
.pricing-card li,
.article-card p,
.text-stack p {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.page-section--dark .utility-card p {
  color: rgba(255, 255, 255, 0.72);
}

.case-card {
  display: block;
  overflow: hidden;
}

.case-card div {
  padding: 20px;
}

.case-card--detail {
  background: #fff;
}

.step-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  color: var(--text-soft);
}

.pricing-card strong {
  display: block;
  margin: 0 0 16px;
  font-size: 1.8rem;
}

.pricing-card ul {
  display: grid;
  gap: 10px;
  padding-left: 18px;
  margin: 0;
}

.text-stack {
  max-width: 720px;
  display: grid;
  gap: 18px;
}

.lead-section {
  padding: 56px 0 72px;
}

.lead-section__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 24px;
  align-items: start;
}

.lead-section__copy {
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.lead-section__copy h3 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.lead-section__copy p:last-child {
  margin: 0;
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: var(--text-soft);
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

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

.field span,
.calculator-addons legend {
  font-family: "Inter", sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
}

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

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

.lead-form__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.form-status {
  min-height: 20px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.86rem;
}

.form-status.is-success {
  color: #117d49;
}

.form-status.is-error {
  color: #c33812;
}

.calculator-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  padding: 40px 0 56px;
}

.calculator-section__copy h3 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
}

.calculator-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  background: #fff;
}

.calculator-addons {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 0;
  border: 0;
}

.calculator-addons label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.94rem;
}

.calculator-result {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.calculator-result span {
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.calculator-result strong {
  margin-right: auto;
  font-size: 1.35rem;
}

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 24px;
  pointer-events: none;
}

.promo-modal:not([hidden]) {
  pointer-events: auto;
}

.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 12, 12, 0.54);
  backdrop-filter: blur(8px);
  pointer-events: auto;
}

.promo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, calc(100vw - 32px));
  margin: 0;
  padding: 32px;
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(12, 12, 12, 0.02), rgba(12, 12, 12, 0) 56%),
    url("../img/Line2.webp") right top / 180px auto no-repeat,
    #fff;
  color: var(--text);
  box-shadow: 0 24px 50px rgba(12, 12, 12, 0.12);
  pointer-events: auto;
}

.promo-modal__dialog::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 68px;
  height: 3px;
  background: var(--orange);
}

.promo-modal__close {
  position: absolute;
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  transform: rotate(45deg);
}

.promo-modal__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 0 0 14px;
  padding: 0 10px;
  border: 1px solid rgba(255, 77, 0, 0.18);
  background: rgba(255, 77, 0, 0.06);
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.promo-modal h3 {
  max-width: 420px;
  margin: 0 0 14px;
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  line-height: 0.96;
}

.promo-modal p {
  max-width: 460px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.94rem;
  line-height: 1.72;
  color: var(--text-soft);
}

.promo-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.promo-modal__actions .button--primary {
  background: var(--text);
}

body.has-promo-open {
  overflow: hidden;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 140;
  pointer-events: auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
}

.cookie-banner__copy strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-banner__copy p {
  max-width: 720px;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  position: relative;
  z-index: 2;
}

.footer-legal {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 32px;
  padding-top: 28px;
  margin-top: 28px;
  border-top: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-soft);
}

.footer-legal dt {
  margin-bottom: 4px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(12, 12, 12, 0.45);
}

.footer-legal dd {
  margin: 0;
  color: var(--text);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
}

@media (max-width: 1100px) {
  .utility-grid--four,
  .step-grid,
  .pricing-grid,
  .article-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .site-header__inner {
    grid-template-columns: auto auto 1fr;
    gap: 12px;
  }

  .header-actions {
    display: inline-flex;
    justify-self: end;
    gap: 8px;
  }

  .header-actions .button--primary {
    display: none;
  }

  .calculator-section,
  .lead-section__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-hero {
    padding: 72px 0 40px;
  }

  .case-grid,
  .utility-grid--four,
  .step-grid,
  .pricing-grid,
  .article-grid,
  .lead-form,
  .calculator-panel {
    grid-template-columns: 1fr;
  }

  .lead-form,
  .calculator-panel,
  .lead-section__copy,
  .promo-modal__dialog {
    padding: 20px;
  }

  .lead-form__actions,
  .calculator-result,
  .cookie-banner,
  .promo-modal__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .calculator-result strong {
    margin-right: 0;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .locale-switch {
    width: 38px;
    height: 38px;
    font-size: 0.72rem;
  }

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

html.has-locale-transition .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: none;
}

html.has-locale-transition .site-header,
html.has-locale-transition main,
html.has-locale-transition .site-footer,
html.has-locale-transition .cookie-banner,
html.has-locale-transition .promo-modal {
  opacity: 0.18;
  transform: translateY(14px);
}

.site-header,
main,
.site-footer,
.cookie-banner,
.promo-modal {
  transition: opacity 260ms ease, transform 260ms ease;
}

body.is-locale-swapping .site-header,
body.is-locale-swapping main,
body.is-locale-swapping .site-footer,
body.is-locale-swapping .cookie-banner,
body.is-locale-swapping .promo-modal,
body.is-transition-enter .site-header,
body.is-transition-enter main,
body.is-transition-enter .site-footer,
body.is-transition-enter .cookie-banner,
body.is-transition-enter .promo-modal {
  opacity: 0.18;
  transform: translateY(14px);
}

.legal-page {
  padding-bottom: 72px;
}

.legal-toc {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 0 40px;
  border-bottom: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
}

.legal-toc a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  color: var(--text-soft);
}

.legal-toc a:hover {
  color: var(--text);
  border-color: var(--text);
}

.legal-section {
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}

.legal-section h2 {
  margin-bottom: 14px;
  font-size: 1.35rem;
}

.legal-section p,
.legal-section li {
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-soft);
}

.legal-section ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-disclaimer {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid var(--line);
  background: #fafaf8;
  font-family: "Inter", sans-serif;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.service-detail-grid {
  display: grid;
  gap: 24px;
}

.service-detail-card {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.service-detail-card--dark {
  background: #0c0c0c;
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

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

.service-detail-card__price {
  display: inline-block;
  margin: 12px 0 16px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  font-family: "Inter", sans-serif;
  font-size: 0.82rem;
}

.service-detail-card--dark .service-detail-card__price {
  border-color: rgba(255, 255, 255, 0.2);
}

.service-detail-card ul {
  margin: 0;
  padding-left: 18px;
  font-family: "Inter", sans-serif;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--text-soft);
}

.service-detail-card--dark ul,
.service-detail-card--dark p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-panels {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 24px;
  padding-bottom: 40px;
}

.contact-panel-card {
  padding: 24px;
  border: 1px solid var(--line);
  background: #fff;
}

.contact-panel-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-panel-card dt {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.contact-panel-card dd {
  margin: 4px 0 0;
}

.contact-mini-faq {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

@media (prefers-reduced-motion: reduce) {
  .advantage-card__icon,
  .showcase-card__accent--center,
  .showcase-card__accent--right {
    animation: none;
  }
}

@media (max-width: 900px) {
  .service-detail-card,
  .contact-panels {
    grid-template-columns: 1fr;
  }
}
