:root {
  --wd-bg: #0f1114;
  --wd-panel: #1a1d22;
  --wd-accent: #c9944a;
  --wd-accent-light: #e2b76e;
  --wd-accent-dark: #a67530;
  --wd-text: #ffffff;
  --wd-muted: #8a8f9a;
  --wd-border: rgba(255, 255, 255, .08);
  --wd-border-strong: rgba(255, 255, 255, .15);
  --wd-container: 1216px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--wd-bg);
}

body {
  margin: 0;
  min-height: 100%;
  overflow-x: hidden;
  color: var(--wd-text);
  background: var(--wd-bg);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

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

.wd-page {
  position: relative;
  min-height: 100vh;
  overflow-x: hidden;
  background: rgba(15, 17, 20, .6);
}

.wd-home.wd-page {
  background: rgba(15, 17, 20, .12);
}

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

.wd-bg-media {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--wd-bg);
  pointer-events: none;
}

.wd-page > main,
.wd-page > footer {
  position: relative;
  z-index: 1;
}

.wd-bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .18;
  filter: blur(8px);
  transform: scale(1.04);
}

.wd-home .wd-bg-media img {
  opacity: .55;
  filter: none;
  transform: none;
}

.wd-bg-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 17, 20, .88), rgba(15, 17, 20, .36) 34%, rgba(15, 17, 20, .84) 100%),
    rgba(15, 17, 20, .25);
}

.wd-home .wd-bg-media::after {
  background:
    linear-gradient(180deg, rgba(15, 17, 20, .72), rgba(15, 17, 20, .18) 38%, rgba(15, 17, 20, .78) 100%),
    rgba(15, 17, 20, .04);
}

.wd-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: linear-gradient(180deg, rgba(15, 17, 20, .9), rgba(15, 17, 20, 0));
  backdrop-filter: blur(4px);
}

.wd-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 88px;
}

.wd-logo {
  flex: 0 0 auto;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.wd-logo span,
.wd-gradient-text,
.wd-stat-card strong {
  background: linear-gradient(135deg, var(--wd-accent-light), var(--wd-accent) 50%, var(--wd-accent-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wd-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  color: rgba(255, 255, 255, .9);
  font-size: 16px;
  font-weight: 500;
}

.wd-nav a {
  transition: color .3s ease;
}

.wd-nav a:hover {
  color: var(--wd-accent-light);
}

.wd-btn,
.wd-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 32px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease, color .3s ease;
}

.wd-btn {
  position: relative;
  overflow: hidden;
  color: var(--wd-bg);
  background: linear-gradient(135deg, var(--wd-accent-light), var(--wd-accent) 42%, var(--wd-accent-dark));
  box-shadow: 0 4px 20px rgba(201, 148, 74, .25);
}

.wd-btn:hover,
.wd-outline-btn:hover {
  transform: translateY(-2px);
}

.wd-btn:hover {
  box-shadow: 0 8px 30px rgba(201, 148, 74, .4);
}

.wd-outline-btn {
  border: 1px solid rgba(201, 148, 74, .5);
  color: var(--wd-accent);
  background: transparent;
}

.wd-outline-btn:hover {
  color: var(--wd-bg);
  background: var(--wd-accent);
  box-shadow: 0 0 25px rgba(201, 148, 74, .2);
}

.wd-link,
.wd-back-link {
  color: var(--wd-accent);
  font-weight: 700;
  transition: color .3s ease;
}

.wd-link:hover,
.wd-back-link:hover {
  color: var(--wd-accent-light);
}

.wd-hero {
  min-height: 540px;
  padding: 150px 0 70px;
  display: flex;
  align-items: center;
}

.wd-home-hero {
  min-height: 100vh;
  padding: 112px 0 120px;
}

.wd-category-hero {
  min-height: auto;
  padding: 138px 0 48px;
  display: block;
}

.wd-category-hero--catalog {
  display: flex;
  min-height: 430px;
  padding: 150px 0 54px;
  align-items: center;
}

.wd-category-hero__back {
  margin-bottom: 34px;
}

.wd-category-hero-card {
  min-height: 218px;
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02)),
    rgba(26, 29, 34, .72);
  backdrop-filter: blur(24px);
}

.wd-category-hero-card .wd-kicker {
  width: 48px;
  margin-bottom: 26px;
}

.wd-category-hero .wd-category-hero-card h1 {
  font-size: 48px;
  line-height: 1.08;
}

