:root {
  --bg: #ffffff;
  --pill: #f2f2f2;
  --text: #111111;
  --muted: #6b7280;
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  --font-sans: "Space Grotesk", "Segoe UI", system-ui, -apple-system, sans-serif;
}

html {
  scroll-padding-top: 132px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

.navbar {
  width: min(1180px, calc(100% - 48px));
  margin: 24px auto 18px;
  padding: 10px 18px;
  position: sticky;
  top: 16px;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 30px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(18px, 2vw, 34px);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  box-shadow:
    0 18px 45px rgba(15, 15, 16, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.navbar__brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-logo {
  width: 52px;
  aspect-ratio: 1;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
}

.brand-name {
  color: #050505;
  display: inline-flex;
  align-items: center;
  align-self: center;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.14em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.34);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .brand-name {
    background: linear-gradient(115deg, #050505 0%, #050505 44%, #8d8d8d 50%, #050505 56%, #050505 100%);
    background-size: 230% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: brand-shimmer 5s linear infinite;
  }
}

@keyframes brand-shimmer {
  from {
    background-position: 200% 50%;
  }

  to {
    background-position: -20% 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-name {
    animation: none;
  }
}

.navbar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2vw, 34px);
  min-width: 0;
}

.navbar__menu-link {
  position: relative;
  color: #111111;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: transform 160ms ease, opacity 160ms ease;
}

.navbar__menu-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(17, 17, 17, 0.2);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.navbar__menu-link:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.navbar__menu-link.is-active,
.navbar__menu-link[aria-current="page"] {
  color: #5b24df;
}

.navbar__menu-link:hover::after,
.navbar__menu-link.is-active::after,
.navbar__menu-link[aria-current="page"]::after,
.navbar__menu-link:focus-visible::after {
  transform: scaleX(1);
}

.navbar__menu-link.is-active::after,
.navbar__menu-link[aria-current="page"]::after {
  height: 2px;
  background: rgba(91, 36, 223, 0.78);
}

.navbar__menu-link:focus-visible {
  outline: none;
}

.nav-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 198px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(79, 37, 196, 0.88);
  background: linear-gradient(135deg, #5b24df 0%, #7334f0 55%, #8648f6 100%);
  color: #ffffff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 22px rgba(91, 36, 223, 0.24);
  text-decoration: none;
  overflow: hidden;
}

.nav-cta::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.03));
  opacity: 0.8;
}

.nav-cta:focus-visible {
  outline: 2px solid rgba(88, 28, 255, 0.42);
  outline-offset: 4px;
}

.nav-cta:hover {
  border-color: rgba(79, 37, 196, 0.88);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 10px 22px rgba(91, 36, 223, 0.24);
}

.nav-cta__label {
  position: relative;
  z-index: 1;
  display: block;
  text-align: center;
  font-size: 17px;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-cta__icon {
  position: relative;
  z-index: 1;
  display: none;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.nav-cta__icon svg {
  display: block;
}

.navbar__toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 247, 250, 0.96));
  box-shadow:
    0 8px 20px rgba(15, 15, 16, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.navbar__toggle:hover {
  border-color: rgba(91, 36, 223, 0.18);
  box-shadow:
    0 10px 24px rgba(15, 15, 16, 0.1),
    0 0 0 4px rgba(91, 36, 223, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.98);
}

.navbar__toggle-icon {
  width: 22px;
  height: 22px;
  display: block;
  object-fit: contain;
  filter: brightness(0) saturate(100%) opacity(0.92);
  transition: transform 180ms ease, filter 180ms ease;
}

.navbar__toggle:hover .navbar__toggle-icon,
.navbar__toggle[aria-expanded="true"] .navbar__toggle-icon {
  transform: scale(1.03);
  filter: brightness(0) saturate(100%) opacity(1);
}

body.has-mobile-nav {
  overflow: hidden;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1200;
  visibility: hidden;
  pointer-events: none;
}

.mobile-nav__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 5, 5, 0.5);
  opacity: 0;
  transition: opacity 220ms ease;
}

.mobile-nav__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(420px, calc(100vw - 24px));
  height: 100%;
  padding: max(18px, env(safe-area-inset-top)) 20px 24px;
  background: rgba(255, 255, 255, 0.98);
  border-left: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow:
    -24px 0 60px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 22px;
  transform: translateX(100%);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.mobile-nav.is-open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav.is-open .mobile-nav__backdrop {
  opacity: 1;
}

.mobile-nav.is-open .mobile-nav__panel {
  transform: translateX(0);
}

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

.mobile-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  text-decoration: none;
}

.mobile-nav__logo {
  width: 44px;
  aspect-ratio: 1;
  display: block;
  object-fit: contain;
}

.mobile-nav__brand-name {
  color: #050505;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.mobile-nav__close {
  position: relative;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 16px;
  background: #f5f5f7;
  cursor: pointer;
}

.mobile-nav__close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111111;
}

.mobile-nav__close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-nav__close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-nav__menu {
  display: grid;
  align-content: start;
  gap: 10px;
}

.mobile-nav__menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  background: #f5f5f7;
  color: #111111;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: background-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.mobile-nav__menu-link::after {
  content: ">";
  color: rgba(17, 17, 17, 0.4);
  font-size: 16px;
  transition: color 160ms ease;
}

.mobile-nav__menu-link.is-active,
.mobile-nav__menu-link[aria-current="page"] {
  background: rgba(91, 36, 223, 0.1);
  color: #5b24df;
  box-shadow: inset 0 0 0 1px rgba(91, 36, 223, 0.18);
}

.mobile-nav__menu-link.is-active::after,
.mobile-nav__menu-link[aria-current="page"]::after {
  color: rgba(91, 36, 223, 0.72);
}

.mobile-nav__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #5b24df 0%, #7334f0 55%, #8648f6 100%);
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 18px 38px rgba(91, 36, 223, 0.24);
}

.mobile-nav__cta-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-nav__cta-icon svg {
  display: block;
}

.navbar__toggle:focus-visible,
.mobile-nav__close:focus-visible,
.mobile-nav__menu-link:focus-visible,
.mobile-nav__cta:focus-visible,
.mobile-nav__backdrop:focus-visible {
  outline: 2px solid rgba(88, 28, 255, 0.34);
  outline-offset: 3px;
}

.page-content {
  width: min(1100px, calc(100% - 64px));
  margin: 0 auto;
}

.page--gap .page-content {
  width: min(1180px, calc(100% - 32px));
}

.page--cw .page-content {
  width: min(1180px, calc(100% - 32px));
}

.page--gd .page-content {
  width: min(1180px, calc(100% - 32px));
}

[data-nav-section] {
  scroll-margin-top: 132px;
}

.blank-state {
  margin-top: 40px;
  padding: 36px;
  border: 1px dashed #d4d4d8;
  border-radius: 16px;
  background: #fafafa;
  text-align: center;
}

.blank-state h1 {
  margin: 0 0 12px;
  font-size: 28px;
}

.blank-state p {
  margin: 0;
  color: var(--muted);
}

.proposal-page {
  padding: clamp(20px, 3vw, 34px) 0 clamp(56px, 6vw, 88px);
}

.proposal-page__intro {
  width: min(960px, 100%);
  margin: 6px auto clamp(22px, 3vw, 34px);
  padding: 0 6px;
  text-align: center;
}

.proposal-page__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(15, 15, 16, 0.05);
}

