:root {
  --bg: #ffffff;
  --bg-soft: rgba(248, 250, 252, 0.88);
  --text: #1b2330;
  --text-soft: #627082;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.34);
  --line-dark: rgba(27, 35, 48, 0.1);
  --glass: rgba(255, 255, 255, 0.18);
  --glass-strong: rgba(255, 255, 255, 0.3);
  --glass-dark: rgba(17, 23, 31, 0.58);
  --accent: #cb7729;
  --accent-strong: #b66216;
  --shadow: 0 24px 80px rgba(17, 23, 31, 0.14);
  --shadow-soft: 0 16px 40px rgba(17, 23, 31, 0.1);
  --radius-xs: 18px;
  --radius-sm: 24px;
  --radius: 32px;
  --radius-lg: 42px;
  --container: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 0% 0%, rgba(226, 234, 244, 0.52), transparent 24%),
    radial-gradient(circle at 100% 0%, rgba(203, 119, 41, 0.1), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(93, 121, 163, 0.08), transparent 28%),
    linear-gradient(180deg, #ffffff, #f8fafc 100%);
  line-height: 1.55;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

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

.splash {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.splash.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash__content {
  text-align: center;
}

.splash__title {
  display: block;
  font-family: "Prata", serif;
  font-size: clamp(44px, 9vw, 86px);
  letter-spacing: 0.08em;
}

.splash__subtitle {
  display: block;
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-shell {
  overflow: clip;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  padding: 12px 0;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(27, 35, 48, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-family: "Prata", serif;
  font-size: clamp(22px, 3.2vw, 31px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand span {
  color: var(--text-soft);
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(27, 35, 48, 0.06);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
}

.main-nav a,
.header-phone {
  padding: 12px 16px;
  border-radius: 999px;
  transition: 0.3s ease;
}

.main-nav a {
  color: var(--text-soft);
  font-size: 14px;
}

.main-nav a:hover,
.main-nav a.is-active,
.header-phone:hover {
  background: rgba(17, 23, 31, 0.78);
  color: #fff;
}

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

.header-phone {
  display: inline-flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(27, 35, 48, 0.06);
  backdrop-filter: blur(16px);
}

.header-phone span {
  font-size: 12px;
  color: inherit;
  opacity: 0.68;
}

.header-phone strong {
  font-size: 16px;
}

.menu-toggle {
  display: none;
  width: 52px;
  height: 52px;
  border-radius: 20px;
  background: rgba(17, 23, 31, 0.84);
  padding: 14px 12px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 4px 0;
}

.mobile-nav {
  display: none;
  padding: 0 16px 16px;
  gap: 8px;
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(16px);
}

.floating-contacts {
  display: none;
}

.float-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  padding: 0;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(27, 35, 48, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  transition: transform 0.34s ease, background 0.34s ease, box-shadow 0.34s ease, border-color 0.34s ease;
}

.float-action::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.44) 50%, transparent 80%);
  transform: translateX(-130%);
  transition: transform 0.55s ease;
}

.float-action:hover {
  transform: translateY(-4px) scale(1.06);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(203, 119, 41, 0.28);
  box-shadow: 0 26px 56px rgba(17, 23, 31, 0.16);
}

.float-action:hover::before {
  transform: translateX(130%);
}

.float-action img {
  width: 28px;
  height: 28px;
  object-fit: contain;
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.float-action span {
  display: none;
}

.float-action--phone {
  background: rgba(203, 119, 41, 0.62);
  color: #fff;
}

.float-action--phone::after {
  content: "✆";
  position: relative;
  z-index: 1;
  font-size: 28px;
  line-height: 1;
  font-weight: 700;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  padding: 0 28px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.45) 50%, transparent 80%);
  transform: translateX(-140%);
  transition: transform 0.6s ease;
}

.button:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 22px 44px rgba(17, 23, 31, 0.14);
}

.button:hover::before {
  transform: translateX(140%);
}

.button--primary {
  color: #fff;
  background: rgba(203, 119, 41, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(20px);
  box-shadow: 0 18px 40px rgba(182, 98, 22, 0.26);
}

.button--primary:hover {
  background: rgba(203, 119, 41, 0.92);
  border-color: rgba(255, 255, 255, 0.42);
  box-shadow: 0 26px 52px rgba(182, 98, 22, 0.34);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.36);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-soft);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.28);
  border-color: rgba(255, 255, 255, 0.56);
}