.wd-category-hero .wd-category-hero-card p {
  max-width: 640px;
  margin-top: 16px;
  color: var(--wd-muted);
  font-size: 18px;
  line-height: 1.5;
}

.wd-kicker {
  width: 80px;
  height: 4px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wd-accent-light), var(--wd-accent), var(--wd-accent-dark));
}

.wd-hero h1 {
  max-width: 940px;
  margin: 0;
  font-size: 72px;
  line-height: 1.08;
  font-weight: 800;
}

.wd-home-hero h1 {
  max-width: 980px;
  font-size: 76px;
}

.wd-hero p {
  max-width: 760px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 20px;
  line-height: 1.6;
}

.wd-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 34px;
}

.wd-stats-section {
  padding: 0 0 72px;
}

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

.wd-stat-card {
  min-height: 150px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 24px;
  background: rgba(26, 29, 34, .85);
  backdrop-filter: blur(20px);
  transition: border-color .3s ease, transform .3s ease;
}

.wd-stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 148, 74, .3);
}

.wd-stat-card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 48px;
  line-height: 1;
  font-weight: 800;
}

.wd-stat-card span {
  color: var(--wd-muted);
  font-size: 16px;
}

.wd-section {
  padding: 86px 0;
}

.wd-band {
  background: rgba(15, 17, 20, .5);
  border-top: 1px solid rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  backdrop-filter: blur(16px);
}

.wd-section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 44px;
}

.wd-section__head h2,
.wd-split h2,
.wd-cta h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 800;
}

.wd-muted {
  margin: 14px 0 0;
  color: var(--wd-muted);
  font-size: 18px;
  line-height: 1.55;
}

.wd-hit-rail {
  display: grid;
  gap: 28px;
}

.wd-hit-card {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  min-height: 540px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 24px;
  background: rgba(15, 17, 20, .72);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .35);
}

.wd-hit-card__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px;
}

.wd-hit-card__badge {
  align-self: start;
  margin-bottom: 24px;
  padding: 7px 20px;
  border-radius: 999px;
  color: var(--wd-bg);
  background: linear-gradient(135deg, var(--wd-accent-light), var(--wd-accent), var(--wd-accent-dark));
  font-size: 14px;
  font-weight: 800;
}

.wd-hit-card h3 {
  margin: 0;
  font-size: 48px;
  line-height: 1.08;
}

.wd-hit-card__meta {
  margin: 16px 0 22px;
  color: var(--wd-accent-light);
  font-size: 20px;
  font-weight: 700;
}

.wd-hit-card__copy p:not(.wd-hit-card__meta) {
  margin: 0 0 30px;
  color: rgba(255, 255, 255, .72);
  font-size: 17px;
  line-height: 1.7;
}

.wd-hit-card__image {
  position: relative;
  min-height: 420px;
  overflow: hidden;
}

.wd-hit-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(15, 17, 20, .95), rgba(15, 17, 20, 0));
}

.wd-hit-card__image img,
.wd-hit-card__image .wd-project-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-project-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding: 2px 0 18px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.wd-project-scroll::-webkit-scrollbar {
  display: none;
}

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

.wd-project-card {
  display: flex;
  flex: 0 0 280px;
  flex-direction: column;
  min-height: 488px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .018)),
    var(--wd-panel);
  scroll-snap-align: start;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}

.wd-grid .wd-project-card {
  flex-basis: auto;
}

.wd-project-card:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 148, 74, .35);
  box-shadow: 0 0 30px rgba(201, 148, 74, .08), 0 18px 50px rgba(0, 0, 0, .35);
}

.wd-project-card__media {
  position: relative;
  display: block;
  flex: 0 0 258px;
  overflow: hidden;
  background: var(--wd-panel);
}

.wd-project-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .02), rgba(0, 0, 0, .22));
  opacity: .62;
  transition: opacity .3s ease;
}

.wd-project-card:hover .wd-project-card__media::after {
  opacity: .94;
}

.wd-project-card__media img,
.wd-project-card__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.wd-project-card:hover .wd-project-card__media img {
  transform: scale(1.06);
}

.wd-project-card__placeholder {
  display: grid;
  place-items: center;
  padding: 28px;
  color: rgba(255, 255, 255, .78);
  background:
    linear-gradient(135deg, rgba(226, 183, 110, .18), rgba(201, 148, 74, .04)),
    var(--wd-panel);
  font-weight: 800;
  text-align: center;
}