.proposal-page__eyebrow {
  margin: 22px 0 14px;
  color: #5b24df;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.proposal-page__title {
  max-width: 11ch;
  margin: 0 auto;
  color: #0f0f10;
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.proposal-page__text {
  max-width: 42ch;
  margin: 18px auto 0;
  color: #6b7280;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.45;
  font-weight: 500;
}

.proposal-page__panel.contact-section__panel {
  width: 100%;
  max-width: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(147, 197, 253, 0.12), transparent 26%),
    radial-gradient(circle at top right, rgba(196, 181, 253, 0.16), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fafafc 100%);
  box-shadow:
    0 30px 80px rgba(15, 15, 16, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.proposal-page__panel .contact-section__decor {
  display: none;
}

.proposal-page__header.contact-section__header {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(20px, 2.6vw, 30px);
  justify-content: flex-start;
  text-align: left;
}

.proposal-page__panel .contact-section__title {
  min-height: 0;
  padding: 12px 26px 14px;
  font-size: clamp(28px, 3vw, 44px);
}

.proposal-page__content.contact-section__content {
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: clamp(18px, 2.2vw, 28px);
  align-items: start;
}

.proposal-page__content .contact-section__form-column {
  min-width: 0;
  margin: 0;
}

.proposal-page__content .contact-form {
  gap: 16px 18px;
}

.proposal-page__content .contact-form__submit {
  justify-self: start;
}

.proposal-page__content .contact-form__status {
  text-align: left;
}

.proposal-page__info {
  display: grid;
  gap: 18px;
  align-content: start;
  min-width: 0;
}

.proposal-page__info-card {
  padding: 22px 20px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.86));
  box-shadow:
    0 18px 36px rgba(15, 15, 16, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.proposal-page__info-title {
  margin: 0 0 10px;
  color: #111111;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.proposal-page__info-text {
  margin: 0;
  color: #4b5563;
  font-size: 16px;
  line-height: 1.55;
}

.proposal-flash {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin: 0 auto 20px;
  padding: 0 20px;
  border-radius: 999px;
  background: rgba(91, 36, 223, 0.1);
  color: #5b24df;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.service-page {
  padding: clamp(22px, 4vw, 42px) 0 clamp(64px, 7vw, 96px);
}

.service-page__hero {
  width: min(900px, 100%);
  margin: 0 auto clamp(28px, 3vw, 42px);
  text-align: center;
}

.service-page__eyebrow {
  margin: 0 0 14px;
  color: #5b24df;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-page__title {
  margin: 0;
  color: #0f0f10;
  font-size: clamp(42px, 6vw, 80px);
  line-height: 0.92;
  font-weight: 700;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.service-page__subtitle {
  max-width: 32ch;
  margin: 18px auto 0;
  color: #6b7280;
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.45;
  font-weight: 500;
}

.service-page__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.service-page__statement-card {
  padding: clamp(34px, 4vw, 54px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 42px;
  background:
    radial-gradient(circle at top right, rgba(124, 108, 255, 0.14), transparent 28%),
    linear-gradient(180deg, #151516 0%, #050505 100%);
  color: #ffffff;
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.service-page__statement-copy {
  max-width: 720px;
}

.service-page__statement-label {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-page__statement-title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 0.95;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.service-page__statement-text {
  max-width: 18ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.service-slider {
  margin-top: 28px;
}

.service-slider__header {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 18px;
  margin-bottom: 18px;
}

.service-slider__controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.service-slider__control {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 18px;
  background: #ffffff;
  color: #111111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  cursor: pointer;
  box-shadow:
    0 14px 30px rgba(15, 15, 16, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transition:
    transform 160ms ease,
    opacity 160ms ease,
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.service-slider__control:hover:not(:disabled),
.service-slider__control:focus-visible:not(:disabled) {
  transform: translateY(-1px);
  border-color: rgba(91, 36, 223, 0.26);
  box-shadow:
    0 18px 36px rgba(15, 15, 16, 0.08),
    0 0 0 4px rgba(91, 36, 223, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.service-slider__control:focus-visible {
  outline: none;
}

.service-slider__control:disabled {
  opacity: 0.4;
  cursor: default;
}

.service-slider__viewport {
  overflow: hidden;
}

.service-slider__track {
  --service-slider-gap: 18px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--service-slider-gap) * 2)) / 3);
  gap: var(--service-slider-gap);
  overflow-x: auto;
  padding: 4px 0 0;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.service-slider__track::-webkit-scrollbar {
  display: none;
}

.service-slider__card {
  min-width: 0;
  scroll-snap-align: start;
}

.service-page__detail-grid {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-page__detail-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: 26px 24px 28px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 249, 251, 0.92));
  box-shadow:
    0 18px 40px rgba(15, 15, 16, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.service-page__detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 20px;
  background: #050505;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow:
    0 16px 30px rgba(5, 5, 5, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-page__detail-icon-svg {
  display: block;
  width: 28px;
  height: 28px;
  stroke-width: 2.1;
}

.service-page__detail-title {
  margin: 0;
  color: #111111;
  font-size: 24px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.service-page__detail-text {
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.6;
}

.service-work {
  margin-top: 54px;
}

.service-work__head {
  max-width: 860px;
  margin: 0 auto 32px;
  text-align: center;
}

.service-work__eyebrow {
  margin: 0 0 10px;
  color: #5b24df;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-work__title {
  margin: 0;
  color: #111111;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.service-work__text {
  max-width: 44ch;
  margin: 12px auto 0;
  color: #4b5563;
  font-size: clamp(16px, 1.45vw, 20px);
  line-height: 1.5;
  font-weight: 500;
  text-wrap: balance;
}

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

.service-work-group {
  min-width: 0;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  box-shadow:
    0 18px 44px rgba(15, 15, 16, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.service-work-group--lilac {
  background: linear-gradient(180deg, #f3ebff 0%, #ffffff 100%);
}

.service-work-group--pearl {
  background: linear-gradient(180deg, #fbf7f1 0%, #ffffff 100%);
}

.service-work-group--sky {
  background: linear-gradient(180deg, #edf6ff 0%, #ffffff 100%);
}

.service-work-group__head {
  max-width: 760px;
  margin-bottom: 18px;
}

.service-work-group__eyebrow {
  margin: 0 0 8px;
  color: #5b24df;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-work-group__title {
  margin: 0;
  color: #111111;
  font-size: clamp(28px, 2.8vw, 38px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.service-work-group__text {
  max-width: 48ch;
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.55;
}

.service-work-group__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-work-example {
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  cursor: pointer;
  box-shadow:
    0 16px 34px rgba(15, 15, 16, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-work-example:hover,
.service-work-example:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(91, 36, 223, 0.18);
  box-shadow:
    0 20px 40px rgba(15, 15, 16, 0.08),
    0 0 0 4px rgba(91, 36, 223, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.service-work-example:focus-visible {
  outline: none;
}

.service-work-example__media {
  margin-bottom: 14px;
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.52);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.service-work-example__placeholder {
  aspect-ratio: 4 / 3.2;
  width: 100%;
  border-radius: 16px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #18181b 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 18px 36px rgba(5, 5, 5, 0.18);
}

.service-work-example__copy {
  display: grid;
  gap: 8px;
}

.service-work-example__label {
  margin: 0;
  color: #5b24df;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-work-example__text {
  margin: 0;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.58;
}

body.has-showcase-modal {
  overflow: hidden;
}

.showcase-modal {
  position: fixed;
  inset: 0;
  z-index: 1300;
  display: grid;
  place-items: center;
  padding: 20px;
  visibility: hidden;
  pointer-events: none;
}

.showcase-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

.showcase-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 5, 5, 0.64);
  opacity: 0;
  transition: opacity 180ms ease;
}

.showcase-modal.is-open .showcase-modal__backdrop {
  opacity: 1;
}

.showcase-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  padding: 24px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 32px;
  box-shadow:
    0 30px 80px rgba(5, 5, 5, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.showcase-modal.is-open .showcase-modal__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.showcase-modal__dialog--lilac {
  background: linear-gradient(180deg, #f3ebff 0%, #ffffff 100%);
}

.showcase-modal__dialog--pearl {
  background: linear-gradient(180deg, #fbf7f1 0%, #ffffff 100%);
}

.showcase-modal__dialog--sky {
  background: linear-gradient(180deg, #edf6ff 0%, #ffffff 100%);
}

.showcase-modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  box-shadow:
    0 12px 24px rgba(15, 15, 16, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.showcase-modal__close-line {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #111111;
}

.showcase-modal__close-line:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.showcase-modal__close-line:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.showcase-modal__media {
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.showcase-modal__placeholder {
  aspect-ratio: 16 / 10;
  width: 100%;
  border-radius: 20px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #18181b 0%, #050505 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 24px 46px rgba(5, 5, 5, 0.2);
}

.showcase-modal__copy {
  display: grid;
  gap: 10px;
}

.showcase-modal__eyebrow {
  margin: 0;
  color: #5b24df;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.showcase-modal__title {
  margin: 0;
  color: #111111;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.showcase-modal__text {
  max-width: 44ch;
  margin: 0;
  color: #4b5563;
  font-size: 17px;
  line-height: 1.6;
}

.pricing-calculator {
  margin-top: 56px;
}

.pricing-calculator__section-head {
  max-width: min(1180px, 100%);
  margin: 10px auto 28px;
  padding: 4px 0 6px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.pricing-calculator__section-title {
  margin: 0 auto;
  max-width: none;
  width: 100%;
  color: #111111;
  font-family: var(--font-sans);
  font-size: clamp(24px, 2.7vw, 36px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.pricing-calculator__section-text {
  max-width: 66ch;
  margin: 0 auto;
  color: #4b5563;
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.5;
  font-weight: 500;
  text-wrap: balance;
}

.pricing-calculator__panel {
  padding: clamp(22px, 3.3vw, 34px);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at top left, rgba(191, 219, 254, 0.15), transparent 28%),
    radial-gradient(circle at top right, rgba(196, 181, 253, 0.16), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  box-shadow:
    0 24px 64px rgba(15, 15, 16, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.pricing-calculator__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(22px, 2.6vw, 32px);
  align-items: start;
}

.pricing-calculator__main {
  min-width: 0;
}

.pricing-calculator__intro {
  max-width: 560px;
}

.pricing-calculator__eyebrow {
  margin: 0 0 8px;
  color: #5b24df;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-calculator__title {
  margin: 0;
  color: #111111;
  font-size: clamp(22px, 2.3vw, 30px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.pricing-calculator__fields {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 16px;
}

.pricing-calculator__field {
  display: grid;
  gap: 8px;
}

.pricing-calculator__label {
  color: #111111;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.pricing-calculator__select-wrap,
.pricing-calculator__quantity-wrap {
  position: relative;
}

.pricing-calculator__select,
.pricing-calculator__input {
  width: 100%;
  min-height: 60px;
  border: 1.5px solid rgba(17, 17, 17, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: #111111;
  font: inherit;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.1;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 10px 24px rgba(15, 15, 16, 0.04);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.pricing-calculator__select {
  padding: 0 58px 0 18px;
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #111111 50%),
    linear-gradient(135deg, #111111 50%, transparent 50%);
  background-position:
    calc(100% - 27px) calc(50% - 4px),
    calc(100% - 15px) calc(50% - 4px);
  background-size: 12px 12px, 12px 12px;
  background-repeat: no-repeat;
}

.pricing-calculator__input {
  padding: 0 126px 0 18px;
}

.pricing-calculator__select:focus,
.pricing-calculator__input:focus {
  border-color: rgba(91, 36, 223, 0.72);
  box-shadow:
    0 0 0 4px rgba(91, 36, 223, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: translateY(-1px);
}

.pricing-calculator__hint {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: rgba(17, 17, 17, 0.34);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 500;
  pointer-events: none;
}

.pricing-calculator__result {
  margin-top: 24px;
}

.pricing-calculator__result-label {
  margin: 0 0 8px;
  color: #4338ca;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.pricing-calculator__amount-row {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.pricing-calculator__currency {
  color: #4338ca;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1;
  font-weight: 800;
}

.pricing-calculator__amount {
  display: inline-block;
  font-size: clamp(40px, 5.3vw, 70px);
  line-height: 0.95;
  font-weight: 800;
  letter-spacing: -0.05em;
  background: linear-gradient(90deg, #312e81 0%, #7c3aed 46%, #f97316 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.pricing-calculator__suffix {
  padding-bottom: 5px;
  color: #374151;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1;
  font-weight: 600;
}

.pricing-calculator__meta {
  margin: 10px 0 0;
  color: #4b5563;
  font-size: 13px;
  line-height: 1.55;
}

.pricing-calculator__aside {
  min-width: 0;
  padding-left: clamp(20px, 2.2vw, 30px);
  border-left: 1px solid rgba(91, 36, 223, 0.12);
  display: grid;
  align-content: start;
  gap: 18px;
}

.pricing-calculator__aside-title {
  margin: 0;
  color: #111111;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.pricing-calculator__benefit-list {
  display: grid;
  gap: 12px;
}

.pricing-calculator__benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-calculator__benefit-icon {
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: linear-gradient(180deg, #efe7ff 0%, #d7c5ff 100%);
  color: #5b24df;
  font-size: 18px;
  font-weight: 800;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 10px 20px rgba(91, 36, 223, 0.14);
}

.pricing-calculator__benefit-text {
  color: #111111;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pricing-calculator__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 18px;
  border: 1px solid rgba(91, 36, 223, 0.84);
  background: linear-gradient(135deg, #5b24df 0%, #7334f0 55%, #8648f6 100%);
  color: #ffffff;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-decoration: none;
  box-shadow:
    0 18px 34px rgba(91, 36, 223, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.pricing-calculator__cta:hover,
.pricing-calculator__cta:focus-visible {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow:
    0 22px 36px rgba(91, 36, 223, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

@media (max-width: 1100px) {
  .pricing-calculator__layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pricing-calculator__fields {
    grid-template-columns: 1fr;
  }

  .pricing-calculator__aside {
    padding-top: 22px;
    padding-left: 0;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
    border-left: 0;
  }

  .service-slider__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .service-slider__track {
    grid-auto-columns: calc((100% - var(--service-slider-gap)) / 2);
  }

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

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

  .proposal-page__header.contact-section__header {
    justify-content: center;
    text-align: center;
  }

  .proposal-page__content.contact-section__content {
    grid-template-columns: 1fr;
    gap: 18px;
  }

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

  .proposal-page__content .contact-form__submit {
    justify-self: center;
  }

  .proposal-page__content .contact-form__status {
    text-align: center;
  }
}

.site-footer {
  margin: 0;
  padding: 0;
  background: #050505;
  color: #ffffff;
  border-radius: 64px 64px 0 0;
  overflow: hidden;
  transition:
    border-radius 320ms ease,
    box-shadow 320ms ease;
}

.site-footer:hover {
  border-radius: 80px 80px 0 0;
  box-shadow: inset 0 1px 0 rgba(128, 72, 245, 0.38);
}

.site-footer__panel {
  width: min(1540px, calc(100% - 64px));
  margin: 0 auto;
  padding: 34px 0 42px;
}

.site-footer__hero {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(140px, 18vw, 280px);
  padding: 12px 12px 18px;
}

.site-footer__wordmark {
  display: grid;
  justify-items: stretch;
  gap: 0;
  width: 100%;
  max-width: 9.4ch;
  margin: 0 auto;
  font-family: var(--font-sans);
  font-size: clamp(84px, 12vw, 220px);
  line-height: 0.86;
  font-weight: 900;
  letter-spacing: clamp(0.08em, 0.45vw, 0.14em);
  text-align: center;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 2px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.92);
  text-shadow: none;
  user-select: none;
  cursor: default;
  transform-origin: center top;
  transition:
    -webkit-text-stroke-color 220ms ease,
    transform 320ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 220ms ease,
    letter-spacing 320ms ease;
}

.site-footer__wordmark-line {
  display: block;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

.site-footer__hero:hover .site-footer__wordmark,
.site-footer__wordmark:hover {
  -webkit-text-stroke-color: #8048f5;
  letter-spacing: 0.16em;
  transform: perspective(1100px) rotateX(16deg) scaleY(0.92) translateY(-2px);
  filter: drop-shadow(0 14px 30px rgba(128, 72, 245, 0.16));
}

.site-footer__divider {
  height: 1px;
  margin: 34px 0 38px;
  background: rgba(255, 255, 255, 0.1);
}

.site-footer__content {
  display: grid;
  grid-template-columns: minmax(220px, 1.3fr) repeat(3, minmax(160px, 1fr));
  gap: clamp(28px, 4vw, 80px);
  align-items: start;
}

.site-footer__brand {
  display: grid;
  gap: 18px;
}

.site-footer__brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-footer__logo {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  background: #ffffff;
  padding: 8px;
  box-shadow:
    inset 0 0 0 1px rgba(17, 17, 17, 0.08),
    0 10px 24px rgba(0, 0, 0, 0.24);
}

.site-footer__brand-name {
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-footer__brand-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 1.5;
}

.site-footer__column {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer__heading {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.site-footer__link,
.site-footer__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  line-height: 1.45;
  text-decoration: none;
}

.site-footer__link:hover,
.site-footer__link:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.site-footer__bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

/* Hero */
.hero {
  text-align: center;
  margin-top: 40px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 170px;
  margin-bottom: 18px;
}

.hero__badge .letter-image {
  position: relative;
  width: 120px;
  height: 120px;
  cursor: pointer;
}

.hero__badge .animated-mail {
  position: absolute;
  left: 0;
  top: 10px;
  width: 120px;
  height: 90px;
  transition: transform 0.4s ease;
}

.hero__badge .animated-mail .body {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 60px 120px;
  border-color: transparent transparent #7334f0 transparent;
  z-index: 2;
}

.hero__badge .animated-mail .top-fold {
  position: absolute;
  top: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 60px 0 60px;
  transform-origin: 50% 0%;
  transition: transform 0.4s 0.4s ease, z-index 0.2s 0.4s ease;
  border-color: #5b24df transparent transparent transparent;
  z-index: 2;
}

.hero__badge .animated-mail .back-fold {
  position: absolute;
  bottom: 0;
  width: 120px;
  height: 60px;
  background: #5120ca;
  z-index: 0;
}

.hero__badge .animated-mail .left-fold {
  position: absolute;
  bottom: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 60px;
  border-color: transparent transparent transparent #8648f6;
  z-index: 2;
}

.hero__badge .animated-mail .letter {
  position: absolute;
  left: 12px;
  bottom: 0;
  width: 96px;
  height: 36px;
  background: #ffffff;
  border-radius: 3px;
  overflow: hidden;
  transition: height 0.4s 0.2s ease;
  box-shadow: 0 10px 24px rgba(91, 36, 223, 0.12);
  z-index: 1;
}

.hero__badge .animated-mail .letter-border {
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    #8f5cff,
    #8f5cff 6px,
    transparent 6px,
    transparent 12px
  );
}

.hero__badge .animated-mail .letter-title {
  margin-top: 7px;
  margin-left: 5px;
  width: 40%;
  height: 6px;
  background: #7c6cff;
}

.hero__badge .animated-mail .letter-context {
  margin-top: 7px;
  margin-left: 5px;
  width: 24%;
  height: 6px;
  background: rgba(124, 108, 255, 0.56);
}

.hero__badge .animated-mail .letter-stamp {
  display: grid;
  place-items: center;
  margin-top: 16px;
  margin-left: 70px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(124, 108, 255, 0.22);
}

.hero__badge .animated-mail .letter-stamp-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7c6cff;
}

.hero__badge .shadow {
  position: absolute;
  top: 108px;
  left: 50%;
  width: 132px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: radial-gradient(rgba(91, 36, 223, 0.22), rgba(91, 36, 223, 0.08), rgba(91, 36, 223, 0));
  transition: width 0.4s ease;
}

.hero__badge .letter-image:hover .animated-mail {
  transform: translateY(24px);
}

.hero__badge .letter-image:hover .animated-mail .top-fold {
  transition: transform 0.4s ease, z-index 0.2s ease;
  transform: rotateX(180deg);
  z-index: 0;
}

.hero__badge .letter-image:hover .animated-mail .letter {
  height: 108px;
}

.hero__badge .letter-image:hover .shadow {
  width: 100px;
}

@keyframes mobile-mail-bob {
  0%,
  18%,
  100% {
    transform: translateY(0);
  }

  28%,
  56% {
    transform: translateY(24px);
  }
}

@keyframes mobile-mail-fold {
  0%,
  22%,
  100% {
    transform: rotateX(0);
    z-index: 2;
  }

  28%,
  56% {
    transform: rotateX(180deg);
    z-index: 0;
  }
}

@keyframes mobile-mail-letter {
  0%,
  18%,
  100% {
    height: 36px;
  }

  26%,
  56% {
    height: 108px;
  }
}

@keyframes mobile-mail-shadow {
  0%,
  18%,
  100% {
    width: 132px;
  }

  28%,
  56% {
    width: 100px;
  }
}

.hero__title {
  font-size: clamp(46px, 8vw, 90px);
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 auto 28px;
  max-width: 1040px;
}

.hero__subtitle {
  margin: 0 auto 38px;
  max-width: 820px;
  color: #6b7280;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.hero__actions {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease, color 140ms ease;
}

.btn:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.4);
  outline-offset: 4px;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.btn--primary {
  background: #0f0f10;
  color: #ffffff;
}

.btn--primary:hover {
  color: #7c6cff;
}

.btn--secondary {
  background: #ffffff;
  color: #0f0f10;
  border-color: #e5e7eb;
  box-shadow: inset 0 0 0 1px #f4f4f5;
}

.btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.marquee {
  margin: 84px auto 72px;
  width: min(1100px, calc(100% - 64px));
  overflow: hidden;
  position: relative;
}

.marquee__track {
  display: flex;
  gap: 28px;
  animation: marquee 26s linear infinite;
}

.marquee__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-weight: 600;
  color: #0f0f10;
  font-size: 14px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  white-space: nowrap;
}

.marquee__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f0f10;
  font-size: 16px;
  line-height: 1;
}

.marquee__label {
  display: inline-block;
}

.marquee:hover .marquee__track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.gallery-shell {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 72px 0 88px;
  background: #0b0b0c;
  border-radius: 110px 110px 0 0;
  overflow: hidden;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.45),
    0 -8px 24px rgba(0, 0, 0, 0.28);
}

.gallery-card {
  width: min(1280px, calc(100% - 80px));
  margin: 0 auto;
  background: #050505;
  border: 2px solid #7c6cff;
  border-radius: 36px;
  min-height: 0;
  padding: 18px;
  box-shadow:
    0 40px 90px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(255, 255, 255, 0.02),
    0 0 40px rgba(124, 108, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gallery-visual {
  width: 100%;
  aspect-ratio: 16 / 7.6;
  height: auto;
  background: #050505;
  border-radius: 28px;
  border: 2px solid rgba(124, 108, 255, 0.6);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 24px 48px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  position: relative;
  display: grid;
  place-items: center;
}

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

.gallery-showcase-image {
  width: 90%;
  height: 90%;
  object-fit: contain;
  object-position: center top;
  justify-self: center;
  align-self: start;
  margin-top: 0;
  transform: translateY(-172px);
  padding: 0;
  background: #050505;
}

.gallery-fallback {
  color: #8c92a4;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-align: center;
  padding: 18px 22px;
}

.services-overview {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 88px 0 112px;
  background: #050505;
  color: #ffffff;
}

.services-overview__inner {
  width: min(1520px, calc(100% - 96px));
  margin: 0 auto;
}

.services-overview__title {
  margin: 0 0 44px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 5vw, 74px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-align: center;
}

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

.service-card {
  display: block;
  min-height: 254px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
  transition: background-color 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.service-card--link {
  color: inherit;
  text-decoration: none;
}

.service-card--link:focus-visible {
  outline: 2px solid rgba(167, 139, 250, 0.62);
  outline-offset: 4px;
}

.service-card__title {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: color 0.24s ease;
}

.service-card__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.55;
  letter-spacing: -0.02em;
  transition: color 0.24s ease;
}

.service-card:hover,
.service-card:focus-within {
  border-color: #8b5cf6;
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.65);
}

.service-card:hover .service-card__title,
.service-card:focus-within .service-card__title,
.service-card:hover .service-card__text,
.service-card:focus-within .service-card__text {
  color: #050505;
}

.process-overview {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 92px 0 116px;
  position: relative;
  background: #050505;
  color: #050505;
  overflow: hidden;
}

.process-overview::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  border-radius: 68px 68px 0 0;
}

.process-overview__inner {
  width: min(1520px, calc(100% - 96px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.process-overview__title {
  margin: 0 0 44px;
  color: #050505;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 5vw, 72px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
}

.process-overview__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}

.process-card {
  min-height: 184px;
  padding: 24px 24px 28px;
  border: 2px solid #c9c9c9;
  border-radius: 22px;
  background: #ffffff;
  transform: scale(1);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.process-card__title {
  margin: 0 0 18px;
  color: #050505;
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.process-card__text {
  margin: 0;
  color: #111111;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.process-card:hover,
.process-card:focus-within {
  transform: translateY(-4px) scale(1.018);
  border-color: #a78bfa;
  box-shadow: 0 18px 34px rgba(17, 17, 17, 0.08);
}

.why-choose {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 94px 0 120px;
  background: #050505;
  border-radius: 72px 72px 0 0;
  color: #ffffff;
  overflow: hidden;
}

.why-choose__inner {
  width: min(1400px, calc(100% - 96px));
  margin: 0 auto;
}

.why-choose__title {
  margin: 0 0 42px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 5vw, 76px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  text-align: center;
}

.why-choose__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.why-card {
  min-height: 182px;
  padding: 34px 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateY(64px) scale(0.985);
  transition:
    transform 0.78s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.78s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease;
  transition-delay: var(--reveal-delay, 0s);
  will-change: transform, opacity;
}

.why-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.why-card:hover,
.why-card:focus-within {
  border-color: rgba(139, 92, 246, 0.78);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.24);
  transform: translateY(-6px) scale(1.015);
}

.why-card__title {
  margin: 0 0 14px;
  color: #ffffff;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.why-card__text {
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.contact-section {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0;
  background: #050505;
}

.contact-section__panel {
  width: 100vw;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
  padding: 28px 24px 32px;
  border-radius: 72px 72px 0 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(147, 197, 253, 0.08), transparent 24%),
    radial-gradient(circle at 84% 72%, rgba(196, 181, 253, 0.1), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f8f8f8 100%);
  overflow: hidden;
}

.contact-section__decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.contact-doodle {
  position: absolute;
  color: transparent;
  font-family: "Arial Rounded MT Bold", "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1.8px rgba(17, 17, 17, 0.22);
  opacity: 0.82;
  animation: contact-doodle-float 11s ease-in-out infinite;
}

.contact-doodle--circle {
  top: 18%;
  left: 5%;
  font-size: clamp(62px, 4.8vw, 96px);
  animation-delay: -1.4s;
}

.contact-doodle--square {
  top: 24%;
  right: 6%;
  font-size: clamp(50px, 4vw, 82px);
  animation-delay: -4.2s;
}

.contact-doodle--triangle {
  bottom: 22%;
  left: 9%;
  font-size: clamp(56px, 4.4vw, 90px);
  animation-delay: -2.8s;
}

.contact-doodle--cross {
  top: 14%;
  right: 24%;
  font-size: clamp(52px, 4.1vw, 86px);
  animation-delay: -5.1s;
}

.contact-doodle--diamond {
  bottom: 17%;
  right: 9%;
  font-size: clamp(44px, 3.5vw, 72px);
  animation-delay: -3.3s;
}

.contact-doodle--ring {
  bottom: 12%;
  left: 29%;
  font-size: clamp(48px, 3.8vw, 76px);
  animation-delay: -6.1s;
}

.contact-section__header {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 680px;
  margin: 0 auto 22px;
  display: flex;
  justify-content: center;
  text-align: center;
  opacity: 0;
  transform: translateY(24px);
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.72s ease;
}

.contact-section__content {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100% - 72px));
  margin: 0 auto;
  display: block;
}

.contact-section__form-column {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(28px);
  transition:
    transform 0.72s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.72s ease;
}

.contact-section__eyebrow {
  display: none;
}

.contact-section__title {
  margin: 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 72px;
  padding: 10px 26px 13px;
  border: 1.5px solid rgba(17, 17, 17, 0.12);
  border-radius: 38px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0) 34%, rgba(255, 255, 255, 0.82) 50%, rgba(255, 255, 255, 0) 66%) 135% 0 / 220% 100% no-repeat,
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.8));
  box-shadow:
    0 10px 22px rgba(17, 17, 17, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  color: #070707;
  font-size: clamp(30px, 3.2vw, 44px);
  line-height: 0.94;
  font-weight: 800;
  letter-spacing: -0.05em;
  backdrop-filter: blur(10px);
  will-change: transform, box-shadow, border-color, background-position;
}

.contact-section__description {
  display: none;
}

.contact-form {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 18px;
  align-items: start;
}

.contact-form__group {
  display: grid;
  gap: 6px;
  align-content: start;
  opacity: 0;
  transform: translateY(18px);
  transition:
    transform 0.66s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.66s ease;
}

.contact-form__group--wide {
  grid-column: 1 / -1;
}

.contact-form__group:nth-child(1) {
  transition-delay: 0.12s;
}

.contact-form__group:nth-child(2) {
  transition-delay: 0.16s;
}

.contact-form__group:nth-child(3) {
  transition-delay: 0.2s;
}

.contact-form__group:nth-child(4) {
  transition-delay: 0.24s;
}

.contact-form__group:nth-child(5) {
  transition-delay: 0.28s;
}

.contact-form__group:nth-child(6) {
  transition-delay: 0.32s;
}

.contact-form__group:nth-child(7) {
  transition-delay: 0.36s;
}

.contact-form__field {
  width: 100%;
  min-height: 64px;
  padding: 0 20px;
  border: 2px solid rgba(17, 17, 17, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  color: #111111;
  font: inherit;
  font-size: 16px;
  line-height: 1.2;
  outline: none;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 0 0 0 rgba(128, 72, 245, 0);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease, background-color 160ms ease;
}

.contact-form__field::placeholder {
  color: rgba(17, 17, 17, 0.46);
}

.contact-form__field--select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 52px;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(17, 17, 17, 0.58) 50%),
    linear-gradient(135deg, rgba(17, 17, 17, 0.58) 50%, transparent 50%);
  background-position:
    calc(100% - 27px) calc(50% - 3px),
    calc(100% - 19px) calc(50% - 3px);
  background-size: 7px 7px, 7px 7px;
  background-repeat: no-repeat;
}

.contact-form__field--select:invalid {
  color: rgba(17, 17, 17, 0.46);
}

.contact-form__field--select option,
.contact-form__field--select optgroup {
  color: #111111;
}

.contact-form__field:focus {
  border-color: rgba(128, 72, 245, 0.58);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(128, 72, 245, 0.08);
  transform: translateY(-1px);
}

.contact-form__field.is-invalid {
  border-color: rgba(239, 68, 68, 0.9);
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.12);
}

.contact-form__field--textarea {
  min-height: 132px;
  padding: 18px 20px;
  resize: none;
}

.contact-form__error {
  min-height: 16px;
  margin: 0;
  color: #dc2626;
  font-size: 12px;
  line-height: 1.3;
  padding-left: 6px;
}

.contact-form__status {
  min-height: 20px;
  margin: 4px 0 0;
  color: #111111;
  font-size: 13px;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 160ms ease,
    transform 0.66s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-form__status.is-visible {
  opacity: 1;
}

.contact-form__status.is-success {
  color: #0f766e;
}

.contact-form__status.is-error {
  color: #dc2626;
}

.contact-form__submit {
  grid-column: 1 / -1;
  justify-self: center;
  width: min(100%, 240px);
  min-height: 56px;
  opacity: 0;
  transform: translateY(18px);
  position: relative;
  overflow: hidden;
  border: 2px solid #6d28d9;
  border-radius: 999px;
  background: linear-gradient(180deg, #8f5bff 0%, #8048f5 48%, #6d28d9 100%);
  color: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  isolation: isolate;
  box-shadow:
    0 12px 28px rgba(109, 40, 217, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -6px 12px rgba(76, 29, 149, 0.18);
  transition:
    opacity 0.66s ease,
    transform 0.66s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 180ms ease,
    filter 180ms ease,
    border-color 180ms ease;
  transition-delay: 0.32s;
}

.contact-form__submit::before {
  content: "";
  position: absolute;
  inset: 3px 5px auto;
  height: 46%;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.06));
  pointer-events: none;
}

.contact-form__submit::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(167, 139, 250, 0.45),
    inset 0 -2px 0 rgba(91, 33, 182, 0.55);
  pointer-events: none;
}

.contact-form__status {
  grid-column: 1 / -1;
  text-align: center;
  transition-delay: 0.36s;
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  transform: translateY(-2px);
  filter: saturate(1.06) brightness(1.03);
  border-color: #7c3aed;
  box-shadow:
    0 16px 34px rgba(109, 40, 217, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -6px 12px rgba(76, 29, 149, 0.22);
}

.contact-form__submit:focus-visible {
  outline: 2px solid rgba(168, 85, 247, 0.32);
  outline-offset: 4px;
}

@keyframes contact-doodle-float {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(6deg);
  }

  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }
}

@keyframes contact-title-drift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    border-color: rgba(17, 17, 17, 0.12);
    box-shadow:
      0 10px 22px rgba(17, 17, 17, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }

  50% {
    transform: translate3d(0, -7px, 0) scale(1.012);
    border-color: rgba(128, 72, 245, 0.24);
    box-shadow:
      0 16px 28px rgba(128, 72, 245, 0.08),
      0 6px 18px rgba(17, 17, 17, 0.05),
      inset 0 1px 0 rgba(255, 255, 255, 0.98);
  }

  100% {
    transform: translate3d(0, 0, 0) scale(1);
    border-color: rgba(17, 17, 17, 0.12);
    box-shadow:
      0 10px 22px rgba(17, 17, 17, 0.04),
      inset 0 1px 0 rgba(255, 255, 255, 0.95);
  }
}

@keyframes contact-title-sheen {
  0%,
  18% {
    background-position: 135% 0, 0 0;
  }

  52%,
  100% {
    background-position: -70% 0, 0 0;
  }
}

.js-contact-panel.is-visible .contact-section__header,
.js-contact-panel.is-visible .contact-section__form-column {
  opacity: 1;
  transform: translateY(0);
}

.js-contact-panel.is-visible .contact-section__title {
  animation:
    contact-title-drift 5.8s ease-in-out infinite,
    contact-title-sheen 5.8s linear infinite;
}

.js-contact-panel.is-visible .contact-section__form-column {
  transition-delay: 0.08s;
}

.js-contact-panel.is-visible .contact-form__group,
.js-contact-panel.is-visible .contact-form__submit,
.js-contact-panel.is-visible .contact-form__status {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero__badge .animated-mail,
  .hero__badge .animated-mail .top-fold,
  .hero__badge .animated-mail .letter,
  .hero__badge .shadow,
  .navbar__toggle-icon,
  .mobile-nav__backdrop,
  .mobile-nav__panel,
  .contact-doodle,
  .contact-section__header,
  .contact-section__form-column,
  .contact-form__group,
  .contact-form__field,
  .contact-form__submit,
  .contact-form__status,
  .contact-section__title {
    transition: none;
    transform: none;
    animation: none;
  }
}

@media (max-width: 768px) {
  .page--cw .page-content {
    width: min(100%, calc(100% - 20px));
  }

  .page--gd .page-content {
    width: min(100%, calc(100% - 20px));
  }

  .page--gap .page-content {
    width: min(100%, calc(100% - 20px));
  }

  .service-page {
    padding: 18px 0 56px;
  }

  .service-page__hero {
    margin-bottom: 24px;
  }

  .service-page__eyebrow {
    font-size: 12px;
  }

  .service-page__title {
    font-size: clamp(36px, 12vw, 50px);
  }

  .service-page__subtitle {
    font-size: 18px;
  }

  .service-page__actions {
    flex-direction: column;
  }

  .service-page__actions .btn {
    width: min(100%, 320px);
  }

  .service-page__statement-card {
    padding: 28px 22px 30px;
    border-radius: 30px;
  }

  .service-page__statement-title {
    font-size: clamp(28px, 9vw, 40px);
  }

  .service-page__statement-text {
    max-width: none;
    font-size: clamp(20px, 6vw, 28px);
  }

  .service-work {
    margin-top: 42px;
  }

  .service-work__head {
    margin-bottom: 20px;
  }

  .service-work__title {
    font-size: clamp(28px, 8vw, 38px);
  }

  .service-work__text {
    font-size: clamp(15px, 4vw, 18px);
  }

  .service-work__groups {
    gap: 18px;
  }

  .service-work-group {
    padding: 18px;
    border-radius: 24px;
  }

  .service-work-group__head {
    margin-bottom: 14px;
  }

  .service-work-group__title {
    font-size: 24px;
  }

  .service-work-group__text {
    font-size: 15px;
  }

  .service-work-group__grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-work-example {
    padding: 14px;
    border-radius: 20px;
  }

  .service-work-example__media {
    margin-bottom: 12px;
    padding: 10px;
    border-radius: 18px;
  }

  .service-work-example__placeholder {
    border-radius: 14px;
  }

  .service-work-example__text {
    font-size: 14px;
  }

  .showcase-modal {
    padding: 14px;
  }

  .showcase-modal__dialog {
    width: min(100%, calc(100vw - 18px));
    max-height: calc(100vh - 20px);
    padding: 16px;
    border-radius: 24px;
  }

  .showcase-modal__close {
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .showcase-modal__media {
    margin-bottom: 16px;
    padding: 10px;
    border-radius: 20px;
  }

  .showcase-modal__placeholder {
    border-radius: 16px;
  }

  .showcase-modal__title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .showcase-modal__text {
    font-size: 15px;
  }

  .pricing-calculator {
    margin-top: 40px;
  }

  .pricing-calculator__section-head {
    margin: 6px auto 20px;
    padding: 0;
    gap: 10px;
  }

  .pricing-calculator__section-title {
    max-width: 100%;
    font-size: clamp(22px, 5.6vw, 30px);
    line-height: 1.02;
  }

  .pricing-calculator__section-text {
    max-width: 34ch;
    font-size: clamp(14px, 3.8vw, 17px);
    line-height: 1.42;
  }

  .pricing-calculator__panel {
    padding: 20px 16px 22px;
    border-radius: 24px;
  }

  .pricing-calculator__title {
    font-size: clamp(20px, 6vw, 25px);
  }

  .pricing-calculator__fields {
    margin-top: 18px;
    gap: 10px;
  }

  .pricing-calculator__select,
  .pricing-calculator__input {
    min-height: 52px;
    font-size: 15px;
    border-radius: 15px;
  }

  .pricing-calculator__select {
    padding: 0 48px 0 14px;
    background-position:
      calc(100% - 23px) calc(50% - 4px),
      calc(100% - 13px) calc(50% - 4px);
    background-size: 11px 11px, 11px 11px;
  }

  .pricing-calculator__input {
    padding: 0 88px 0 14px;
  }

  .pricing-calculator__hint {
    right: 14px;
    font-size: 12px;
  }

  .pricing-calculator__result {
    margin-top: 20px;
  }

  .pricing-calculator__currency {
    font-size: 20px;
  }

  .pricing-calculator__amount {
    font-size: clamp(36px, 13vw, 52px);
  }

  .pricing-calculator__suffix {
    padding-bottom: 3px;
    font-size: 15px;
  }

  .pricing-calculator__meta {
    font-size: 12px;
  }

  .pricing-calculator__aside {
    gap: 14px;
  }

  .pricing-calculator__aside-title {
    font-size: 22px;
  }

  .pricing-calculator__benefit-list {
    gap: 10px;
  }

  .pricing-calculator__benefit-item {
    gap: 10px;
  }

  .pricing-calculator__benefit-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  .pricing-calculator__benefit-text {
    font-size: 15px;
  }

  .pricing-calculator__cta {
    width: 100%;
    min-height: 48px;
    border-radius: 15px;
    font-size: 16px;
  }

  .service-slider {
    margin-top: 24px;
  }

  .service-slider__header {
    align-items: stretch;
    margin-bottom: 16px;
  }

  .service-slider__controls {
    justify-content: center;
    width: 100%;
    gap: 12px;
  }

  .service-slider__control {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }

  .service-slider__track {
    grid-auto-columns: 100%;
  }

  .service-page__detail-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-page__detail-card {
    min-height: 0;
    padding: 22px 18px;
    border-radius: 22px;
  }

  .service-page__detail-icon {
    width: 50px;
    height: 50px;
    border-radius: 17px;
  }

  .service-page__detail-icon-svg {
    width: 24px;
    height: 24px;
  }

  .proposal-page {
    padding: 18px 0 54px;
  }

  .proposal-page__intro {
    width: min(100%, calc(100% - 20px));
    margin-bottom: 20px;
    padding: 0;
  }

  .proposal-page__back {
    min-height: 40px;
    padding: 0 16px;
    font-size: 13px;
  }

  .proposal-page__eyebrow {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: 12px;
  }

  .proposal-page__title {
    max-width: 10ch;
    font-size: clamp(34px, 11vw, 48px);
  }

  .proposal-page__text {
    font-size: 17px;
  }

  .proposal-page__panel.contact-section__panel {
    width: 100%;
    padding: 22px 14px 20px;
    border-radius: 32px;
  }

  .proposal-page__header.contact-section__header {
    margin-bottom: 20px;
    justify-content: center;
    text-align: center;
  }

  .proposal-page__content.contact-section__content {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .proposal-page__info {
    grid-template-columns: 1fr;
  }

  .proposal-page__info-card {
    padding: 18px 16px;
    border-radius: 20px;
  }

  .proposal-page__content .contact-form__submit {
    justify-self: stretch;
  }

  .proposal-page__content .contact-form__status {
    text-align: center;
  }

  .proposal-flash {
    width: min(100%, 320px);
    min-height: 42px;
    padding: 10px 18px;
    font-size: 14px;
    text-align: center;
  }

  .hero__badge {
    width: 156px;
    height: 136px;
    margin-bottom: 22px;
  }

  .hero__badge .letter-image {
    transform: scale(0.82);
  }

  .hero__title {
    font-size: clamp(38px, 10vw, 64px);
  }

  .hero__subtitle {
    font-size: 19px;
  }

  .hero__actions {
    flex-direction: column;
    gap: 10px;
  }

  .marquee {
    margin: 64px auto 56px;
  }

  .gallery-card {
    border-radius: 24px;
    min-height: 0;
    padding: 18px 16px;
  }

  .gallery-visual {
    border-radius: 20px;
  }

  .services-overview {
    padding: 64px 0 80px;
  }

  .services-overview__inner {
    width: min(100%, calc(100% - 32px));
  }

  .services-overview__title {
    margin-bottom: 28px;
    font-size: clamp(38px, 10vw, 52px);
  }

  .services-overview__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    min-height: 0;
    padding: 24px;
    border-radius: 22px;
  }

  .service-card__text {
    font-size: 17px;
  }

  .process-overview {
    padding: 64px 0 80px;
  }

  .process-overview::before {
    border-radius: 36px 36px 0 0;
  }

  .process-overview__inner {
    width: min(100%, calc(100% - 32px));
  }

  .process-overview__title {
    margin-bottom: 28px;
    font-size: clamp(38px, 10vw, 52px);
  }

  .process-overview__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-card {
    min-height: 0;
    padding: 20px 18px 22px;
    border-radius: 18px;
  }

  .process-card__title {
    margin-bottom: 16px;
    font-size: 22px;
  }

  .process-card__text {
    font-size: 17px;
  }

  .why-choose {
    padding: 64px 0 80px;
    border-radius: 36px 36px 0 0;
  }

  .why-choose__inner {
    width: min(100%, calc(100% - 32px));
  }

  .why-choose__title {
    margin-bottom: 28px;
    font-size: clamp(38px, 10vw, 54px);
  }

  .why-choose__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-card {
    min-height: 0;
    padding: 28px 22px;
    border-radius: 20px;
  }

  .why-card__text {
    font-size: 17px;
  }

  .contact-section {
    padding: 0;
  }

  .contact-section__panel {
    width: 100vw;
    padding: 22px 14px 20px;
    border-radius: 38px 38px 0 0;
  }

  .contact-section__content {
    width: min(100%, calc(100% - 8px));
  }

  .contact-section__header {
    max-width: none;
    margin-bottom: 20px;
  }

  .contact-doodle {
    -webkit-text-stroke-width: 1.5px;
    opacity: 0.62;
  }

  .contact-section__title {
    font-size: clamp(26px, 8vw, 34px);
    min-height: 0;
    width: min(100%, 286px);
    padding: 10px 16px 12px;
    border-radius: 24px;
  }

  .contact-section__form-column {
    max-width: none;
    justify-self: stretch;
  }

  .contact-form {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form__field {
    min-height: 54px;
    padding: 0 14px;
    border-radius: 16px;
    font-size: 15px;
  }

  .contact-form__field--textarea {
    min-height: 108px;
    padding: 14px;
  }

  .contact-form__submit {
    width: 100%;
    min-height: 52px;
    border-radius: 999px;
    font-size: 15px;
  }

  .site-footer {
    border-radius: 36px 36px 0 0;
  }

  .site-footer__panel {
    width: min(100%, calc(100% - 28px));
    padding: 24px 0 28px;
  }

  .site-footer__hero {
    min-height: 112px;
    padding: 8px 8px 14px;
  }

  .site-footer__wordmark {
    font-size: clamp(54px, 15vw, 92px);
    letter-spacing: 0.06em;
  }

  .site-footer__divider {
    margin: 24px 0 28px;
  }

  .site-footer__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .site-footer__brand-text,
  .site-footer__link,
  .site-footer__text {
    font-size: 16px;
  }
}

@media (max-width: 980px) {
  .navbar {
    grid-template-columns: auto 1fr auto;
  }

  .navbar__menu {
    gap: 18px;
  }

  .navbar__menu-link {
    font-size: 15px;
  }

  .nav-cta {
    min-width: 188px;
  }

  .nav-cta__label {
    font-size: 16px;
  }

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

@media (min-width: 769px) and (max-width: 980px) {
  .service-page__detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .contact-section__header {
    width: min(820px, 100%);
    max-width: none;
    margin-bottom: 24px;
  }

  .contact-section__content {
    width: min(900px, calc(100% - 40px));
  }

  .contact-section__form-column {
    max-width: none;
  }

  .contact-section__title {
    min-height: 68px;
    padding: 10px 22px 13px;
  }

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

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

  .site-footer__panel {
    width: min(100%, calc(100% - 48px));
  }

  .site-footer__hero {
    min-height: 140px;
  }

  .site-footer__wordmark {
    font-size: clamp(72px, 11vw, 140px);
  }

  .site-footer__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 40px;
  }
}

@media (max-width: 840px) {
  .navbar {
    grid-template-columns: auto auto;
  }

  .navbar__menu {
    display: none;
  }
}

@media (max-width: 600px) {
  .navbar {
    width: min(100%, calc(100% - 24px));
    padding: 9px 14px;
    gap: 12px;
    top: 10px;
    border-radius: 24px;
    grid-template-columns: auto auto;
  }

  .brand-logo {
    width: 44px;
  }

  .brand-name {
    font-size: 15px;
    letter-spacing: 0.1em;
  }

  .nav-cta {
    min-width: 170px;
    min-height: 44px;
    padding: 0 16px;
  }

  .nav-cta__label {
    font-size: 14px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 980px) {
  .navbar {
    width: min(100%, calc(100% - 28px));
    padding: 10px 12px;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .navbar__menu {
    display: none;
  }

  .navbar__toggle {
    display: inline-flex;
  }

  .nav-cta {
    min-width: clamp(156px, 30vw, 218px);
    min-height: 52px;
    padding: 0 18px;
  }

  .nav-cta__label {
    font-size: clamp(13px, 1.65vw, 15px);
    letter-spacing: 0.06em;
  }

  .nav-cta__icon {
    display: inline-flex;
  }

  .gallery-shell {
    padding: 58px 0 72px;
    border-radius: 72px 72px 0 0;
  }

  .gallery-card {
    width: min(100%, calc(100% - 48px));
    padding: 16px;
    border-radius: 30px;
  }

  .gallery-visual {
    aspect-ratio: 16 / 10.5;
    border-radius: 24px;
  }

  .gallery-showcase-image {
    width: auto;
    max-width: 84%;
    height: 100%;
    align-self: center;
    justify-self: center;
    object-position: center top;
    transform: translateY(-8%);
    background: transparent;
  }

  .site-footer {
    border-radius: 48px 48px 0 0;
  }

  .site-footer__hero {
    padding-inline: 4px;
  }

  .site-footer__wordmark {
    max-width: 8.8ch;
    font-size: clamp(62px, 9.8vw, 122px);
    letter-spacing: clamp(0.05em, 0.32vw, 0.09em);
  }

  .site-footer__brand-text,
  .site-footer__link,
  .site-footer__text {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 768px) {
  .navbar {
    width: min(100%, calc(100% - 20px));
    padding: 10px;
    border-radius: 22px;
    top: 10px;
  }

  .navbar__brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
  }

  .brand-name {
    overflow: hidden;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
  }

  .nav-cta {
    min-width: clamp(148px, 44vw, 190px);
    min-height: 48px;
    padding: 0 14px;
  }

  .nav-cta__label {
    font-size: 12.5px;
  }

  .navbar__toggle {
    width: 46px;
    height: 46px;
  }

  .gallery-shell {
    padding: 48px 0 60px;
    border-radius: 48px 48px 0 0;
  }

  .gallery-card {
    width: min(100%, calc(100% - 20px));
    padding: 12px;
    border-radius: 24px;
  }

  .gallery-visual {
    aspect-ratio: 1 / 1.05;
    border-radius: 18px;
  }

  .gallery-showcase-image {
    max-width: 100%;
    width: auto;
    height: 100%;
    transform: translateY(-3%);
  }

  .mobile-nav__panel {
    width: min(360px, calc(100vw - 12px));
    padding: max(16px, env(safe-area-inset-top)) 16px 20px;
    gap: 18px;
  }

  .mobile-nav__menu-link {
    min-height: 52px;
    font-size: 17px;
  }

  .mobile-nav__cta {
    min-height: 52px;
    font-size: 14px;
  }

  .site-footer {
    border-radius: 32px 32px 0 0;
  }

  .site-footer__panel {
    width: min(100%, calc(100% - 20px));
    padding: 24px 0 26px;
  }

  .site-footer__hero {
    min-height: 94px;
    padding: 4px 0 10px;
  }

  .site-footer__wordmark {
    max-width: 8.4ch;
    font-size: clamp(42px, 13vw, 72px);
    line-height: 0.88;
    letter-spacing: clamp(0.02em, 0.2vw, 0.05em);
    -webkit-text-stroke-width: 1.4px;
  }

  .site-footer__divider {
    margin: 20px 0 24px;
  }

  .site-footer__bottom {
    margin-top: 24px;
    padding-top: 18px;
  }
}

@media (max-width: 380px) {
  .brand-name {
    display: none;
  }

  .nav-cta {
    min-width: 136px;
    padding: 0 12px;
  }

  .nav-cta__label {
    font-size: 11.5px;
    letter-spacing: 0.05em;
  }
}

@media (max-width: 1180px) {
  .navbar {
    width: min(100%, calc(100% - 28px));
    padding: 10px 12px;
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) auto auto;
  }

  .navbar__menu {
    display: none;
  }

  .navbar__toggle {
    display: inline-grid;
  }
}

@media (min-width: 768px) and (max-width: 1180px) {
  .nav-cta {
    min-width: clamp(156px, 22vw, 214px);
    min-height: 50px;
    padding: 0 18px;
  }

  .nav-cta__label {
    font-size: clamp(13px, 1.2vw, 15px);
    letter-spacing: 0.06em;
  }

  .nav-cta__icon {
    display: inline-flex;
  }
}

@media (max-width: 767px) {
  .navbar {
    width: min(100%, calc(100% - 20px));
    padding: 10px 12px;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .navbar__brand {
    gap: 10px;
    min-width: 0;
  }

  .brand-logo {
    width: 42px;
  }

  .brand-name {
    overflow: hidden;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-overflow: ellipsis;
  }

  .marquee__track {
    animation-duration: 5s;
  }

  .hero__badge .letter-image {
    cursor: default;
  }

  .hero__badge .animated-mail {
    animation: mobile-mail-bob 3.8s ease-in-out infinite;
  }

  .hero__badge .animated-mail .top-fold {
    animation: mobile-mail-fold 3.8s ease-in-out infinite;
    backface-visibility: hidden;
  }

  .hero__badge .animated-mail .letter {
    animation: mobile-mail-letter 3.8s ease-in-out infinite;
  }

  .hero__badge .shadow {
    animation: mobile-mail-shadow 3.8s ease-in-out infinite;
  }

  .nav-cta {
    display: none;
  }

  .navbar__toggle {
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 380px) {
  .navbar {
    padding-inline: 10px;
  }

  .brand-logo {
    width: 38px;
  }

  .brand-name {
    display: inline-flex;
    font-size: 11px;
    letter-spacing: 0.06em;
  }

  .nav-cta {
    display: none;
  }
}