.hero {
  padding: 70px 0 38px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  gap: 36px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(16px);
  color: var(--text-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.section-head h2,
.impact-copy h2,
.reviews-head h2,
.modal-dialog h2,
.thanks-card h1 {
  margin: 22px 0 0;
  font-family: "Prata", serif;
  font-size: clamp(44px, 6.5vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-head h2,
.impact-copy h2,
.reviews-head h2,
.modal-dialog h2,
.thanks-card h1 {
  font-size: clamp(34px, 5vw, 60px);
}

.hero-text,
.section-head p,
.impact-copy p,
.timeline-card p,
.glass-card p,
.review-card p,
.lead-form .form-note,
.thanks-card p {
  color: var(--text-soft);
}

.hero-text {
  margin: 18px 0 0;
  font-size: 18px;
  max-width: 60ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-points li::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), #ffbe74);
  box-shadow: 0 0 0 6px rgba(203, 119, 41, 0.12);
}

.hero-points--checklist li {
  align-items: flex-start;
}

.hero-points--checklist li::before {
  content: "✔";
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), #ffbe74);
  box-shadow: 0 10px 24px rgba(203, 119, 41, 0.22);
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.glass-card,
.review-card,
.lead-form,
.contact-card,
.thanks-card,
.timeline-card,
.stat-card,
.floating-panel {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 35, 48, 0.06);
  box-shadow: 0 20px 54px rgba(17, 23, 31, 0.08);
  backdrop-filter: blur(18px);
}

.hero-card {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--main {
  inset: 0 84px 70px 0;
}

.hero-card--main img {
  object-position: center 24%;
}

.hero-card--accent {
  width: 42%;
  height: 44%;
  right: 0;
  bottom: 0;
  border: 10px solid rgba(255, 255, 255, 0.32);
}

.hero-badge {
  position: absolute;
  left: 20px;
  bottom: 18px;
  padding: 20px 24px;
  border-radius: 24px;
  color: #fff;
  background: rgba(17, 23, 31, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(20px);
}

.hero-badge strong {
  display: block;
  font-family: "Prata", serif;
  font-size: 30px;
}

.hero-badge span {
  display: block;
  margin-top: 6px;
  opacity: 0.86;
}

.stats-band,
.section {
  padding: 34px 0 74px;
}

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

.stat-card {
  position: relative;
  min-height: 230px;
  padding: 26px 24px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease;
}

.stat-card::after {
  content: attr(data-number);
  position: absolute;
  right: 18px;
  bottom: -16px;
  font-family: "Prata", serif;
  font-size: 140px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.46);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.26);
}

.stat-card h3 {
  margin: 0;
  font-family: "Prata", serif;
  font-size: 30px;
}

.stat-card p {
  margin: 18px 0 0;
  font-size: 17px;
  color: var(--text-soft);
}

.section-head p,
.impact-copy p,
.reviews-head p {
  margin-top: 16px;
  font-size: 18px;
  max-width: 70ch;
}

.slider-shell {
  position: relative;
  margin-top: 30px;
  padding-inline: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
  overflow: visible;
}

.slider-track,
.work-track {
  display: grid;
  grid-auto-flow: column;
  gap: 18px;
  overflow: hidden;
  padding: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.slider-track {
  grid-auto-columns: 100%;
}

.work-track {
  grid-auto-columns: calc((100% - 54px) / 4);
}

.slider-track::-webkit-scrollbar,
.work-track::-webkit-scrollbar {
  display: none;
}

.showcase-card {
  position: relative;
  min-height: 560px;
  padding: 42px;
  border-radius: 40px;
  overflow: hidden;
  color: #fff;
  scroll-snap-align: start;
  box-shadow: none;
  background: transparent;
  transition: transform 0.38s ease, filter 0.38s ease;
}

.showcase-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8, 10, 16, 0.9) 0%, rgba(8, 10, 16, 0.72) 28%, rgba(8, 10, 16, 0.34) 52%, rgba(8, 10, 16, 0.12) 72%, rgba(8, 10, 16, 0.02) 100%),
    var(--card-image);
  background-position: left center, center center;
  background-size: auto, cover;
  background-repeat: no-repeat, no-repeat;
  transform: scale(1.01);
  filter: saturate(1.02) contrast(1.02);
  transition: transform 0.5s ease, filter 0.5s ease;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.12), transparent 70%);
  transform: translateX(-140%);
  transition: transform 0.7s ease;
}