.wd-project-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: var(--wd-text);
  background: rgba(15, 17, 20, .7);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 700;
}

.wd-project-card__body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  padding: 24px;
}

.wd-project-card h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
}

.wd-project-card__text {
  margin: 14px 0 20px;
  color: var(--wd-muted);
  font-weight: 600;
  line-height: 1.5;
}

.wd-project-card__area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 14px 0 18px;
  color: var(--wd-muted);
}

.wd-project-card__area strong {
  color: var(--wd-text);
  font-weight: 600;
  white-space: nowrap;
}

.wd-project-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.wd-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 999px;
  color: rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .07);
  font-size: 13px;
}

.wd-project-card__bottom {
  display: flex;
  margin-top: auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wd-price {
  color: var(--wd-accent-light);
  font-size: 18px;
  font-weight: 800;
}

.wd-project-card .wd-price {
  margin-bottom: 24px;
  font-size: 20px;
}

.wd-project-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  color: var(--wd-text);
  background: rgba(255, 255, 255, .05);
  font-weight: 600;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, color .3s ease;
}

.wd-project-card__action:hover {
  border-color: var(--wd-accent);
  color: var(--wd-bg);
  background: var(--wd-accent);
  box-shadow: 0 0 20px rgba(201, 148, 74, .15);
}

.wd-catalog-technologies {
  padding-top: 0;
}

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

.wd-tech-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 24px;
  background: var(--wd-panel);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.wd-tech-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201, 148, 74, .4);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}

.wd-tech-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.wd-tech-card:hover img {
  transform: scale(1.05);
}

.wd-tech-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .04), rgba(0, 0, 0, .38) 44%, rgba(0, 0, 0, .92));
}

.wd-tech-card span,
.wd-tech-card p,
.wd-tech-card strong {
  position: relative;
  z-index: 2;
  display: block;
}

.wd-tech-card span {
  margin: 250px 26px 10px;
  font-size: 28px;
  line-height: 1.14;
  font-weight: 800;
}

.wd-tech-card p {
  margin: 0 26px 22px;
  color: rgba(255, 255, 255, .72);
  line-height: 1.5;
}

.wd-tech-card strong {
  margin: 0 26px 26px;
  color: var(--wd-accent);
}

.wd-category-projects {
  padding-top: 0;
}

.wd-back-link {
  display: inline-flex;
  margin-bottom: 34px;
}

.wd-category-note,
.wd-empty {
  margin-top: 32px;
  padding: 26px;
  border: 1px solid rgba(201, 148, 74, .22);
  border-radius: 18px;
  color: var(--wd-muted);
  background: rgba(26, 29, 34, .72);
  backdrop-filter: blur(18px);
}

.wd-split {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
  gap: 60px;
  align-items: start;
}

.wd-copy {
  color: rgba(255, 255, 255, .82);
  font-size: 17px;
  line-height: 1.72;
}

.wd-copy p:first-child {
  margin-top: 0;
}

.wd-cta {
  padding: 48px;
  border: 1px solid rgba(201, 148, 74, .24);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(226, 183, 110, .12), rgba(201, 148, 74, .04)),
    rgba(26, 29, 34, .86);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28);
  backdrop-filter: blur(20px);
}

.wd-cta p {
  max-width: 720px;
  margin: 16px 0 28px;
  color: var(--wd-muted);
  font-size: 17px;
  line-height: 1.6;
}

.wd-product-hero {
  padding: 132px 0 54px;
}

.wd-product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 44px;
  align-items: center;
}

.wd-product-media,
.wd-product-summary {
  overflow: hidden;
  border: 1px solid var(--wd-border);
  border-radius: 24px;
  background: rgba(26, 29, 34, .88);
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32);
}

.wd-product-media {
  aspect-ratio: 1.35;
}

.wd-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-product-summary {
  padding: 40px;
  backdrop-filter: blur(20px);
}

.wd-product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.wd-product-summary h1 {
  margin: 0;
  font-size: 64px;
  line-height: 1.04;
}

.wd-product-summary p {
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.6;
}

.wd-product-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 28px 0;
}

.wd-product-facts div {
  min-height: 88px;
  padding: 16px;
  border: 1px solid var(--wd-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, .04);
}

