:root {
      --accent: #ec168c;
      --text: #29282c;
      --muted: #6f6d75;
      --soft-muted: #8b8991;
      --body-bg:
        radial-gradient(circle at 10% 15%, rgba(236, 22, 140, .09), transparent 28%),
        radial-gradient(circle at 88% 12%, rgba(0, 0, 0, .045), transparent 24%),
        linear-gradient(135deg, #faf8f4 0%, #f3eee7 100%);
      --shell-bg: rgba(255,255,255,.58);
      --card-bg: rgba(255,255,255,.55);
      --border: rgba(255,255,255,.82);
      --thin-line: rgba(0,0,0,.055);
      --button-bg: #27252b;
      --button-text: #ffffff;
      --shadow: 0 24px 70px rgba(45, 41, 38, .08);
      --toggle-bg: rgba(255,255,255,.34);
      --toggle-pill: rgba(0,0,0,.08);
      --toggle-dot: #ffffff;
    }

    html[data-theme="dark"] {
      --text: #f6f2ee;
      --muted: #b7b0aa;
      --soft-muted: #89827c;
      --body-bg:
        radial-gradient(circle at 10% 15%, rgba(236, 22, 140, .16), transparent 30%),
        radial-gradient(circle at 88% 12%, rgba(255, 255, 255, .06), transparent 26%),
        linear-gradient(135deg, #161316 0%, #252018 100%);
      --shell-bg: rgba(28, 25, 28, .66);
      --card-bg: rgba(255,255,255,.06);
      --border: rgba(255,255,255,.11);
      --thin-line: rgba(255,255,255,.08);
      --button-bg: #ffffff;
      --button-text: #171417;
      --shadow: 0 24px 80px rgba(0, 0, 0, .32);
      --toggle-bg: rgba(255,255,255,.06);
      --toggle-pill: rgba(255,255,255,.10);
      --toggle-dot: #ffffff;
    }

    * { box-sizing: border-box; }

    body {
      min-height: 100vh;
      background: var(--body-bg);
      color: var(--text);
      transition: background .35s ease, color .35s ease;
      font-family: "Onest", sans-serif;
      font-feature-settings: "ss01" on, "ss02" on;
    }
    .projects-slider-head {
  border-bottom: 1px solid var(--thin-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.slider-controls {
  display: flex;
  gap: 8px;
}

.slider-btn {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid var(--thin-line);
  background: var(--toggle-bg);
  color: var(--text);
  display: grid;
  place-items: center;
  font-size: 26px;
  line-height: 1;
  transition: opacity .2s ease, transform .2s ease;
}

.slider-btn:hover {
  opacity: .82;
  transform: translateY(-1px);
}

.slider-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.slider-viewport::-webkit-scrollbar {
  display: none;
}

.slider-track {
  display: flex;
}

.slider-slide {
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  border-top: 0;
}

.slider-dots {
  border-top: 1px solid var(--thin-line);
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
}

.slider-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--muted);
  opacity: .35;
  transition: width .2s ease, opacity .2s ease;
}

.slider-dot.active {
  width: 22px;
  opacity: .9;
  background: var(--accent);
}

@media (max-width: 640px) {
  .slider-controls {
    display: none;
  }
}
    .leader-card {
  position: relative;
}

.leader-photo {
  min-height: 420px;
  position: relative;
  overflow: hidden;
}

.leader-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 45%, rgba(0,0,0,.32)),
    radial-gradient(circle at 20% 20%, rgba(236,22,140,.16), transparent 30%);
  pointer-events: none;
}

.leader-photo img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.leader-content {
  background: var(--card-bg);
  border-left: 1px solid var(--border);
}

.leader-point {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.34);
  border: 1px solid var(--border);
  backdrop-filter: blur(10px);
}

html[data-theme="dark"] .leader-point {
  background: rgba(255,255,255,.045);
}

.leader-point span {
  color: var(--accent);
  font-size: 12px;
}

.leader-point p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.leader-sign {
  border-top: 1px solid var(--thin-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.leader-quote {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--button-bg);
  color: var(--button-text);
  font-size: 42px;
  line-height: 1;
}
  .stats-strip {
  position: relative;
}

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

.stats-inner::before,
.stats-inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--thin-line),
    rgba(236, 22, 140, .22),
    var(--thin-line),
    transparent
  );
}

.stats-inner::before {
  top: 0;
}

.stats-inner::after {
  bottom: 0;
}

.stats-item {
  position: relative;
  padding: 8px 22px;
}

.stats-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  bottom: 10px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    var(--thin-line),
    transparent
  );
}