.showcase-card:hover::after {
  transform: translateX(140%);
}

.showcase-card:hover {
  transform: translateY(-10px);
}

.showcase-card:hover::before {
  transform: scale(1.05);
  filter: saturate(1.06) contrast(1.04);
}

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

.showcase-card .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.94);
}

.showcase-card h3 {
  margin: 26px 0 0;
  max-width: 8.5ch;
  font-family: "Prata", serif;
  font-size: clamp(46px, 5vw, 72px);
  line-height: 1.04;
}

.showcase-card p {
  margin: 18px 0 0;
  max-width: 40ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 20px;
}

.showcase-card .button {
  position: absolute;
  left: 42px;
  bottom: 42px;
}

.slider-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(27, 35, 48, 0.08);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow-soft);
  transform: translateY(-50%);
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.slider-nav:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 40px rgba(17, 23, 31, 0.14);
}

.slider-nav--prev {
  left: -78px;
}

.slider-nav--next {
  right: -78px;
}

.before-after {
  margin-top: 30px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(27, 35, 48, 0.06);
  box-shadow: 0 20px 54px rgba(17, 23, 31, 0.08);
  backdrop-filter: blur(18px);
}

.before-after__frame {
  --split: 50%;
  position: relative;
  min-height: 540px;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
  background: #10141b;
}

.before-after__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after__overlay {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--split);
  overflow: hidden;
}

.before-after__overlay .before-after__image {
  width: min(100vw, var(--container));
  max-width: none;
}

.before-after__labels {
  position: absolute;
  inset: 24px 24px auto;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  pointer-events: none;
}

.before-after__labels span {
  padding: 10px 16px;
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: rgba(17, 23, 31, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.before-after__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 2px;
  background: rgba(255, 255, 255, 0.88);
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: auto;
  touch-action: none;
  cursor: ew-resize;
}

.before-after__divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 40px rgba(17, 23, 31, 0.18);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.before-after__divider span::before,
.before-after__divider span::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 2px solid var(--text);
  border-right: 2px solid var(--text);
}

.before-after__divider span::before {
  left: 18px;
  transform: translateY(-50%) rotate(-135deg);
}

.before-after__divider span::after {
  right: 18px;
  transform: translateY(-50%) rotate(45deg);
}

.before-after__divider:hover span,
.before-after__divider.is-dragging span {
  transform: translate(-50%, -50%) scale(1.05);
  box-shadow: 0 22px 48px rgba(17, 23, 31, 0.22);
}

.before-after__control {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.before-after__control span {
  color: var(--text-soft);
  font-size: 14px;
  font-weight: 700;
}

.before-after__control input[type="range"] {
  width: 100%;
  accent-color: var(--accent);
}

.impact {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #10141b;
}

.impact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(5, 7, 12, 0.9) 0%, rgba(5, 7, 12, 0.74) 34%, rgba(5, 7, 12, 0.58) 100%),
    var(--impact-image);
  background-position: center center, center center;
  background-size: auto, cover;
  background-repeat: no-repeat, no-repeat;
  filter: saturate(1) contrast(1.05);
}

.impact .container {
  position: relative;
}

.impact .eyebrow {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
}

.impact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
}

.impact-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.impact-list {
  display: grid;
  gap: 16px;
}