.wd-product-facts span {
  display: block;
  margin-bottom: 8px;
  color: var(--wd-muted);
  font-size: 13px;
}

.wd-product-facts strong {
  color: var(--wd-accent-light);
  font-size: 17px;
}

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

.wd-gallery__item {
  overflow: hidden;
  aspect-ratio: 1.35;
  border: 1px solid var(--wd-border);
  border-radius: 16px;
  background: var(--wd-panel);
}

.wd-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wd-options {
  display: grid;
  gap: 10px;
  margin: 28px 0 0;
}

.wd-options div {
  display: grid;
  grid-template-columns: minmax(140px, .6fr) minmax(0, 1fr);
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--wd-border);
}

.wd-options dt {
  color: var(--wd-muted);
}

.wd-options dd {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-weight: 700;
}

.wd-product-page {
  min-height: 100vh;
  background: var(--wd-bg);
}

.wd-product-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(15, 17, 20, .8), rgba(15, 17, 20, .8)),
    url("../images/projects/demo/bg-1.png") center / cover;
  filter: blur(8px);
  transform: scale(1.04);
  opacity: .42;
  pointer-events: none;
}

.wd-product-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  background: rgba(15, 17, 20, .8);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.wd-product-modal-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 100vh;
  padding: 32px;
  align-items: center;
  justify-content: center;
}

.wd-product-modal {
  position: relative;
  width: min(100%, 1600px);
  max-height: calc(100vh - 64px);
  overflow: hidden auto;
  border: 1px solid rgba(201, 148, 74, .2);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(255, 255, 255, .02)),
    rgba(26, 29, 34, .82);
  box-shadow: 0 30px 90px rgba(0, 0, 0, .58);
  backdrop-filter: blur(24px);
  scrollbar-width: none;
}

.wd-product-modal::-webkit-scrollbar,
.wd-product-modal__summary::-webkit-scrollbar {
  display: none;
}

.wd-product-modal__close {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
  color: var(--wd-text);
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(12px);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.wd-product-modal__close:hover,
.wd-plan-zoom__close:hover {
  border-color: var(--wd-accent);
  color: var(--wd-bg);
  background: var(--wd-accent);
}

.wd-product-modal__inner {
  display: flex;
  min-height: min(860px, calc(100vh - 64px));
}

.wd-product-modal__media {
  position: relative;
  flex: 0 0 65%;
  min-height: 520px;
  border-right: 1px solid rgba(255, 255, 255, .05);
  background: rgba(0, 0, 0, .4);
}

.wd-product-gallery,
.wd-product-gallery__slide {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.wd-product-gallery__slide {
  display: none;
  margin: 0;
}

.wd-product-gallery__slide.is-active {
  display: block;
}

.wd-product-gallery__slide img,
.wd-product-gallery__slide .wd-project-card__placeholder {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.wd-product-gallery__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: var(--wd-text);
  background: rgba(0, 0, 0, .5);
  backdrop-filter: blur(12px);
  transform: translateY(-50%);
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}

.wd-product-gallery__nav:hover {
  border-color: var(--wd-accent);
  color: var(--wd-bg);
  background: var(--wd-accent);
}

.wd-product-gallery__nav--prev {
  left: 16px;
}

.wd-product-gallery__nav--next {
  right: 16px;
}

.wd-product-gallery__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.wd-product-gallery__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .5);
  transition: width .3s ease, background .3s ease;
}

.wd-product-gallery__dot.is-active {
  width: 24px;
  background: var(--wd-accent);
}

.wd-product-modal__summary {
  display: flex;
  flex: 0 0 35%;
  flex-direction: column;
  max-height: calc(100vh - 64px);
  padding: 40px;
  overflow-y: auto;
}

.wd-product-modal__label {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--wd-bg);
  background: linear-gradient(135deg, var(--wd-accent-light), var(--wd-accent), var(--wd-accent-dark));
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wd-product-modal h1 {
  margin: 0 0 8px;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.04;
  font-weight: 800;
}

.wd-product-modal__price {
  margin-bottom: 24px;
  color: var(--wd-accent-light);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 800;
}

.wd-product-modal__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 24px;
}

.wd-product-modal__facts div {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
}

.wd-product-modal__facts span {
  display: block;
  margin-bottom: 6px;
  color: var(--wd-muted);
  font-size: 14px;
}

.wd-product-modal__facts strong {
  font-size: 20px;
  line-height: 1.2;
}