.stats-number {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.stats-number span {
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: .9;
  letter-spacing: -0.075em;
  color: var(--text);
}


.stats-label {
  margin-top: 12px;
  max-width: 180px;
  font-size: 13px;
  line-height: 1.35;
  color: var(--muted);
}

html[data-theme="dark"] .stats-number span {
  color: #ffffff;
}

@media (max-width: 768px) {
  .stats-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
    padding: 18px 0;
  }

  .stats-item {
    padding: 8px 18px;
  }

  .stats-item:nth-child(2)::after {
    display: none;
  }

  .stats-label {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stats-item {
    padding: 10px 4px;
  }

  .stats-item:not(:last-child)::after {
    display: none;
  }

  .stats-number span {
    font-size: 46px;
  }

  .stats-label {
    max-width: 100%;
  }
}

    .hero-photo-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.12);
      background:
        linear-gradient(90deg, rgba(8, 9, 12, .88), rgba(8, 9, 12, .64)),
        url("img/hero-business.jpg") center center / cover no-repeat;
      box-shadow: var(--shadow);
    }

    .hero-photo-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 18%, rgba(236, 22, 140, .18), transparent 28%),
        radial-gradient(circle at 88% 90%, rgba(236, 22, 140, .22), transparent 26%);
      pointer-events: none;
    }

    .glass {
      background: var(--shell-bg);
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      backdrop-filter: blur(18px);
      transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
    }

    .card {
      background: var(--card-bg);
      border: 1px solid var(--border);
      transition: background .35s ease, border-color .35s ease, transform .25s ease;
    }

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

    .logo-mark {
      color: #ec168c;
      display: grid;
      place-items: center;
      font-weight: 800;
      letter-spacing: -6px;
      line-height: 1;
      flex-shrink: 0;
    }

    .muted { color: var(--muted); }
    .soft-muted { color: var(--soft-muted); }

    .main-button {
      background: var(--button-bg);
      color: var(--button-text);
    }

    .theme-toggle,
    .lang-toggle {
      border: 1px solid var(--thin-line);
      background: var(--toggle-bg);
      transition: background .25s ease, border-color .25s ease, opacity .2s ease;
    }

    .theme-toggle:hover,
    .lang-toggle:hover {
      opacity: .92;
    }

    .lang-toggle {
      color: var(--muted);
    }

    .toggle-track { background: var(--toggle-pill); }

    .toggle-dot {
      transform: translateX(0);
      transition: transform .25s ease;
      background: var(--toggle-dot);
    }

    html[data-theme="dark"] .toggle-dot {
      transform: translateX(18px);
    }

    .projects { transition: color .35s ease; }

    .project-card {
      background: var(--card-bg);
      border-top: 1px solid var(--border);
    }

    .project-bg {
      position: absolute;
      inset: 0 auto 0 0;
      width: 38%;
      opacity: .4;
      background:
        linear-gradient(90deg, rgba(236, 22, 140, .16), transparent 72%),
        radial-gradient(circle at 20% 50%, rgba(236, 22, 140, .22), transparent 42%);
      pointer-events: none;
    }

    html[data-theme="dark"] .project-bg { opacity: .5; }

    .project-tag {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      padding: .45rem .8rem;
      border-radius: 999px;
      font-size: 12px;
      line-height: 1;
      color: var(--muted);
      background: rgba(255,255,255,.42);
      border: 1px solid var(--border);
      backdrop-filter: blur(8px);
    }

    html[data-theme="dark"] .project-tag {
      background: rgba(255,255,255,.05);
    }

    .project-shot-wrap {
      display: flex;
      justify-content: flex-end;
    }

    .project-shot {
      position: relative;
      width: 100%;
      max-width: 430px;
      border-radius: 24px;
      padding: 10px;
      background: rgba(255,255,255,.46);
      border: 1px solid var(--border);
      box-shadow: 0 18px 40px rgba(0,0,0,.08);
      backdrop-filter: blur(12px);
    }

    html[data-theme="dark"] .project-shot {
      background: rgba(255,255,255,.05);
      box-shadow: 0 18px 40px rgba(0,0,0,.22);
    }

    .project-shot::before {
      content: "";
      display: block;
      height: 14px;
      width: 100%;
      margin-bottom: 10px;
      border-radius: 999px;
      background:
        radial-gradient(circle at 12px 7px, #ff5f57 0 4px, transparent 4.5px),
        radial-gradient(circle at 32px 7px, #febc2e 0 4px, transparent 4.5px),
        radial-gradient(circle at 52px 7px, #28c840 0 4px, transparent 4.5px);
      opacity: .9;
    }

    .project-shot-image {
      display: block;
      width: 100%;
      height: 250px;
      object-fit: cover;
      object-position: top center;
      border-radius: 16px;
    }

    .project-visual {
      min-height: 250px;
      position: relative;
      border-radius: 24px;
      border: 1px solid var(--border);
      overflow: hidden;
    }

    .finance-visual {
      background:
        linear-gradient(90deg, rgba(255,255,255,.82) 0%, rgba(255,255,255,.56) 38%, rgba(255,255,255,.16) 100%),
        url("img/finance-bg.jpg") center center / cover no-repeat;
      isolation: isolate;
    }

    html[data-theme="dark"] .finance-visual {
      background:
        linear-gradient(90deg, rgba(22,19,22,.62) 0%, rgba(22,19,22,.38) 38%, rgba(22,19,22,.12) 100%),
        url("img/finance-bg.jpg") center center / cover no-repeat;
    }

    .finance-visual-overlay {
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background:
        radial-gradient(circle at 18% 28%, rgba(236, 22, 140, .16), transparent 28%),
        radial-gradient(circle at 82% 74%, rgba(236, 22, 140, .10), transparent 32%);
    }

    .finance-visual::before {
      content: "";
      position: absolute;
      inset: 24px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.28);
      z-index: 0;
    }

    .finance-visual::after {
      content: "↗";
      position: absolute;
      right: 34px;
      top: 30px;
      width: 44px;
      height: 44px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: var(--button-bg);
      color: var(--button-text);
      font-size: 22px;
      z-index: 2;
    }

    .finance-card {
      position: absolute;
      z-index: 2;
      background: rgba(255,255,255,.48);
      border: 1px solid rgba(255,255,255,.58);
      backdrop-filter: blur(16px);
      box-shadow: 0 18px 40px rgba(0,0,0,.10);
    }

    html[data-theme="dark"] .finance-card {
      background: rgba(24, 22, 26, .42);
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: 0 18px 40px rgba(0,0,0,.24);
    }

    .finance-card span {
      display: block;
      font-size: 11px;
      color: var(--soft-muted);
      margin-bottom: 8px;
    }

    .finance-card strong {
      display: block;
      font-size: 18px;
      line-height: 1.15;
      font-weight: 500;
      color: var(--text);
    }

    .finance-card small {
      display: block;
      margin-top: 10px;
      color: var(--muted);
      font-size: 12px;
    }

    .finance-card-main {
      left: 28px;
      bottom: 28px;
      width: 72%;
      border-radius: 22px;
      padding: 22px;
    }

    .finance-card-small {
      right: 28px;
      top: 88px;
      width: 46%;
      border-radius: 18px;
      padding: 18px;
    }

    .retail-visual {
      min-height: 250px;
      position: relative;
      border-radius: 24px;
      background:
        radial-gradient(circle at 20% 30%, rgba(236, 22, 140, .18), transparent 34%),
        radial-gradient(circle at 80% 70%, rgba(0, 0, 0, .08), transparent 36%),
        rgba(255,255,255,.34);
      border: 1px solid var(--border);
      overflow: hidden;
      padding: 26px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    html[data-theme="dark"] .retail-visual {
      background:
        radial-gradient(circle at 20% 30%, rgba(236, 22, 140, .22), transparent 34%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, .06), transparent 36%),
        rgba(255,255,255,.04);
    }

    .retail-flow {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .retail-node {
      min-width: 160px;
      flex: 1 1 160px;
      background: var(--card-bg);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 18px;
      backdrop-filter: blur(12px);
      box-shadow: var(--shadow);
    }

    .retail-node-wide { flex-basis: 200px; }

    .retail-node-label {
      display: block;
      font-size: 11px;
      color: var(--soft-muted);
      margin-bottom: 8px;
    }

    .retail-node strong {
      display: block;
      font-size: 16px;
      line-height: 1.2;
      font-weight: 500;
      color: var(--text);
    }

    .retail-arrow {
      flex: 0 0 auto;
      font-size: 20px;
      line-height: 1;
      color: var(--soft-muted);
      opacity: .9;
    }

    .retail-note {
      margin-top: 18px;
      padding: 16px 18px;
      border-radius: 18px;
      background: rgba(255,255,255,.28);
      border: 1px solid var(--border);
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
      backdrop-filter: blur(10px);
    }

    html[data-theme="dark"] .retail-note {
      background: rgba(255,255,255,.04);
    }
.final-cta-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 15% 20%, rgba(236,22,140,.32), transparent 34%),
    linear-gradient(135deg, #161316 0%, #252018 100%);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .final-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }
}
    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr .7fr .9fr;
      gap: 28px;
    }

    .footer-col { min-width: 0; }

    .footer-title {
      font-size: 12px;
      line-height: 1;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--soft-muted);
      margin-bottom: 16px;
    }

    .footer-link {
      color: var(--text);
      text-decoration: none;
      transition: opacity .2s ease;
    }

    .footer-link:hover { opacity: .7; }

    .footer-office-list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-office {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .footer-office-country {
      font-size: 13px;
      color: var(--text);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .footer-office-city {
      font-size: 13px;
      color: var(--muted);
    }

    .footer-bottom {
      border-top: 1px solid var(--thin-line);
    }

    @media (max-width: 1023px) {
      .project-shot-wrap { justify-content: flex-start; }
      .project-shot { max-width: 100%; }
      .project-shot-image { height: 220px; }
      .project-visual { min-height: 220px; }
      .retail-visual { min-height: 220px; }
      .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .leader-content {
  border-left: 0;
  border-top: 1px solid var(--border);
}

.leader-photo,
.leader-photo img {
  min-height: 340px;
}
    }

    @media (max-width: 640px) {
      .theme-label { display: none; }
      .project-bg { width: 100%; }
      .project-shot-image { height: 190px; }

      .finance-card-main {
        width: calc(100% - 48px);
        left: 24px;
        bottom: 24px;
      }

      .finance-card-small {
        width: 58%;
        right: 24px;
        top: 54px;
      }

      .retail-flow { gap: 10px; }

      .retail-node { min-width: 100%; }

      .retail-arrow { display: none; }

      .retail-note { margin-top: 14px; }
    }