.impact-item {
  position: relative;
  padding: 30px 30px 30px 132px;
  border-radius: 34px;
  overflow: hidden;
  background: rgba(10, 14, 20, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(8px);
  transition: transform 0.34s ease, background 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

.impact-item:hover {
  transform: translateX(-10px) scale(1.01);
  background: rgba(10, 14, 20, 0.74);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.22);
}

.impact-number {
  position: absolute;
  left: 28px;
  top: 18px;
  font-family: "Prata", serif;
  font-size: 76px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.96);
  -webkit-text-stroke: 0 transparent;
}

.impact-item p {
  margin: 0;
  font-size: 17px;
  color: rgba(255, 255, 255, 0.78);
}

.work-card {
  min-width: 0;
  border-radius: 32px;
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: none;
  background: #fff;
  border: 1px solid rgba(27, 35, 48, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.work-card:hover {
  transform: translateY(-10px);
  border-color: rgba(203, 119, 41, 0.2);
  box-shadow: 0 22px 48px rgba(17, 23, 31, 0.12);
}

.work-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.work-card__body {
  padding: 18px 18px 20px;
}

.work-card h3 {
  margin: 0;
  font-size: 18px;
}

.work-card p {
  margin: 8px 0 0;
  color: var(--text-soft);
}

.reviews-grid,
.reviews-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 20px;
  margin-top: 30px;
  overflow: hidden;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
  border-radius: 0;
  backdrop-filter: none;
}

.reviews-grid::-webkit-scrollbar,
.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  position: relative;
  min-height: 360px;
  padding: 28px;
  border-radius: 34px;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 252, 0.94));
  border: 1px solid rgba(27, 35, 48, 0.06);
  overflow: hidden;
  scroll-snap-align: start;
  box-shadow: none;
}

.review-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 250, 252, 1));
  border-color: rgba(203, 119, 41, 0.18);
  box-shadow: 0 22px 48px rgba(17, 23, 31, 0.12);
}

.review-card::after {
  content: "“";
  position: absolute;
  right: 24px;
  bottom: -34px;
  font-family: "Prata", serif;
  font-size: 210px;
  line-height: 1;
  color: rgba(27, 35, 48, 0.05);
  pointer-events: none;
}

.review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review-top img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(203, 119, 41, 0.16);
  color: var(--accent-strong);
  font-weight: 800;
}

.review-card h3 {
  margin: 22px 0 0;
  font-family: "Prata", serif;
  font-size: 28px;
  line-height: 1.22;
}

.review-card p {
  position: relative;
  z-index: 1;
  margin: 16px 0 0;
  font-size: 16px;
}

.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

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

.timeline-card {
  position: relative;
  min-height: 340px;
  padding: 30px 28px 28px;
  border-radius: 34px;
  overflow: hidden;
  transition: transform 0.35s ease, background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  box-shadow: none;
}

.timeline-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(203, 119, 41, 0.16);
  box-shadow: 0 22px 48px rgba(17, 23, 31, 0.1);
}

.timeline-card__digit {
  position: absolute;
  right: 20px;
  top: 8px;
  font-family: "Prata", serif;
  font-size: 132px;
  line-height: 1;
  color: rgba(27, 35, 48, 0.12);
  -webkit-text-stroke: 0 transparent;
  pointer-events: none;
}

.timeline-card h3 {
  position: relative;
  z-index: 1;
  margin: 120px 0 0;
  font-family: "Prata", serif;
  font-size: 26px;
}

.timeline-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  max-width: 17ch;
  font-size: 17px;
}

.form-layout,
.contacts-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 22px;
  align-items: start;
}

.lead-form,
.contact-card,
.thanks-card,
.modal-dialog {
  padding: 28px;
  border-radius: 34px;
}

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

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--text-soft);
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  padding: 17px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.46);
  border: 1px solid rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(14px);
  color: var(--text);
  outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(203, 119, 41, 0.48);
  box-shadow: 0 0 0 4px rgba(203, 119, 41, 0.12);
}

.contact-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 16px;
  margin: 24px 0 0;
}

.contact-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.contact-list span {
  color: var(--text-soft);
}

.contact-list a {
  font-weight: 800;
}

.map-frame {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.map-frame iframe {
  width: 100%;
  min-height: 540px;
  border: 0;
  display: block;
}

.site-footer {
  padding: 16px 0 42px;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  border-radius: 34px;
  background: rgba(17, 23, 31, 0.9);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(16px);
}

.footer-row p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 120;
}