.wd-product-modal__copy,
.wd-product-modal__plan {
  margin-bottom: 24px;
}

.wd-product-modal__copy h2,
.wd-product-modal__plan h2 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.2;
}

.wd-product-modal__copy p {
  margin: 0;
  color: var(--wd-muted);
  font-size: 15px;
  line-height: 1.65;
}

.wd-product-modal__plan-box {
  position: relative;
  display: flex;
  min-height: 220px;
  padding: 16px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 12px;
  background: rgba(255, 255, 255, .05);
  cursor: zoom-in;
  transition: border-color .3s ease;
}

.wd-product-modal__plan-grid {
  display: grid;
  gap: 12px;
}

.wd-product-modal__plan-box:hover {
  border-color: rgba(201, 148, 74, .5);
}

.wd-product-modal__plan-box img {
  max-height: 350px;
  width: 100%;
  object-fit: contain;
  border-radius: 8px;
}

.wd-product-modal__plan-box span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--wd-text);
  background: rgba(15, 17, 20, .72);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 700;
}

.wd-product-modal__request {
  margin-top: auto;
  padding-top: 24px;
}

.wd-product-modal__request .wd-btn {
  width: 100%;
  min-height: 58px;
  font-size: 18px;
}

.wd-plan-zoom {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, .95);
  cursor: zoom-out;
}

.wd-plan-zoom:target {
  display: flex;
}

.wd-plan-zoom img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  cursor: default;
}

.wd-plan-zoom__close {
  position: absolute;
  top: 32px;
  right: 32px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  color: var(--wd-text);
  background: rgba(255, 255, 255, .1);
  backdrop-filter: blur(12px);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.wd-footer {
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, .06);
  color: var(--wd-muted);
  background: rgba(15, 17, 20, .72);
}

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

  .wd-hit-card,
  .wd-split,
  .wd-product-layout {
    grid-template-columns: 1fr;
  }

  .wd-hit-card__image {
    min-height: 360px;
  }

  .wd-product-modal__inner {
    flex-direction: column;
    min-height: 0;
  }

  .wd-product-modal__media {
    flex-basis: auto;
    min-height: 460px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
  }

  .wd-product-modal__summary {
    flex-basis: auto;
    max-height: none;
  }
}

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

  .wd-header__inner {
    min-height: 76px;
  }

  .wd-logo {
    font-size: 20px;
  }

  .wd-nav {
    display: none;
  }

  .wd-header .wd-btn {
    min-height: 42px;
    padding: 0 18px;
    font-size: 14px;
  }

  .wd-home-hero {
    min-height: 720px;
    padding: 112px 0 70px;
  }

  .wd-hero {
    padding-top: 118px;
  }

  .wd-hero h1,
  .wd-home-hero h1,
  .wd-product-summary h1 {
    font-size: 52px;
  }

  .wd-hero p {
    font-size: 18px;
  }

  .wd-stats-grid,
  .wd-tech-grid,
  .wd-grid,
  .wd-product-facts,
  .wd-gallery {
    grid-template-columns: 1fr;
  }

  .wd-section {
    padding: 64px 0;
  }

  .wd-section__head {
    align-items: start;
    flex-direction: column;
  }

  .wd-section__head h2,
  .wd-split h2,
  .wd-cta h2,
  .wd-hit-card h3 {
    font-size: 36px;
  }

  .wd-hit-card__copy,
  .wd-cta,
  .wd-product-summary {
    padding: 28px;
  }

  .wd-project-card {
    flex-basis: 300px;
  }

  .wd-tech-card {
    min-height: 340px;
  }

  .wd-tech-card span {
    margin-top: 190px;
  }

  .wd-options div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .wd-product-modal-wrap {
    min-height: 100svh;
    padding: 16px;
    align-items: flex-start;
  }

  .wd-product-modal {
    max-height: none;
    border-radius: 20px;
  }

  .wd-product-modal__close {
    top: 16px;
    right: 16px;
  }

  .wd-product-modal__media {
    min-height: 320px;
  }

  .wd-product-modal__summary {
    padding: 24px;
  }

  .wd-product-modal h1 {
    font-size: 40px;
  }

  .wd-product-modal__facts {
    grid-template-columns: 1fr;
  }

  .wd-plan-zoom {
    padding: 16px;
  }

  .wd-plan-zoom__close {
    top: 16px;
    right: 16px;
  }
}