.modal.is-open,
.lightbox.is-open {
  display: block;
}

.modal-backdrop,
.lightbox {
  background: rgba(9, 12, 18, 0.72);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  width: min(580px, calc(100% - 24px));
  margin: 6vh auto 0;
  background: rgba(255, 250, 244, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.34);
  box-shadow: var(--shadow);
}

.modal-close,
.lightbox-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(17, 23, 31, 0.8);
  color: #fff;
  font-size: 24px;
}

.lightbox {
  padding: 24px;
}

.lightbox img {
  display: block;
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 60px);
  margin: 24px auto 0;
  border-radius: 26px;
}

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.thanks-card {
  width: min(720px, 100%);
  text-align: center;
}

.thanks-card .button {
  margin-top: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

@media (max-width: 1140px) {
  .main-nav,
  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero-grid,
  .impact-grid,
  .form-layout,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

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

  .work-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .reviews-grid,
  .reviews-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}

@media (max-width: 860px) {
  .floating-contacts {
    bottom: 12px;
    right: 12px;
    transform: none;
    grid-auto-flow: column;
  }

  .float-action {
    min-width: 58px;
    width: 58px;
    height: 58px;
    padding: 0;
    justify-content: center;
    border-radius: 18px;
  }

  .float-action span {
    display: none;
  }

  .stats-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  .slider-track {
    grid-auto-columns: 100%;
  }

  .work-track {
    grid-auto-columns: minmax(250px, 74vw);
  }

  .reviews-grid,
  .reviews-track {
    grid-auto-columns: minmax(280px, 82vw);
  }

  .hero {
    padding-top: 44px;
  }

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

  .hero-card--main {
    inset: 0 18px 74px 0;
  }

  .hero-card--accent {
    width: 50%;
    height: 40%;
  }

  .slider-nav {
    width: 54px;
    height: 54px;
  }

  .slider-shell {
    padding-inline: 0;
  }

  .before-after {
    padding: 18px;
  }

  .before-after__frame {
    min-height: 420px;
  }

  .before-after__labels {
    inset: 16px 16px auto;
  }

  .before-after__divider span {
    width: 54px;
    height: 54px;
  }

  .slider-nav--prev {
    left: 8px;
  }

  .slider-nav--next {
    right: 8px;
  }
}

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

  .header-row {
    min-height: 74px;
  }

  .brand strong {
    font-size: 24px;
  }

  .brand span {
    font-size: 8px;
  }

  .showcase-card,
  .lead-form,
  .contact-card,
  .thanks-card,
  .modal-dialog,
  .review-card,
  .timeline-card,
  .stat-card {
    border-radius: 24px;
  }

  .showcase-card,
  .lead-form,
  .contact-card,
  .thanks-card,
  .modal-dialog,
  .review-card,
  .timeline-card,
  .stat-card {
    padding: 22px;
  }

  .hero-visual {
    min-height: 420px;
  }

  .before-after {
    padding: 14px;
    border-radius: 24px;
  }

  .before-after__frame {
    min-height: 300px;
    border-radius: 20px;
  }

  .before-after__labels span {
    padding: 8px 12px;
    font-size: 11px;
    letter-spacing: 0.1em;
  }

  .before-after__divider span {
    width: 46px;
    height: 46px;
  }

  .before-after__divider span::before {
    left: 13px;
  }

  .before-after__divider span::after {
    right: 13px;
  }

  .showcase-card {
    min-height: 460px;
    padding: 26px;
  }

  .showcase-card h3 {
    margin-top: 18px;
  }

  .showcase-card p {
    font-size: 17px;
  }

  .showcase-card .button {
    left: 26px;
    bottom: 26px;
  }

  .timeline-card {
    min-height: 300px;
  }

  .timeline-card__digit {
    right: 14px;
    top: 10px;
    font-size: 92px;
  }

  .timeline-card h3 {
    margin-top: 90px;
  }

  .contact-list li {
    flex-direction: column;
    align-items: flex-start;
  }

  .map-frame iframe {
    min-height: 360px;
  }
}
