:root {
  --bg:#FEFEFE;
  --ink:#231F20;
  --divider:#000000;
  --blue:#002BFF;
  --pink:#FF6C93;
  --muted:#FFFFFF;
  --overlay: rgba(0, 43, 255, 0.25);
  --panel: #F5F6F9;
  --max:82.813rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
input:focus, textarea:focus {
  box-shadow: none !important;
}

body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  color: var(--ink);
  background: #f2f2f2;
  overflow-x: hidden;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

h2 {
  font-size: clamp(2.5rem, 4vw, 4.5rem);
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--blue);
}

.max-w {
  width: 100%;
  max-width: var(--max);
}

.margin-auto-x {
  margin-left: auto;
  margin-right: auto;
}

.divider {
  width: 100%;
  border-bottom: 2px solid #d0d0d0;
}

.hidden {
  display: none !important;
}

.mobile-only {
  display: none;
}

.inner-horizontal-margin {
  margin-top: 120px;
  margin-left: 7rem;
  margin-right: 7rem;
}

@media screen and (max-width: 80rem) {
  .inner-horizontal-margin {
    margin-left: 5rem;
    margin-right: 5rem;
  }
}
@media screen and (max-width: 64rem) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: flex;
  }
  .inner-horizontal-margin {
    margin-top: 40px;
    margin-left: 5rem;
    margin-right: 5rem;
  }
}
@media (max-width: 48rem) {
  h2 {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
  }
}
@media screen and (max-width: 40rem) {
  .inner-horizontal-margin {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}
.wysiwyg > :first-child {
  margin-top: 0;
}
.wysiwyg > :last-child {
  margin-bottom: 0;
}
.wysiwyg p, .wysiwyg ul, .wysiwyg ol, .wysiwyg blockquote {
  margin: 0.35rem 0 0;
}
.wysiwyg p {
  margin-top: 0;
}
.wysiwyg a {
  color: #0b46ff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wysiwyg a:hover {
  opacity: 0.85;
}
.wysiwyg strong, .wysiwyg b {
  font-weight: 600;
}
.wysiwyg em {
  font-style: italic;
}
.wysiwyg ul, .wysiwyg ol {
  padding-left: 1.1rem;
}
.wysiwyg li {
  margin: 0.2rem 0;
}
.wysiwyg blockquote {
  padding-left: 0.8rem;
  border-left: 2px solid rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.65);
}
.wysiwyg hr {
  border: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  margin: 0.7rem 0;
}
.wysiwyg img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0.6rem 0;
}
.wysiwyg h3, .wysiwyg h4 {
  color: var(--blue);
}
.wysiwyg h3 {
  margin-bottom: 12px;
}

@keyframes headerOpacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
[data-aos=opacity] {
  opacity: 0;
  -webkit-transition: all 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-aos=opacity].aos-animate {
  opacity: 1;
}

[data-aos=type1] {
  opacity: 0;
  -webkit-transform: translateY(40px);
  -ms-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: all 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: all 1.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

[data-aos=type1].aos-animate {
  opacity: 1;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.header {
  top: 0;
  left: 0;
  z-index: 30;
  padding: 10px 15px;
  width: 100%;
  position: fixed;
  background: rgba(255, 255, 255, 0);
  animation: headerOpacity 2s ease-in-out;
  transition: background-color 250ms ease, box-shadow 250ms ease, backdrop-filter 250ms ease;
}
.header.is-scrolled {
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06), 0 12px 24px -18px rgba(0, 0, 0, 0.18);
}
.header .wrap {
  display: flex;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  transition: background 1s linear;
}
.header .top-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  transition: padding-bottom 300ms ease, padding-top 300ms ease;
}
@media (max-width: 64rem) {
  .header .top-bar {
    width: 100%;
  }
}
.header .top-bar .brand {
  display: flex;
  flex-shrink: 0;
  padding-top: 0.313rem;
  width: 75%;
  transition: width 300ms ease, padding-top 300ms ease;
}
.header .top-bar .brand img {
  width: 280px;
  display: block;
  height: auto;
  transition: width 300ms ease, max-width 300ms ease, transform 300ms ease;
}
@media (max-width: 64rem) {
  .header .top-bar .brand img {
    width: 160px;
  }
}

.transparent {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

.lang {
  margin-top: 30px;
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
  font-size: 0.75rem;
}

.pill {
  font-size: 0.8rem;
  line-height: 0.688rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid var(--line);
  color: var(--muted);
  text-decoration: none;
  background: var(--blue);
  letter-spacing: 0.2px;
}

.is-on {
  background: var(--pink);
}

.menu-styles-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  width: 100%;
}
.menu-styles-container .lang {
  margin-top: 0;
  margin-left: 0;
}
@media (max-width: 1100px) {
  .menu-styles-container {
    align-items: end;
    justify-content: center;
    gap: 0.5rem;
    flex-direction: column;
    padding-top: 10px;
  }
}
.menu-styles-container ul {
  display: flex;
  gap: 1.125rem 0.625rem;
  flex-wrap: wrap;
  justify-content: start;
  transition: padding 300ms ease, gap 300ms ease;
}
.menu-styles-container ul li {
  align-content: center;
  list-style: none;
  transition: transform 0.15s ease;
}
.menu-styles-container ul li:hover {
  transform: translateY(-0.15rem);
}
.menu-styles-container ul li:hover a {
  background-color: var(--blue);
}
.menu-styles-container ul li a {
  font-size: 1.125rem;
  padding: 0.375rem 0.5rem;
  letter-spacing: 0.375rem;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--ink);
  text-decoration: none;
  transition: background-color 0.15s ease-in-out;
}
.menu-styles-container ul .current_page_item a,
.menu-styles-container ul .current-menu-item a,
.menu-styles-container ul .current-page-ancestor a {
  background: var(--pink);
}

.mobile-menu-burger {
  padding: 0 0.75rem;
}
.mobile-menu-burger .menu-button svg {
  width: 32px;
  height: 32px;
}
.mobile-menu-burger .menu-button svg:hover line {
  color: #002BFF;
}

.mobile-menu-inner {
  position: relative;
  flex-direction: column;
  width: 100%;
}

.mobile-menu-close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
}

.lang-mobile {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-start;
  gap: 0.5rem;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100dvh;
  width: min(22rem, 85vw);
  background: var(--panel);
  z-index: 60;
  transform: translateX(100%);
  transition: transform 250ms ease;
  padding: 5.5rem 1.25rem 1.5rem;
  overflow-y: auto;
  box-shadow: -24px 0 48px rgba(0, 0, 0, 0.12);
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu .pill {
  letter-spacing: 0.25rem;
}
.mobile-menu .menu-styles {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0;
  margin: 0;
}
.mobile-menu .menu-styles li a {
  display: block;
  text-decoration: none;
  background: var(--ink);
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
}
.mobile-menu .menu-styles .current_page_item a,
.mobile-menu .menu-styles .current-menu-item a,
.mobile-menu .menu-styles .current-page-ancestor a {
  background: var(--pink);
}

/* Overlay behind panel */
.mobile-menu-background {
  position: fixed;
  inset: 0;
  background: var(--overlay);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 250ms ease;
}
.mobile-menu-background.is-open {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.footer-section {
  position: relative;
  background: url("../assets/images/footer_bg.png") center/cover no-repeat, linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.9));
}
.footer-section::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(2px);
}

footer.footer {
  padding: 80px 15px;
}
@media (max-width: 80rem) {
  footer.footer {
    padding: 60px 15px 40px;
  }
}

.footer-top {
  position: relative;
  display: flex;
  z-index: 2;
}
@media (max-width: 64rem) {
  .footer-top {
    flex-wrap: wrap;
  }
}
.footer-top__left {
  width: 20%;
}
@media (max-width: 64rem) {
  .footer-top__left {
    width: 100%;
  }
}
.footer-top__left img {
  width: 140px;
}
@media (max-width: 40rem) {
  .footer-top__left img {
    width: 260px;
  }
}
.footer-top__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.4;
  margin-top: 20px;
  width: 190px;
}
@media (max-width: 40rem) {
  .footer-top__desc {
    width: 100%;
  }
}
.footer-top__lang ul {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  list-style-type: none;
  padding: 0;
}
.footer-top__lang ul li a {
  background-color: #231f20;
  color: #ffffff;
  text-decoration: none;
  padding: 4px 12px;
  display: inline-flex;
  justify-content: center;
  text-transform: uppercase;
  font-size: 15px;
}
.footer-top__lang ul li.current-lang a {
  background-color: #ff6c93;
  color: #ffffff;
}
.footer-top__social {
  margin-top: 30px;
  display: flex;
  gap: 8px;
}
.footer-top__social img {
  width: 42px;
  height: 42px;
}
.footer-top__middle {
  width: 55%;
  display: flex;
  justify-content: space-around;
}
@media (max-width: 64rem) {
  .footer-top__middle {
    width: 100%;
    margin-top: 40px;
    justify-content: space-between;
  }
}
@media (max-width: 40rem) {
  .footer-top__middle {
    flex-wrap: wrap;
  }
}
.footer-top__item {
  width: 170px;
}
@media (max-width: 40rem) {
  .footer-top__item {
    width: 100%;
    margin-bottom: 20px;
  }
}
.footer-top__title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
}
.footer-top__right {
  width: 25%;
}
@media (max-width: 64rem) {
  .footer-top__right {
    width: 100%;
  }
}

.footer-top-con {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.footer-top-con svg {
  width: 26px;
  height: 26px;
}
.footer-top-con a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}
.footer-top-con span {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
}

.footer-top-feedback {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  padding: 35px 90px 35px 30px;
  backdrop-filter: blur(8px);
  margin-top: -20px;
}
@media (max-width: 80rem) {
  .footer-top-feedback {
    padding: 30px 20px;
  }
}
@media (max-width: 64rem) {
  .footer-top-feedback {
    margin-top: 20px;
  }
}
.footer-top-feedback__title {
  position: relative;
  font-size: 20px;
  color: #ffffff;
  padding-left: 22px;
  line-height: 1;
}
.footer-top-feedback__title:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: #002bff;
  border-radius: 50%;
}
.footer-top-feedback__desc {
  color: #fff;
  line-height: 1.2;
  font-weight: 400;
  margin: 20px 0 26px;
}
.footer-top-feedback__btn a {
  padding: 15px 0;
  width: 100%;
  background-color: #002bff;
  color: #ffffff;
  font-weight: 500;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  border-radius: 6px;
  font-size: 18px;
  transition: background-color 0.3s ease-in-out;
}
.footer-top-feedback__btn a:hover {
  background-color: #001fb9;
}

.footer-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-menu ul li {
  margin-bottom: 8px;
}
.footer-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.footer-menu ul li a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  padding: 40px 0 0;
}
@media (max-width: 40rem) {
  .footer-bottom {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }
}
@media (max-width: 40rem) {
  .footer-bottom__left {
    width: 100%;
  }
}
.footer-bottom__left ul {
  display: flex;
  gap: 20px;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer-bottom__left ul li {
  margin-bottom: 8px;
}
.footer-bottom__left ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
}
.footer-bottom__left ul li a:hover {
  text-decoration: underline;
}
.footer-bottom__right {
  color: #ffffff;
  font-size: 17px;
}
@media (max-width: 40rem) {
  .footer-bottom__right {
    width: 100%;
  }
}

/* Keyframes outside footer to avoid redefinition issues */
@keyframes draw-circle {
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes draw-mark {
  to {
    stroke-dashoffset: 0;
  }
}
.dev-mode-screen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem;
  overflow: hidden;
  background: #002bff;
}
.dev-mode-screen__decor {
  position: absolute;
  inset: -20%;
  pointer-events: none;
  background: radial-gradient(60rem 60rem at 50% 120%, rgba(255, 255, 255, 0.06), transparent 60%);
}
.dev-mode-screen__decor::before, .dev-mode-screen__decor::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  will-change: transform;
}
.dev-mode-screen__decor::before {
  width: 38rem;
  height: 38rem;
  top: 6%;
  left: 8%;
  background: rgba(255, 108, 147, 0.4);
  animation: dev-mode-drift-a 18s ease-in-out infinite;
}
.dev-mode-screen__decor::after {
  width: 32rem;
  height: 32rem;
  bottom: 8%;
  right: 8%;
  background: rgba(255, 108, 147, 0.3);
  animation: dev-mode-drift-b 22s ease-in-out infinite;
}
.dev-mode-screen__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 34rem;
  text-align: center;
  color: #fff;
}
.dev-mode-screen__logo {
  display: inline-flex;
  padding: 0.85rem 1.5rem;
  background: #fff;
  border-radius: 2px;
  margin-bottom: 2rem;
}
.dev-mode-screen__logo img {
  height: 2.2rem;
  width: auto;
  display: block;
}
.dev-mode-screen__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}
.dev-mode-screen__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--pink);
  animation: dev-mode-pulse 1.6s ease-in-out infinite;
}
.dev-mode-screen__title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
  color: #fff;
}
.dev-mode-screen__desc {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 2.25rem;
}
.dev-mode-screen__contacts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.dev-mode-screen__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.dev-mode-screen__contact svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
.dev-mode-screen__contact:hover {
  background: #fff;
  color: var(--blue);
  border-color: #fff;
}
.dev-mode-screen__address {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.875rem;
  margin-bottom: 2rem;
}
.dev-mode-screen__address svg {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}
.dev-mode-screen__socials {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
}
.dev-mode-screen__socials a {
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  transition: background 0.2s ease, transform 0.2s ease;
}
.dev-mode-screen__socials a img {
  width: 1.1rem;
  height: 1.1rem;
}
.dev-mode-screen__socials a:hover {
  background: var(--pink);
  transform: translateY(-2px);
}

@keyframes dev-mode-pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(1.3);
  }
}
@keyframes dev-mode-drift-a {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(8%, 10%) scale(1.2);
  }
}
@keyframes dev-mode-drift-b {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-10%, -8%) scale(1.15);
  }
}
@media (max-width: 40rem) {
  .dev-mode-screen__contacts {
    flex-direction: column;
    align-items: center;
  }
}
.hero-v2__type {
  display: inline-flex;
  align-items: baseline;
}

.hero-v2__type-text {
  white-space: pre;
  color: var(--blue);
}

.hero-v2__type-cursor {
  display: inline-block;
  width: 0.06em;
  height: 0.9em;
  margin-left: 0.08em;
  background: var(--blue);
  vertical-align: -0.08em;
  animation: hero-type-blink 1s step-end infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2__type-cursor {
    animation: none;
  }
}
@keyframes hero-type-blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.hero-v2__type-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.price-calculator-section {
  padding: 4rem 15px;
}
@media (max-width: 64rem) {
  .price-calculator-section {
    padding: 3rem 15px;
  }
}

#price-calculator {
  scroll-margin-top: calc(var(--header-height, 0px) + 1.5rem);
}

.price-calculator__intro {
  max-width: 38rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.price-calculator__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.price-calculator__heading {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.price-calculator__subheading {
  margin: 0 auto;
  max-width: 34ch;
  color: rgba(35, 31, 32, 0.6);
  font-size: 1.0625rem;
  line-height: 1.5;
}

.price-calculator__credit {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(35, 31, 32, 0.6);
}

.price-calculator__credit-link {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}
.price-calculator__credit-link:hover {
  text-decoration: underline;
}

.price-calculator__wrap {
  display: grid;
  grid-template-columns: 1fr 20rem;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 64rem) {
  .price-calculator__wrap {
    grid-template-columns: 1fr;
  }
}

.price-calculator__main {
  background: #fff;
  border: 1px solid rgba(35, 31, 32, 0.1);
  border-radius: 18px;
  padding: 2rem;
}
@media (max-width: 40rem) {
  .price-calculator__main {
    padding: 1.5rem 1.25rem;
  }
}

.price-calculator__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(35, 31, 32, 0.1);
  scroll-margin-top: calc(var(--header-height, 0px) + 1rem);
}

.price-calculator__step-pill {
  border: none;
  font-family: inherit;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(35, 31, 32, 0.4);
  background: var(--surface-2, #f2f2f2);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.price-calculator__step-pill:disabled {
  cursor: default;
}
.price-calculator__step-pill.is-active {
  color: #fff;
  background: var(--blue);
}
.price-calculator__step-pill.is-done {
  color: var(--blue);
  background: var(--panel);
}
.price-calculator__step-pill.is-done:hover {
  background: rgba(0, 43, 255, 0.15);
}

.price-calculator__body {
  height: 26rem;
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 0.25rem;
}
@media (max-width: 40rem) {
  .price-calculator__body {
    height: auto;
    max-height: none;
    overflow-y: visible;
  }
}

.price-calculator__group-title {
  margin: 1.75rem 0 0.85rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(35, 31, 32, 0.5);
}
.price-calculator__group-title:first-child {
  margin-top: 0;
}

/* ---------- Step 1: project type cards ---------- */
.price-calculator__cards {
  display: grid;
  gap: 0.85rem;
}

.price-calculator__card {
  position: relative;
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 1.1rem 1.25rem;
  border: 1px solid rgba(35, 31, 32, 0.12);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.price-calculator__card input {
  margin-top: 0.3rem;
  accent-color: var(--blue);
  flex: none;
}
.price-calculator__card.is-selected {
  border-color: var(--blue);
  background: var(--panel);
}

.price-calculator__card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0.5rem 1rem;
}

.price-calculator__card-title {
  font-weight: 700;
  font-size: 1.0625rem;
}

.price-calculator__card-price {
  font-weight: 700;
  color: var(--blue);
  white-space: nowrap;
}

.price-calculator__card-desc {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: rgba(35, 31, 32, 0.6);
}

.price-calculator__card-note {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: rgba(35, 31, 32, 0.45);
}

/* ---------- Steps 2 & 4: grouped item lists ---------- */
.price-calculator__items {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.price-calculator__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(35, 31, 32, 0.1);
  border-radius: 10px;
}
.price-calculator__item--check {
  cursor: pointer;
}
.price-calculator__item--check input {
  accent-color: var(--blue);
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
}

.price-calculator__item-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  flex: 1;
  min-width: 0;
}

.price-calculator__item-name {
  font-weight: 600;
  font-size: 0.9375rem;
}

.price-calculator__item-desc {
  font-size: 0.8125rem;
  color: rgba(35, 31, 32, 0.55);
}

.price-calculator__item-price {
  flex: none;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ink);
  white-space: nowrap;
}

.price-calculator__quote-badge {
  flex: none;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: var(--panel);
  color: var(--accent-ink, var(--blue));
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.price-calculator__stepper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex: none;
}

.price-calculator__stepper-btn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid rgba(35, 31, 32, 0.2);
  background: #fff;
  font-size: 1.05rem;
  line-height: 1;
  cursor: pointer;
  color: var(--ink);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.price-calculator__stepper-btn:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.price-calculator__stepper-count {
  min-width: 1.25rem;
  text-align: center;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.price-calculator__custom {
  margin-top: 1.75rem;
}

.price-calculator__custom-input {
  display: block;
  width: 100%;
  margin-bottom: 0.6rem;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(35, 31, 32, 0.2);
  border-radius: 10px;
  font-size: 0.9375rem;
}
.price-calculator__custom-input:focus {
  outline: none;
  border-color: var(--blue);
}

.price-calculator__add-btn {
  background: none;
  border: 1px dashed rgba(35, 31, 32, 0.3);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  width: 100%;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
}
.price-calculator__add-btn:hover {
  border-color: var(--blue);
}

/* ---------- Step 3: design tiers ---------- */
.price-calculator__tiers {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 0.5rem;
}

.price-calculator__tier {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(35, 31, 32, 0.12);
  border-radius: 10px;
  cursor: pointer;
}
.price-calculator__tier input {
  margin-top: 0.25rem;
  accent-color: var(--blue);
  flex: none;
}
.price-calculator__tier div {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.price-calculator__tier.is-selected {
  border-color: var(--blue);
  background: var(--panel);
}

.price-calculator__tier-name {
  font-weight: 700;
  font-size: 0.9375rem;
}

.price-calculator__tier-price {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--blue);
}

.price-calculator__tier-desc {
  font-size: 0.8125rem;
  color: rgba(35, 31, 32, 0.55);
}

/* ---------- Controls ---------- */
.price-calculator__controls {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(35, 31, 32, 0.1);
}
.price-calculator__controls .btn {
  min-width: 8rem;
}
.price-calculator__controls .btn:only-child {
  margin-left: auto;
}

/* ---------- Step 5: summary + form ---------- */
.price-calculator__summary-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.price-calculator__summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.9375rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(35, 31, 32, 0.08);
}
.price-calculator__summary-row span {
  color: rgba(35, 31, 32, 0.7);
}
.price-calculator__summary-row b {
  flex: none;
}

.price-calculator__summary-total {
  display: flex;
  justify-content: space-between;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 2px solid var(--ink);
  font-size: 1.25rem;
  font-weight: 700;
}

.price-calculator__terms {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--surface-2, #f7f7f7);
  border-radius: 10px;
}
.price-calculator__terms p {
  margin: 0 0 0.4rem;
  font-size: 0.8125rem;
  color: rgba(35, 31, 32, 0.6);
}
.price-calculator__terms p:last-child {
  margin-bottom: 0;
}

.price-calculator__form {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price-calculator__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 40rem) {
  .price-calculator__form-row {
    grid-template-columns: 1fr;
  }
}

.price-calculator__form input[type=text],
.price-calculator__form input[type=email],
.price-calculator__form input[type=tel],
.price-calculator__form textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(35, 31, 32, 0.2);
  border-radius: 10px;
  font-size: 0.9375rem;
  font-family: inherit;
  resize: vertical;
}
.price-calculator__form input[type=text]:focus,
.price-calculator__form input[type=email]:focus,
.price-calculator__form input[type=tel]:focus,
.price-calculator__form textarea:focus {
  outline: none;
  border-color: var(--blue);
}

.price-calculator__hp {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.price-calculator__submit {
  margin-top: 0.25rem;
  cursor: pointer;
}
.price-calculator__submit:disabled {
  cursor: not-allowed;
}

.price-calculator__form-note {
  margin: 0;
  font-size: 0.875rem;
  min-height: 1.2em;
}
.price-calculator__form-note.is-success {
  color: var(--good, #1c8a5c);
}
.price-calculator__form-note.is-error {
  color: var(--crit, #c53a32);
}

.price-calculator__instant-note {
  margin: 0;
  font-size: 0.8125rem;
  color: rgba(35, 31, 32, 0.5);
}

/* ---------- Step 3: Customize (merged Pages/Design/Features) ---------- */
.price-calculator__more-toggle-wrap {
  margin-top: 1.75rem;
  text-align: center;
}

.price-calculator__more-toggle {
  border: 1px dashed rgba(35, 31, 32, 0.3);
  background: none;
  border-radius: 999px;
  padding: 0.6rem 1.5rem;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--blue);
  cursor: pointer;
}
.price-calculator__more-toggle:hover {
  border-color: var(--blue);
  background: var(--panel);
}

.price-calculator__more-panel {
  margin-top: 0.5rem;
}

/* ---------- Step 4: Estimate ---------- */
.price-calculator__estimate-heading {
  margin: 0 0 0.35rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink);
}

.price-calculator__estimate-total {
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
}

.price-calculator__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.5rem 0 1rem;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(35, 31, 32, 0.7);
  cursor: pointer;
}
.price-calculator__consent input {
  margin-top: 0.2rem;
  accent-color: var(--blue);
  flex: none;
}
.price-calculator__consent a {
  color: var(--blue);
  text-decoration: none;
}
.price-calculator__consent a:hover {
  text-decoration: underline;
}

/* ---------- Price Factors Grid block ---------- */
.price-factors {
  padding: 4rem 15px;
}
@media (max-width: 64rem) {
  .price-factors {
    padding: 3rem 15px;
  }
}

.price-factors__intro {
  max-width: 38rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.price-factors__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.price-factors__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.price-factors__desc {
  margin: 0 auto;
  max-width: 34ch;
  color: rgba(35, 31, 32, 0.6);
  font-size: 1.0625rem;
  line-height: 1.5;
}

.price-factors__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 64rem) {
  .price-factors__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 40rem) {
  .price-factors__grid {
    grid-template-columns: 1fr;
  }
}

.price-factors__card {
  padding: 1.75rem;
  border: 1px solid rgba(35, 31, 32, 0.1);
  border-radius: 16px;
  background: #fff;
}

.price-factors__number {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue);
}

.price-factors__card-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.price-factors__card-desc {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(35, 31, 32, 0.6);
}

.price-factors__cta {
  margin-top: 2.5rem;
  text-align: center;
}

.price-factors__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue);
  text-decoration: none;
}
.price-factors__cta-link:hover {
  text-decoration: underline;
}

/* ---------- FAQ (Price page) ---------- */
.price-faq {
  padding: 4rem 15px;
}
@media (max-width: 64rem) {
  .price-faq {
    padding: 3rem 15px;
  }
}

.price-faq__intro {
  max-width: 38rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.price-faq__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.price-faq__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.price-faq__desc {
  margin: 0 auto;
  max-width: 34ch;
  color: rgba(35, 31, 32, 0.6);
  font-size: 1.0625rem;
  line-height: 1.5;
}

.price-faq .price-faq__list {
  max-width: 46rem;
  margin: 0 auto;
}

/* ---------- Sidebar ---------- */
.price-calculator__sidebar {
  position: sticky;
  top: 5.5rem;
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 1.75rem;
}
@media (max-width: 64rem) {
  .price-calculator__sidebar {
    position: static;
  }
}

.price-calculator__total-label {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.price-calculator__total-value {
  font-size: 2rem;
  font-weight: 700;
  margin: 0.35rem 0 1.25rem;
  color: #fff;
}

.price-calculator__total-heading {
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.6rem;
}

.price-calculator__total-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 22rem;
  overflow-y: auto;
}
.price-calculator__total-list li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
}
.price-calculator__total-list li b {
  flex: none;
  color: #fff;
}

.breadcrumbs {
  margin: 30px 0;
}
@media (max-width: 40rem) {
  .breadcrumbs {
    margin: 10px 0;
  }
}
.breadcrumbs a {
  text-decoration: none;
  color: var(--ink);
}

.hero-section .background-img {
  width: 100%;
  height: auto;
}
.hero-section.hero-generative {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 12px;
  background: #f2f2f2;
}
.hero-section.hero-generative img, .hero-section.hero-generative video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-section.hero-generative .hero-fallback-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  pointer-events: none;
}

.hero-v2 {
  position: relative;
  min-height: 700px;
  max-height: 900px;
  height: calc(100vh - 200px);
  background: #fff;
  padding: 0 15px;
}
@media (max-width: 48rem) {
  .hero-v2 {
    min-height: auto;
    height: auto;
    padding: 60px 15px 0;
  }
}
.hero-v2 > .max-w {
  position: relative;
  height: 100%;
  display: flex;
  align-items: flex-end;
}
.hero-v2__content {
  position: relative;
  z-index: 1;
  width: fit-content;
  max-width: 700px;
  padding: 1.5rem;
  margin: -1.5rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
}
@media (max-width: 48rem) {
  .hero-v2__content {
    width: 100%;
    margin: 0;
    padding: 0;
    background: none;
  }
}
.hero-v2__eyebrow {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.hero-v2__title {
  margin: 0 0 1.25rem;
  max-width: 100%;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ff6c93;
  font-size: 94px;
}
@media (max-width: 64rem) {
  .hero-v2__title {
    font-size: 64px;
  }
}
@media (max-width: 40rem) {
  .hero-v2__title {
    font-size: 44px;
  }
}
.hero-v2__accent {
  color: #ff6c93;
}
.hero-v2__desc {
  max-width: 400px;
  margin: 0 0 2rem;
  font-size: 22px;
  line-height: 1.3;
  color: rgba(35, 31, 32, 0.65);
}
@media (max-width: 64rem) {
  .hero-v2__desc {
    font-size: 20px;
  }
}
.hero-v2__services {
  max-width: 420px;
  margin: 0 0 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(35, 31, 32, 0.5);
}
.hero-v2__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.25rem;
}
.hero-v2__actions .btn {
  padding: 0.95rem 1.85rem;
  font-size: 0.95rem;
  letter-spacing: 0;
  border-radius: 8px;
}
@media (max-width: 64rem) {
  .hero-v2__actions .btn {
    width: 100%;
  }
}
.hero-v2__badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}
@media (max-width: 64rem) {
  .hero-v2__badges {
    gap: 0.5rem 1rem;
  }
}
.hero-v2__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(35, 31, 32, 0.75);
}
.hero-v2__badge svg {
  flex: 0 0 auto;
  color: var(--blue);
}
.hero-v2__visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media (max-width: 48rem) {
  .hero-v2__visual {
    display: none;
  }
}
.hero-v2__visual .hero-generative {
  width: 100%;
  height: 100%;
  aspect-ratio: unset;
  border-radius: 0;
}

.partners-section {
  position: relative;
}
.partners-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 100%);
}
.partners-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 100%);
}
.partners-section .partners-marquee {
  overflow: hidden;
  width: 100%;
}
.partners-section .partners-marquee .slick-track {
  background: #FFFFFF;
}
.partners-section .partners-marquee .partners-track.slick-initialized .slick-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 144px;
}
@media (max-width: 64rem) {
  .partners-section .partners-marquee .partners-track.slick-initialized .slick-slide {
    height: 95px;
  }
}
.partners-section .partners-marquee .partners-track .slick-slide {
  margin: 0 5px;
}
.partners-section .partners-marquee .partners-track .slick-list {
  margin: 0 -5px;
}
.partners-section .partners-marquee .partner-link {
  width: 296px;
  height: 144px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.partners-section .partners-marquee .partner-img {
  max-width: 65%;
  max-height: 65%;
  object-fit: contain;
  display: block;
  filter: brightness(0);
}
.partners-section .partners-marquee .partner-slide {
  position: relative;
}
.partners-section .partners-marquee .partner-slide:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1px;
  background-image: linear-gradient(to top, #fff, #c7c7c7, #fff);
}

.nav-links {
  margin-top: 50px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.nav-links span.current {
  padding: 10px 20px;
  background-color: var(--pink);
  color: #fff;
  text-decoration: none;
}
.nav-links a {
  padding: 10px 20px;
  background-color: var(--blue);
  color: #fff;
  text-decoration: none;
}

.services-section {
  position: relative;
  margin-top: 100px;
  margin-bottom: 3.5rem;
  overflow: hidden;
  padding: 0 15px;
}
@media (max-width: 40rem) {
  .services-section {
    margin-top: 20px;
  }
}
.services-section__anim {
  content: "";
  position: absolute;
  top: 133px;
  right: -279px;
  max-width: 1075px;
  width: 100%;
  height: 70px;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: darken;
}
@media (max-width: 40rem) {
  .services-section__anim {
    top: 100px;
    right: 0;
  }
}
.services-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: clamp(10rem, 50vw, 36.25rem);
  height: 12px;
  background: #000000;
}
.services-section .services-grid {
  --border: rgba(0, 0, 0, 0.6);
  padding: 4rem 0 2.625rem;
  z-index: 2;
}
.services-section .services-grid__title {
  margin: 0 0 2rem;
}
.services-section .services-grid__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.125rem;
  justify-items: center;
}
@media (max-width: 64rem) {
  .services-section .services-grid__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 48rem) {
  .services-section .services-grid__cards {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.services-section .service-card {
  position: relative;
  padding: 1.25rem 1.25rem 1.75rem 0;
  max-width: 21rem;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.6);
  background: #fff;
  color: #111;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  z-index: 2;
  --title-lines: 2;
  --title-line-height: 2.188rem;
}
.services-section .service-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 56px;
  height: 56px;
  background: var(--blue);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.services-section .service-card__heading {
  padding-left: 0.75rem;
  min-height: calc(var(--title-lines) * var(--title-line-height));
}
@media (max-width: 40rem) {
  .services-section .service-card__heading {
    min-height: unset;
  }
}
.services-section .service-card__heading h3 {
  font-size: 1.5em;
  letter-spacing: 1px;
  line-height: var(--title-line-height);
  font-weight: 500;
}
.services-section .service-card__list {
  list-style: none;
  margin: 0;
  padding: 0.313rem 0 0;
}
.services-section .service-card__list li {
  padding: 0.6rem 0 0.6rem 3.5rem;
  position: relative;
  max-width: 18rem;
}
.services-section .service-card__list li::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 45%;
  transform: translateX(-50%);
  width: 182px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}
.services-section .service-card__list li:hover {
  background: var(--pink);
}
.services-section .service-card__list li a {
  color: inherit;
  text-decoration: none;
  display: block;
  font-size: 1rem;
}
.services-section .service-card:hover, .services-section .service-card:focus-within, .services-section .service-card.is-active {
  background: #121212;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.25);
}
.services-section .service-card:hover .service-card__list li::after, .services-section .service-card:focus-within .service-card__list li::after, .services-section .service-card.is-active .service-card__list li::after {
  background: #FFFFFF;
}
.services-section .service-card:has(.service-card__list a:hover) .service-card__highlight {
  opacity: 1;
}

.service-main-section {
  margin: 6.5rem 15px;
}
@media (max-width: 64rem) {
  .service-main-section {
    margin: 4.5rem 15px;
  }
}
.service-main-section {
  /* ---------- Intro: copy ---------- */
}
.service-main-section .service-main__intro {
  margin-bottom: 3.5rem;
}
@media (max-width: 64rem) {
  .service-main-section .service-main__intro {
    margin-bottom: 2.75rem;
  }
}
.service-main-section .service-main__copy {
  width: 100%;
}
.service-main-section .service-main__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.service-main-section .service-main__title {
  margin: 0 0 0.9rem;
  max-width: 32ch;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.service-main-section .service-main__subtitle {
  margin: 0;
  max-width: 50ch;
  color: rgba(35, 31, 32, 0.6);
  font-size: 1.0625rem;
  line-height: 1.5;
}
.service-main-section {
  /* ---------- Trust row ---------- */
}
.service-main-section .service-main__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem 2.5rem;
  margin: 0 0 3rem;
  padding: 0;
  list-style: none;
}
.service-main-section .service-main__trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.service-main-section .service-main__trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--panel);
  color: var(--blue);
}
.service-main-section .service-main__trust-icon svg {
  width: 1.15rem;
  height: 1.15rem;
}
.service-main-section .service-main__trust-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.service-main-section .service-main__trust-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--ink);
}
.service-main-section .service-main__trust-desc {
  font-size: 0.8125rem;
  color: rgba(35, 31, 32, 0.55);
}
.service-main-section {
  /* ---------- Package cards ---------- */
}
.service-main-section .service-main__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 48rem) {
  .service-main-section .service-main__grid {
    grid-template-columns: 1fr;
  }
}
.service-main-section .service-package {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(35, 31, 32, 0.1);
  border-radius: 18px;
  padding: 2.25rem;
}
.service-main-section .service-package--accent {
  background: linear-gradient(160deg, var(--panel) 0%, #fff 55%);
  border-color: rgba(0, 43, 255, 0.18);
}
.service-main-section .service-package::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44px;
  height: 44px;
  background: var(--blue);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  opacity: 0.9;
}
.service-main-section .service-package__flag {
  position: absolute;
  top: 3rem;
  right: -2.75rem;
  width: 13rem;
  padding: 0.35rem 0;
  background: var(--pink);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-align: center;
  transform: rotate(45deg);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.service-main-section .service-package__duration {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  margin-bottom: 1.1rem;
  border-radius: 999px;
  background: var(--panel);
  color: var(--accent-ink, var(--blue));
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.service-main-section .service-package--accent .service-package__duration {
  background: var(--pink);
  color: #fff;
}
.service-main-section .service-package__title {
  margin: 0 0 0.6rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.service-main-section .service-package__desc {
  margin: 0 0 1.5rem;
  color: rgba(35, 31, 32, 0.62);
  line-height: 1.45;
  font-size: 1rem;
}
.service-main-section .service-package__price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  margin: auto 0 1.5rem;
  padding-top: 1.25rem;
  width: 100%;
  border-top: 1px solid rgba(35, 31, 32, 0.1);
}
.service-main-section .service-package__price-value {
  font-size: 2.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.service-main-section .service-package__price-note {
  font-size: 0.9rem;
  color: rgba(35, 31, 32, 0.5);
}
.service-main-section .service-package__checklist {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 1.5rem;
  padding: 0;
  list-style: none;
  width: 100%;
}
.service-main-section .service-package__checklist li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: rgba(35, 31, 32, 0.75);
}
.service-main-section .service-package__checklist svg {
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--blue);
}
.service-main-section .service-package__cta {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 0.9rem 2.25rem;
  font-size: 0.9375rem;
}
.service-main-section .service-main__vat-note {
  margin: 1.25rem 0 0;
  text-align: right;
  font-size: 0.8125rem;
  color: rgba(35, 31, 32, 0.45);
}
.service-main-section {
  /* ---------- USP strip ---------- */
}
.service-main-section .service-main__usp {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2.25rem;
  margin: 0;
  padding: 1.75rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(35, 31, 32, 0.1);
}
.service-main-section .service-main__usp-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(35, 31, 32, 0.75);
}
.service-main-section .service-main__usp-item svg {
  flex: none;
  width: 1.1rem;
  height: 1.1rem;
  color: var(--blue);
}

/* ---------- Express Website Development: lead capture modal ---------- */
.express-lead-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.express-lead-modal.is-open {
  display: flex;
}
.express-lead-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.55);
}
.express-lead-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26rem;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2rem 4rem -1.5rem rgba(0, 0, 0, 0.35);
}
.express-lead-modal__panel h3 {
  margin: 0 0 1.25rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink);
  padding-right: 1.5rem;
}
.express-lead-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--panel);
  border-radius: 50%;
  font-size: 1.25rem;
  line-height: 1;
  color: rgba(35, 31, 32, 0.6);
  cursor: pointer;
}
.express-lead-modal__close:hover {
  background: rgba(35, 31, 32, 0.1);
}
.express-lead-modal__hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.express-lead-modal__fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.express-lead-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink);
}
.express-lead-modal__field input,
.express-lead-modal__field textarea {
  font-family: inherit;
  font-weight: 400;
  border: 1px solid rgba(35, 31, 32, 0.15);
  border-radius: 8px;
  padding: 0 0.9rem;
  font-size: 0.95rem;
  outline: none;
}
.express-lead-modal__field input:focus,
.express-lead-modal__field textarea:focus {
  border-color: var(--blue);
}
.express-lead-modal__field input {
  height: 44px;
}
.express-lead-modal__field textarea {
  padding: 0.65rem 0.9rem;
  min-height: 4.5rem;
  resize: vertical;
}
.express-lead-modal__submit {
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 0.9375rem;
  margin-top: 0.25rem;
}
.express-lead-modal__note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(35, 31, 32, 0.55);
}
.express-lead-modal__status {
  margin: 0;
  font-size: 0.9375rem;
  text-align: center;
}
.express-lead-modal__status.is-success {
  color: #1a8f4c;
}
.express-lead-modal__status.is-error {
  color: #d0342c;
}

body.express-lead-modal-open {
  overflow: hidden;
}

.portfolio-section {
  position: relative;
  overflow: hidden;
  margin-left: 16px;
  margin-right: 16px;
}
.portfolio-section__anim {
  content: "";
  position: absolute;
  top: 133px;
  left: -37px;
  max-width: 844px;
  width: 100%;
  height: 93px;
  object-fit: cover;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 40rem) {
  .portfolio-section__anim {
    top: 50px;
    left: 0;
  }
}
.portfolio-section .portfolio {
  padding: 0 0 1.75rem;
  color: #111;
}
.portfolio-section .portfolio__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}
.portfolio-section .portfolio__title {
  margin: 0 0 5.375rem;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  letter-spacing: 0.1em;
  color: #0b46ff;
  font-weight: 500;
}
@media (max-width: 40rem) {
  .portfolio-section .portfolio__title {
    margin: 0 0 1.375rem;
  }
}
.portfolio-section .portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem 2.4rem;
}
.portfolio-section .project {
  display: grid;
  gap: 0.85rem;
}
.portfolio-section .project__link {
  text-decoration: none;
}
.portfolio-section .project__link:hover img {
  transform: scale(1.05);
}
.portfolio-section .project__media {
  position: relative;
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
  isolation: isolate;
}
.portfolio-section .project__media:hover .project__gif {
  opacity: 1;
  transform: scale(1.02);
}
.portfolio-section .project__media:hover .project__hide-hover {
  opacity: 0;
  transform: scale(1.02);
}
.portfolio-section .project__img, .portfolio-section .project__gif {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
.portfolio-section .project__gif {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.portfolio-section .project__img {
  opacity: 1;
}
.portfolio-section .project__wysiwyg {
  margin-top: 14px;
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 64rem) {
  .portfolio-section .portfolio__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 40rem) {
  .portfolio-section .portfolio__grid {
    grid-template-columns: 1fr;
  }
  .portfolio-section .portfolio__barcode {
    display: none;
  }
}

.portfolio__see-more {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2.5rem;
}

.see-more-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 2.5rem 0.5rem 3.5rem;
  border-radius: 2px;
  background: var(--pink);
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: none;
  font-weight: 500;
  transition: background 200ms ease, transform 200ms ease;
}
.see-more-btn::before {
  content: "";
  position: absolute;
  left: -19px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 34px solid transparent;
  border-bottom: 34px solid transparent;
  border-left: 56px solid #0b46ff;
}
.see-more-btn:hover {
  background: #ff3f73;
  transform: translateY(-2px);
}
.see-more-btn:hover::before {
  animation: triangleSnap 350ms ease-out forwards;
}

.pricing-section .pricing {
  --blue: #113bff;
  --ink: #111;
  --border: rgba(0, 0, 0, 0.45);
  padding: clamp(3rem, 6vw, 6rem) 0;
  margin-top: 120px;
}
@media (max-width: 40rem) {
  .pricing-section .pricing {
    margin-top: 40px;
    padding: 0 20px;
  }
}
.pricing-section .pricing__head {
  display: flex;
  align-items: baseline;
  gap: clamp(1rem, 3vw, 2rem);
  margin-bottom: clamp(1.75rem, 3.5vw, 2.5rem);
}
.pricing-section .pricing__title {
  margin: 0;
  font-size: clamp(2.25rem, 4.6vw, 4.2rem);
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.pricing-section .pricing__title-line {
  flex: 1;
  height: 2px;
  background: var(--blue);
  transform: translateY(-0.25em);
}
.pricing-section .pricing__flex {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 64rem) {
  .pricing-section .pricing__flex {
    flex-wrap: wrap;
  }
}
.pricing-section .pricing__image {
  width: 40%;
}
@media (max-width: 64rem) {
  .pricing-section .pricing__image {
    width: 100%;
  }
}
.pricing-section .pricing__image img {
  max-width: 100%;
}
.pricing-section .pricing__card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 55%;
  align-items: start;
  gap: clamp(1.25rem, 3vw, 2rem);
  padding: 30px 45px;
  margin-left: 3.25rem;
  border: 1px solid var(--border);
  background: #fff;
  overflow: visible;
}
@media (max-width: 64rem) {
  .pricing-section .pricing__card {
    width: 100%;
  }
}
@media (max-width: 40rem) {
  .pricing-section .pricing__card {
    padding: 20px 10px;
  }
}
.pricing-section .pricing__card::before {
  content: "";
  position: absolute;
  left: clamp(-3.25rem, -6vw, -3rem);
  top: -1px;
  bottom: 0;
  width: 3.25rem;
  height: calc(100% + 2px);
  background: var(--divider);
}
.pricing-section .pricing__intro, .pricing-section .pricing__desc {
  width: 100%;
  font-size: 0.95rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.75);
}
.pricing-section .pricing__intro p:last-child, .pricing-section .pricing__desc p:last-child {
  margin-bottom: 0;
}
.pricing-section .pricing__desc {
  margin-top: 1.5rem;
}
.pricing-section .pricing__main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  align-self: end;
}
.pricing-section .pricing__link {
  font-size: 18px;
  padding: 14px 30px;
  letter-spacing: 0.375rem;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--ink);
  text-decoration: none;
  transition: background-color 0.3s ease-in-out;
}
.pricing-section .pricing__link:hover {
  background: var(--blue);
}
.pricing-section .pricing__rate {
  position: relative;
  margin: 0;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.85);
}
.pricing-section .pricing__note {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(0, 0, 0, 0.7);
}
@media (max-width: 48rem) {
  .pricing-section .pricing__card {
    margin-left: 1.75rem;
  }
  .pricing-section .pricing__card::before {
    left: -1.75rem;
    width: 1.75rem;
  }
  .pricing-section .pricing__rate {
    white-space: normal;
  }
  .pricing-section .pricing__title {
    letter-spacing: 0.55rem;
  }
}

.ad-banner-section {
  margin: 4rem 15px;
}
@media (max-width: 64rem) {
  .ad-banner-section {
    margin: 3rem 15px;
  }
}
.ad-banner-section .bg-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.ad-banner {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding: 3.5rem;
  background: var(--panel);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 64rem) {
  .ad-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.5rem 1.5rem;
  }
}
.ad-banner__copy {
  flex: 1 1 38%;
  min-width: 0;
}
.ad-banner__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.ad-banner__title {
  margin: 0 0 0.9rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ad-banner__desc {
  margin: 0 0 1.75rem;
  color: rgba(35, 31, 32, 0.6);
  font-size: 1.0625rem;
  line-height: 1.5;
}
.ad-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.ad-banner__actions .btn {
  gap: 0.65rem;
}
.ad-banner__ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 40px;
  padding: 0.55rem 2rem;
  border: 2px solid var(--blue);
  border-radius: 2px;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
  box-sizing: border-box;
}
.ad-banner__ghost-btn:hover {
  background: var(--blue);
  color: #fff;
}
.ad-banner__visual {
  position: relative;
  flex: 1 1 58%;
  min-width: 0;
  border-radius: 14px;
  overflow: hidden;
}
@media (max-width: 64rem) {
  .ad-banner__visual {
    flex: none;
    width: 100%;
  }
}
.ad-banner__media {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
  display: block;
}
.ad-banner__visual--deco {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
@media (max-width: 64rem) {
  .ad-banner__visual--deco {
    display: none;
  }
}
.ad-banner__deco {
  width: 100%;
  height: auto;
  color: var(--blue);
}

@keyframes triangleSnap {
  0% {
    transform: translateY(-50%) translateX(0);
  }
  40% {
    transform: translateY(-50%) translateX(-6px);
  }
  70% {
    transform: translateY(-50%) translateX(8px);
  }
  100% {
    transform: translateY(-50%) translateX(0);
  }
}
@keyframes bounce {
  0%, 80%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  40% {
    transform: translateY(-10px);
    opacity: 1;
  }
}
.loader--dots {
  display: flex;
  gap: 0.5rem;
}
.loader--dots span {
  width: 0.75rem;
  height: 0.75rem;
  background: var(--blue);
  border-radius: 50%;
  animation: bounce 1.4s infinite ease-in-out both;
}
.loader--dots span:nth-child(1) {
  animation-delay: -0.32s;
}
.loader--dots span:nth-child(2) {
  animation-delay: -0.16s;
}

.menu-button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pricing-page {
  margin-top: 130px;
}
@media (max-width: 860px) {
  .pricing-page {
    margin-top: 80px;
  }
}
.pricing-page .pricing__head {
  padding: 0 15px;
}

.hero-about {
  margin: 130px 0 100px;
}
@media (max-width: 40rem) {
  .hero-about {
    margin: 60px 0 40px;
  }
}
.hero-about__inner {
  position: relative;
}
.hero-about__deco {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--blue);
  pointer-events: none;
}
@media (max-width: 48rem) {
  .hero-about__deco {
    display: none;
  }
}
.hero-about__content {
  position: relative;
  z-index: 1;
}
.hero-about__un-title {
  text-align: center;
  font-size: 0.8125rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--blue);
  padding: 0 15px;
}
.hero-about__title {
  margin: 14px auto 0;
  max-width: 700px;
  font-size: 48px;
  letter-spacing: 0.01em;
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
  text-align: center;
  padding: 0 15px;
}
.hero-about__title bl {
  font-style: normal;
  color: var(--blue);
}
@media (max-width: 40rem) {
  .hero-about__title {
    font-size: 32px;
  }
}
.hero-about__desc {
  text-align: center;
  width: 700px;
  margin: 24px auto 0;
  font-size: 18px;
  color: rgba(35, 31, 32, 0.65);
  padding: 0 15px;
}
@media (max-width: 48rem) {
  .hero-about__desc {
    width: 95%;
  }
}
@media (max-width: 40rem) {
  .hero-about__desc {
    margin: 16px auto 0;
    font-size: 16px;
    width: 100%;
  }
}

.video-about__video {
  margin-top: 30px;
  border-bottom: 29px solid var(--divider);
}
.video-about__video video {
  width: 100%;
  min-height: 165px;
  object-fit: cover;
}

.result-about {
  margin: 100px 0;
}
@media (max-width: 40rem) {
  .result-about {
    margin: 40px 0;
  }
}
.result-about__intro {
  text-align: left;
  margin-bottom: 32px;
  padding: 0 15px;
}
@media (max-width: 40rem) {
  .result-about__intro {
    margin-bottom: 20px;
  }
}
.result-about__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.result-about__title {
  margin: 0;
  font-size: 40px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.15;
  color: var(--ink);
}
@media (max-width: 40rem) {
  .result-about__title {
    font-size: 28px;
  }
}
.result-about__content {
  display: grid;
  align-items: stretch;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 15px;
}
@media (max-width: 64rem) {
  .result-about__content {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.result-about__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  gap: 10px;
  padding: 36px 20px;
}
.result-about__item::after {
  content: "";
  position: absolute;
  top: 10%;
  height: 80%;
  left: 0;
  width: 1px;
  background: var(--divider);
}
.result-about__item:first-child::after {
  display: none;
}
@media (max-width: 64rem) {
  .result-about__item:nth-child(2n+1)::after {
    display: none;
  }
}
.result-about__number {
  font-size: 48px;
  letter-spacing: 0.01em;
  font-weight: 600;
  color: var(--blue);
  line-height: 1;
}
@media (max-width: 40rem) {
  .result-about__number {
    font-size: 32px;
  }
}
.result-about__dash {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue);
}
.result-about__label {
  text-align: center;
  color: rgba(35, 31, 32, 0.65);
  font-size: 16px;
  line-height: 1.35;
}
@media (max-width: 40rem) {
  .result-about__label {
    font-size: 14px;
  }
}
.result-about__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 6px;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
}
.result-about__icon img {
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
}

.process-about {
  padding: 4rem 15px;
  background: var(--panel);
}
@media (max-width: 64rem) {
  .process-about {
    padding: 3rem 15px;
  }
}
.process-about__intro {
  max-width: 38rem;
  margin: 0 auto 3rem;
  text-align: center;
}
.process-about__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.process-about__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.process-about__steps {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 48rem) {
  .process-about__steps {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem 1.5rem;
  }
}
.process-about__steps:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 32px;
  height: 0;
  border-top: 2px dashed rgba(0, 43, 255, 0.35);
}
@media (max-width: 48rem) {
  .process-about__steps:before {
    display: none;
  }
}
.process-about__step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  flex: 1 1 0;
  min-width: 0;
}
@media (max-width: 48rem) {
  .process-about__step {
    flex: none;
    width: calc(50% - 0.75rem);
  }
}
.process-about__icon {
  position: relative;
  z-index: 1;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
}
.process-about__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.process-about__icon--empty:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
}
.process-about__label {
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
}

.team-about {
  margin: 100px 0;
  padding: 0 15px;
}
@media (max-width: 40rem) {
  .team-about {
    margin: 60px 0;
  }
}
.team-about__intro {
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
}
.team-about__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.team-about__title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.team-about__desc {
  margin: 0.75rem auto 0;
  max-width: 40ch;
  color: rgba(35, 31, 32, 0.6);
  font-size: 1.0625rem;
  line-height: 1.5;
}
.team-about__list {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.5rem 1.25rem;
  margin-top: 3rem;
}
@media (max-width: 64rem) {
  .team-about__list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 48rem) {
  .team-about__list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 40rem) {
  .team-about__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1rem;
  }
}
.team-about__item {
  position: relative;
}
.team-about__item:hover .team-about__image-hover {
  opacity: 1;
}
.team-about__uk {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 30px;
  z-index: 2;
}
.team-about__uk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-about__image-hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.team-about__image {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 8px;
  overflow: hidden;
}
.team-about__image video,
.team-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  display: block;
}
.team-about__name {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 0.85rem;
  color: var(--ink);
}
.team-about__position {
  margin-top: 0.15rem;
  font-size: 0.8125rem;
  color: var(--blue);
}

.policies-section {
  margin: 110px 0;
  padding: 0 15px;
}
.policies-section__content {
  display: flex;
  align-items: flex-start;
  margin-top: 80px;
}
@media (max-width: 48rem) {
  .policies-section__content {
    margin-top: 40px;
  }
}
.policies-section__left {
  width: 300px;
  position: sticky;
  top: 100px;
}
@media (max-width: 48rem) {
  .policies-section__left {
    display: none;
  }
}
.policies-section__left ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.policies-section__left ul li {
  margin-bottom: 12px;
}
.policies-section__left ul li a {
  font-size: 22px;
  text-decoration: none;
  color: var(--ink);
}
.policies-section__right {
  width: calc(100% - 300px);
  padding-left: 30px;
}
@media (max-width: 48rem) {
  .policies-section__right {
    width: 100%;
    padding-left: 0;
  }
}
.policies-section__title h1 {
  font-size: 56px;
  margin-bottom: 20px;
}
@media (max-width: 48rem) {
  .policies-section__title h1 {
    font-size: 38px;
  }
}
.policies-section__text {
  margin-top: 24px;
}
.policies-section__text h2 {
  font-size: 36px;
  color: var(--ink);
  margin-bottom: 30px;
  letter-spacing: 0;
}
@media (max-width: 48rem) {
  .policies-section__text h2 {
    font-size: 28px;
  }
}
.policies-section__text h3 {
  font-size: 22px;
  color: var(--ink);
  margin-bottom: 30px;
  letter-spacing: 0;
}
@media (max-width: 48rem) {
  .policies-section__text h3 {
    font-size: 24px;
  }
}
.policies-section__text h4 {
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 30px;
  letter-spacing: 0;
}
@media (max-width: 48rem) {
  .policies-section__text h4 {
    font-size: 20px;
  }
}
.policies-section__text p {
  margin-bottom: 20px;
}
.policies-section__text a {
  font-weight: 500;
  color: var(--blue);
}

ul.single-list,
ol.single-list {
  padding-left: 40px;
  margin-bottom: 30px;
}
ul.single-list li,
ol.single-list li {
  margin-bottom: 10px;
}

.news-list-section {
  margin: 60px 0 100px;
  padding: 0 15px;
}
@media (max-width: 48rem) {
  .news-list-section {
    margin: 40px 0 60px;
  }
}
.news-list-section__hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(35, 31, 32, 0.1);
}
@media (max-width: 64rem) {
  .news-list-section__hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.news-list-section__hero-copy {
  flex: 1 1 55%;
  min-width: 0;
}
.news-list-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.news-list-section__eyebrow:before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.news-list-section__title {
  margin: 0 0 0.85rem;
  max-width: 20ch;
  font-size: clamp(2rem, 3.4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.news-list-section__hero-desc {
  margin: 0;
  max-width: 42ch;
  color: rgba(35, 31, 32, 0.6);
  font-size: 1.0625rem;
  line-height: 1.5;
}
.news-list-section__hero-visual {
  flex: 1 1 45%;
  min-width: 0;
  max-width: 480px;
  color: var(--blue);
}
@media (max-width: 64rem) {
  .news-list-section__hero-visual {
    display: none;
  }
}
.news-list-section__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2rem;
}
.news-list-section__filter-pill {
  display: inline-flex;
  padding: 6px 20px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.7);
  text-decoration: none;
  transition: 0.2s ease;
}
.news-list-section__filter-pill:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.news-list-section__filter-pill.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
}
.news-list-section__latest-title {
  margin-top: 3rem;
  margin-bottom: 1.25rem;
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--ink);
}
.news-list-section__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem 2.4rem;
}
@media (max-width: 64rem) {
  .news-list-section__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 48rem) {
  .news-list-section__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.news-section-item a {
  text-decoration: none;
  display: block;
}
.news-section-item__photo {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: 12px;
  overflow: hidden;
  background: var(--panel);
}
.news-section-item__photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.news-section-item__meta {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.875rem;
}
.news-section-item__cat {
  color: var(--blue);
  font-weight: 600;
}
.news-section-item__dot {
  color: rgba(35, 31, 32, 0.35);
}
.news-section-item__reading-time {
  color: rgba(35, 31, 32, 0.55);
}
.news-section-item__name {
  margin-top: 0.5rem;
  font-size: 1.25rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--ink);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-section-item__excerpt {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(35, 31, 32, 0.6);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.news-section-item__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--blue);
  transition: gap 0.2s ease;
}
.news-section-item:hover .news-section-item__link {
  gap: 0.75rem;
}
.news-section-item--featured {
  grid-column: 1/-1;
  margin-bottom: 1rem;
}
.news-section-item--featured a {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
  background: var(--panel);
  border-radius: 20px;
}
@media (max-width: 64rem) {
  .news-section-item--featured a {
    flex-direction: column-reverse;
    padding: 1.5rem;
    gap: 1.5rem;
  }
}
.news-section-item--featured .news-section-item__copy {
  flex: 1 1 50%;
  min-width: 0;
}
.news-section-item--featured .news-section-item__photo {
  flex: 1 1 50%;
  min-width: 0;
  aspect-ratio: 4/3;
  background: #fff;
}
.news-section-item--featured .news-section-item__name {
  margin-top: 0.5rem;
  max-width: 22ch;
  font-size: clamp(1.375rem, 1.8vw, 1.625rem);
  -webkit-line-clamp: 3;
}
.news-section-item--featured .news-section-item__excerpt {
  -webkit-line-clamp: 2;
}
.news-section-item__featured-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}
.news-section-item__featured-badge svg {
  width: 14px;
  height: 14px;
}
.news-section-item__link--btn {
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--blue);
  color: #fff;
  border-radius: 2px;
}

.single-news {
  margin: 120px 0;
}
@media (max-width: 64rem) {
  .single-news {
    margin: 80px 0;
  }
}
.single-news__content {
  width: 70%;
  margin: auto;
}
@media (max-width: 64rem) {
  .single-news__content {
    width: 100%;
    padding: 0 15px;
  }
}
.single-news__cat {
  display: inline-flex;
  padding: 5px 16px;
  background: rgba(0, 0, 0, 0.04);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
}
.single-news__cat:hover {
  background: rgba(0, 0, 0, 0.08);
}
.single-news__title {
  margin-top: 16px;
}
.single-news__title h1 {
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 64rem) {
  .single-news__title h1 {
    font-size: 32px;
  }
}
.single-news__photo {
  margin-top: 20px;
}
.single-news__photo img {
  width: 100%;
  height: auto;
}
.single-news__lead {
  margin-top: 16px;
  max-width: 65ch;
  font-size: 1.125rem;
  line-height: 1.5;
  color: rgba(35, 31, 32, 0.65);
}
.single-news__info {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9375rem;
  color: rgba(35, 31, 32, 0.55);
}
.single-news__cat-text {
  color: var(--blue);
  font-weight: 600;
}
.single-news__dot {
  color: rgba(35, 31, 32, 0.35);
}
.single-news__help {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(35, 31, 32, 0.1);
}
.single-news__help-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
}
.single-news__help-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
}
.single-news__help-link:hover {
  text-decoration: underline;
}
.single-news__text {
  margin-top: 30px;
}
.single-news__text table {
  width: 100%;
  margin-bottom: 24px;
  border-collapse: collapse;
  font-size: 16px;
}
.single-news__text table th, .single-news__text table td {
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
}
.single-news__text table th {
  background: var(--panel);
  font-weight: 700;
}
.single-news__text p {
  font-size: 18px;
  margin-bottom: 20px;
}
.single-news__text h2 {
  margin: 15px 0 20px;
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0;
}
@media (max-width: 40rem) {
  .single-news__text h2 {
    font-size: 32px;
  }
}
.single-news__text h3 {
  margin: 15px 0 20px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0;
}
@media (max-width: 40rem) {
  .single-news__text h3 {
    font-size: 24px;
  }
}
.single-news__text ul {
  margin: 0 0 20px;
  padding-left: 20px;
  font-size: 18px;
}
.single-news__text ul li {
  margin-bottom: 10px;
  padding-left: 6px;
}
.single-news__text ul li::marker {
  color: var(--blue);
}
.single-news__text ul li:last-child {
  margin-bottom: 0;
}
.single-news__text a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.single-news__text a:hover {
  opacity: 0.85;
}

.other-single {
  margin: 120px 0;
}
.other-single__content {
  width: 70%;
  margin: auto;
}
@media (max-width: 64rem) {
  .other-single__content {
    width: 100%;
    padding: 0 15px;
  }
}
.other-single__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 48rem) {
  .other-single__top {
    flex-wrap: wrap;
  }
}
.other-single .other-single__title {
  font-size: 54px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 48rem) {
  .other-single .other-single__title {
    width: 100%;
    font-size: 44px;
    margin-bottom: 20px;
  }
}
.other-single__link a {
  background: #231f20;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
  padding: 4px 30px;
  display: inline-flex;
}
.other-single__list {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem 2.4rem;
}
@media (max-width: 64rem) {
  .other-single__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 48rem) {
  .other-single__list {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

.article-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--panel);
  border-radius: 14px;
}
.article-cta__copy {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.article-cta__title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--ink);
}
.article-cta__desc {
  font-size: 0.9375rem;
  color: rgba(35, 31, 32, 0.65);
}
.article-cta__link.article-cta__link {
  flex: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 0.9375rem;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
}
.article-cta__link.article-cta__link:hover {
  color: #fff;
  text-decoration: none;
}

.insights-teaser {
  margin: 6.5rem 15px;
}
@media (max-width: 64rem) {
  .insights-teaser {
    margin: 4.5rem 15px;
  }
}
.insights-teaser__intro {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.75rem;
}
.insights-teaser__copy {
  max-width: 40rem;
}
.insights-teaser__eyebrow {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.insights-teaser__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.insights-teaser__desc {
  margin: 0;
  max-width: 34ch;
  color: rgba(35, 31, 32, 0.6);
  font-size: 1.0625rem;
  line-height: 1.5;
}
.insights-teaser__deco {
  flex: none;
  width: 17rem;
  height: 8.9rem;
  color: var(--blue);
}
@media (max-width: 64rem) {
  .insights-teaser__deco {
    display: none;
  }
}
.insights-teaser__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
@media (max-width: 64rem) {
  .insights-teaser__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 40rem) {
  .insights-teaser__grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.insights-teaser__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(35, 31, 32, 0.08);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 1rem 2.5rem -1.75rem rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.insights-teaser__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1.5rem 3rem -1.5rem rgba(0, 0, 0, 0.3);
}
.insights-teaser__media {
  width: 100%;
  height: 170px;
}
.insights-teaser__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}
.insights-teaser__body {
  padding: 1.5rem;
}
.insights-teaser__cat {
  display: inline-block;
  margin-bottom: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}
.insights-teaser__card-title {
  margin: 0 0 0.5rem;
  font-size: 1.1875rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ink);
}
.insights-teaser__card-desc {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: rgba(35, 31, 32, 0.6);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.insights-teaser__reading-time {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: rgba(35, 31, 32, 0.5);
}
.insights-teaser__reading-time svg {
  flex: none;
}
.insights-teaser__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.75rem;
}
.insights-teaser__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 2rem;
  border: 2px solid var(--blue);
  border-radius: 2px;
  color: var(--blue);
  font-size: 0.9375rem;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s ease;
}
.insights-teaser__cta-link:hover {
  background: var(--blue);
  color: #fff;
}

.line-about {
  background: var(--panel);
}
.line-about__content {
  display: flex;
  justify-content: center;
  padding: 8px 0;
}
.line-about__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 40rem) {
  .line-about__item {
    gap: 10px;
  }
}
.line-about__item img {
  width: 100px;
  height: 70px;
}
@media (max-width: 40rem) {
  .line-about__item img {
    width: 60px;
    height: 35px;
  }
}
.line-about__item span {
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  width: calc(100% - 120px);
  font-size: 26px;
}
@media (max-width: 40rem) {
  .line-about__item span {
    width: calc(100% - 60px);
    font-size: 16px;
  }
}

.feedback-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 2.5vw, 2rem);
  flex-wrap: wrap;
  max-width: var(--max);
  margin: clamp(1.5rem, 3vw, 3rem) auto;
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1.25rem, 3vw, 2.5rem);
  background: var(--panel);
  border-radius: 12px;
}
.feedback-section__left {
  max-width: 640px;
}
.feedback-section__title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink);
  line-height: 1.15;
}
.feedback-section__desc {
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(0, 0, 0, 0.7);
}
.feedback-section__desc p:last-child {
  margin-bottom: 0;
}
.feedback-section__right {
  flex: none;
}
.feedback-section__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-transform: uppercase;
  padding: 0.95rem 1.75rem;
  border-radius: 8px;
  background: var(--ink);
  color: #fff !important;
  text-decoration: none !important;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}
.feedback-section__btn svg {
  flex: none;
  transition: transform 0.25s ease;
}
.feedback-section__btn:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 43, 255, 0.25);
}
.feedback-section__btn:hover svg {
  transform: translateX(4px);
}
.feedback-section__btn:active {
  transform: translateY(0);
  box-shadow: none;
}
@media (max-width: 40rem) {
  .feedback-section {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

.pagination h2.screen-reader-text {
  display: none;
}

.hero-contact {
  padding: 120px 15px 80px;
  position: relative;
  background-color: #fff;
}
@media (max-width: 40rem) {
  .hero-contact {
    padding: 80px 15px 50px;
  }
}
.hero-contact::before {
  content: "";
  position: absolute;
  right: 12%;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
  background-image: radial-gradient(circle, rgba(19, 64, 239, 0.55) 1.6px, transparent 2.2px);
  background-size: 13px 13px;
  -webkit-mask-image: radial-gradient(circle at 62% 105%, #000 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0.35) 62%, transparent 80%);
  mask-image: radial-gradient(circle at 62% 105%, #000 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0.35) 62%, transparent 80%);
}
.hero-contact::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFF;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgba(19, 64, 239, 0.25) 100%);
  clip-path: polygon(100% -10%, 100% 100%, 77% 100%);
  z-index: 2;
}
.hero-contact__content {
  display: flex;
}
@media (max-width: 64rem) {
  .hero-contact__content {
    flex-wrap: wrap;
  }
}
.hero-contact__left {
  width: 45%;
}
@media (max-width: 64rem) {
  .hero-contact__left {
    width: 100%;
  }
}
.hero-contact__un-title {
  color: #002bff;
  font-size: 14px;
  font-weight: 700;
  position: relative;
  padding-left: 18px;
}
.hero-contact__un-title:before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #002bff;
}
.hero-contact__title {
  margin-top: 22px;
}
@media (max-width: 40rem) {
  .hero-contact__title {
    margin-top: 16px;
  }
}
.hero-contact__title h1 {
  font-size: 44px;
}
@media (max-width: 40rem) {
  .hero-contact__title h1 {
    font-size: 34px;
  }
}
.hero-contact__desc {
  width: 440px;
  margin-top: 20px;
  font-size: 17px;
  color: #6a6a6a;
  margin-bottom: 50px;
}
@media (max-width: 40rem) {
  .hero-contact__desc {
    width: 100%;
    margin-top: 18px;
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.hero-contact__item {
  display: flex;
  align-items: center;
  margin-bottom: 26px;
}
.hero-contact__item-icon {
  width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 43, 255, 0.1);
  border-radius: 50%;
}
.hero-contact__item-icon svg {
  width: 34px;
  height: 34px;
}
.hero-contact__item-right {
  display: flex;
  flex-direction: column;
  width: calc(100% - 70px);
  padding-left: 20px;
  gap: 4px;
}
.hero-contact__item-right span:nth-child(1) {
  font-size: 15px;
  color: #7e7e7e;
}
.hero-contact__item-right a {
  font-size: 17px;
  color: #000000;
  text-decoration: none;
}
.hero-contact__form-title {
  font-size: 26px;
}
.hero-contact__form {
  width: 55%;
  padding: 40px;
  border-radius: 32px;
  border: 1px solid rgba(0, 43, 255, 0.1);
  box-shadow: 0 0 8px rgba(0, 43, 255, 0.1);
  position: relative;
  background: #fff;
  z-index: 9;
}
@media (max-width: 64rem) {
  .hero-contact__form {
    width: 100%;
  }
}
@media (max-width: 40rem) {
  .hero-contact__form {
    padding: 32px 14px;
    border-radius: 18px;
  }
}
.hero-contact__form form {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.hero-contact__form form .w50 {
  width: 48%;
  margin-bottom: 18px;
}
@media (max-width: 40rem) {
  .hero-contact__form form .w50 {
    width: 100%;
  }
}
.hero-contact__form form .w100 {
  width: 100%;
  margin-bottom: 18px;
}
.hero-contact__form form label {
  font-size: 14px;
  display: block;
  color: #7e7e7e;
}
.hero-contact__form form input {
  margin-top: 4px;
  display: block;
  width: 100%;
  height: 44px;
  border: 1px solid #e3e3e3;
  outline: none;
  border-radius: 4px;
  padding-left: 12px;
}
.hero-contact__form form select {
  margin-top: 4px;
  display: block;
  width: 100%;
  height: 44px;
  border: 1px solid #e3e3e3;
  outline: none;
  border-radius: 4px;
  padding-left: 12px;
}
.hero-contact__form form textarea {
  margin-top: 4px;
  display: block;
  width: 100%;
  border: 1px solid #e3e3e3;
  outline: none;
  border-radius: 4px;
  height: 140px;
  resize: none;
}
.hero-contact__form form .wpcf7-not-valid-tip {
  font-size: 13px;
  font-weight: 500;
}
.hero-contact__form form .wpcf7-list-item {
  margin: 0;
  width: 325px;
  line-height: 1;
}
@media (max-width: 40rem) {
  .hero-contact__form form .wpcf7-list-item {
    width: 100%;
  }
}
.hero-contact__form form .wpcf7-list-item label {
  display: flex;
  align-items: center;
}
.hero-contact__form form .wpcf7-list-item span.wpcf7-list-item-label {
  width: calc(100% - 18px);
  padding-left: 10px;
}
.hero-contact__form form input[type=checkbox] {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid #e3e3e3;
  margin: 0;
}
.hero-contact__form form input.wpcf7-submit {
  appearance: none;
  -webkit-appearance: none;
  width: unset;
  padding: 0 60px;
  background-color: #002bff;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.hero-contact__form form input.wpcf7-submit:hover {
  background-color: #231f20;
}
.hero-contact__form form input.wpcf7-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.hero-contact__form form input.wpcf7-submit:disabled:hover {
  background-color: #002bff;
}
.hero-contact__form form .bottom-info {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media (max-width: 40rem) {
  .hero-contact__form form .bottom-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
.hero-contact__form form .wpcf7-spinner {
  position: absolute;
}
.hero-contact__form form .file-upload {
  position: relative;
  margin-top: 4px;
  display: flex;
  align-items: center;
  width: 100%;
  height: 44px;
  border: 1px solid #e3e3e3;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease-in-out;
}
.hero-contact__form form .file-upload:hover {
  border-color: #002bff;
}
.hero-contact__form form .file-upload__button {
  flex-shrink: 0;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 20px;
  background-color: rgba(0, 43, 255, 0.08);
  color: #002bff;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
}
.hero-contact__form form .file-upload:hover .hero-contact__form form .file-upload__button {
  background-color: #002bff;
  color: #ffffff;
}
.hero-contact__form form .file-upload__name {
  padding-left: 14px;
  font-size: 14px;
  color: #7e7e7e;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.hero-contact__form form .file-upload input[type=file] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  opacity: 0;
  cursor: pointer;
}
.hero-contact__form form .file-hint {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: #a3a3a3;
}

.utp-contact {
  background: #fff;
  position: relative;
  padding: 50px 15px;
}
.utp-contact__content {
  display: flex;
  background-color: rgba(0, 43, 255, 0.05);
  border-radius: 20px;
  padding: 38px 20px;
}
@media (max-width: 64rem) {
  .utp-contact__content {
    flex-wrap: wrap;
    padding: 38px 20px 10px;
  }
}
.utp-contact__item {
  width: 25%;
  display: flex;
  align-items: center;
}
@media (max-width: 64rem) {
  .utp-contact__item {
    width: 50%;
    margin-bottom: 36px;
  }
}
@media (max-width: 40rem) {
  .utp-contact__item {
    width: 100%;
  }
}
.utp-contact__icon {
  width: 52px;
  height: 52px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.utp-contact__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.utp-contact__right {
  width: calc(100% - 52px);
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-right: 64px;
}
@media (max-width: 40rem) {
  .utp-contact__right {
    padding-right: 0;
  }
}
.utp-contact__right span:nth-child(1) {
  font-size: 17px;
  color: #002bff;
  font-weight: 600;
}
.utp-contact__right span:nth-child(2) {
  font-size: 14px;
  line-height: 1.2;
}

.hero-price {
  background: #fdfdfd;
  position: relative;
  padding: 120px 15px 20px;
}
@media (max-width: 64rem) {
  .hero-price {
    padding: 80px 15px 20px;
  }
}
.hero-price__content {
  display: flex;
  align-items: center;
}
@media (max-width: 64rem) {
  .hero-price__content {
    flex-wrap: wrap;
  }
}
.hero-price__left {
  width: 45%;
}
@media (max-width: 64rem) {
  .hero-price__left {
    width: 100%;
  }
}
.hero-price__un-title {
  display: inline-block;
  margin-bottom: 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}
.hero-price__title {
  position: relative;
}
.hero-price__title h1 {
  font-size: 50px;
}
.hero-price__title:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 6px;
  background-color: #002bff;
}
.hero-price__desc {
  font-size: 20px;
  color: #6a6a6a;
  width: 400px;
  margin-top: 35px;
}
@media (max-width: 40rem) {
  .hero-price__desc {
    width: 100%;
  }
}
.hero-price__services {
  max-width: 420px;
  margin-top: 32px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(35, 31, 32, 0.5);
}
@media (max-width: 40rem) {
  .hero-price__services {
    max-width: 100%;
  }
}
.hero-price__right {
  width: 55%;
}
@media (max-width: 64rem) {
  .hero-price__right {
    width: 100%;
  }
}
.hero-price__right img {
  width: 100%;
}

.portfolio-archive {
  background: var(--bg);
  color: var(--ink);
}
.portfolio-archive .container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 3rem) 0;
}
@media (max-width: 64rem) {
  .portfolio-archive .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.portfolio-archive__head {
  margin-top: clamp(2rem, 6vw, 4.5rem);
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}
.portfolio-archive__title {
  margin: 0 0 1.1rem;
  max-width: none;
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.portfolio-archive__intro {
  max-width: 52ch;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.55;
  color: rgba(35, 31, 32, 0.65);
}

.portfolio-cats {
  position: relative;
  width: 100%;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: clamp(1.75rem, 3.5vw, 3rem);
}
.portfolio-cats__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}
.portfolio-cats__item {
  flex: 0 1 auto;
}
@media (max-width: 700px) {
  .portfolio-cats__item {
    flex: 1 1 calc(50% - 0.375rem);
  }
}
.portfolio-cats__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  width: 100%;
  padding: 1.1rem 1.75rem;
  border-radius: 10px;
  border: 1.5px solid rgba(35, 31, 32, 0.14);
  color: var(--ink);
  background: transparent;
  text-decoration: none;
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
@media (max-width: 700px) {
  .portfolio-cats__link {
    font-size: 0.85rem;
    padding: 0.9rem 1.1rem;
  }
}
.portfolio-cats__link:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px);
}
.portfolio-cats__link:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 2px;
}
.portfolio-cats__link.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 14px 28px -12px rgba(0, 43, 255, 0.55);
}
.portfolio-cats__link.is-active:hover {
  transform: none;
}
.portfolio-cats__link.is-active .portfolio-cats__count {
  color: rgba(255, 255, 255, 0.75);
}
.portfolio-cats__count {
  color: rgba(35, 31, 32, 0.45);
  font-weight: 400;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}
.portfolio-cats__count::before {
  content: "(";
}
.portfolio-cats__count::after {
  content: ")";
}

.portfolio-archive .portfolio-grid {
  /* optional spacing: keep what you already have */
  margin-top: clamp(1.25rem, 3vw, 2.5rem);
}
.portfolio-archive {
  /* match: .portfolio-section .portfolio__grid */
}
.portfolio-archive .portfolio__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem 2.4rem;
}
@media (max-width: 64rem) {
  .portfolio-archive .portfolio__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 40rem) {
  .portfolio-archive .portfolio__grid {
    grid-template-columns: 1fr;
  }
}
.portfolio-archive {
  /* match: .portfolio-section .project */
}
.portfolio-archive .project {
  position: relative;
  display: grid;
  gap: 0.85rem;
  color: var(--ink);
}
.portfolio-archive .project__link {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  overflow: hidden;
  isolation: isolate;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.portfolio-archive .project:hover .project__link,
.portfolio-archive .project:focus-within .project__link {
  box-shadow: 0 20px 36px -20px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
  border-color: rgba(0, 43, 255, 0.25);
}
.portfolio-archive {
  /* match: .portfolio-section .project__media */
}
.portfolio-archive .project__media {
  position: relative;
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
  isolation: isolate;
  border: 0; /* homepage has no border */
  box-shadow: none; /* homepage has no shadow */
}
.portfolio-archive {
  /* match: .portfolio-section .project__img, .project__gif */
}
.portfolio-archive .project__img,
.portfolio-archive .project__gif {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 220ms ease, transform 220ms ease;
  will-change: opacity, transform;
}
.portfolio-archive .project__gif {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.portfolio-archive .project__img {
  opacity: 1;
}
.portfolio-archive {
  /* match homepage hover behavior, but trigger on card hover (not media hover) */
}
.portfolio-archive .project:hover .project__gif,
.portfolio-archive .project:focus-within .project__gif {
  opacity: 1;
  transform: scale(1.02);
}
.portfolio-archive .project:hover .project__hide-hover,
.portfolio-archive .project:focus-within .project__hide-hover {
  opacity: 0;
  transform: scale(1.02);
}
.portfolio-archive {
  /* match homepage text */
}
.portfolio-archive .project__wysiwyg {
  margin-top: 0;
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.7);
  padding: 1rem 1.1rem 1.25rem; /* inset now that the link is a bordered card */
}
.portfolio-archive .project__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.6rem;
}
.portfolio-archive .project__cat {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--panel);
  color: var(--blue);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1.2;
}
.portfolio-archive .project__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue);
}
.portfolio-archive .project__more svg {
  transition: transform 0.18s ease;
}
.portfolio-archive .project:hover .project__more svg,
.portfolio-archive .project:focus-within .project__more svg {
  transform: translateX(3px);
}
.portfolio-archive {
  /* reduced motion */
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-archive .project__img,
  .portfolio-archive .project__gif {
    transition: none;
    transform: none !important;
  }
}

.single-portfolio {
  padding: 120px 15px 0;
  position: relative;
  width: 100%;
  height: 85vh;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
  display: flex;
  align-items: center;
}
@media (max-width: 860px) {
  .single-portfolio {
    height: unset;
    padding-top: 60px;
  }
}
.single-portfolio::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #1340ef;
  clip-path: polygon(100% 14%, 100% 100%, 77% 100%);
  z-index: 2;
}
@media (max-width: 860px) {
  .single-portfolio::after {
    inset: unset;
    bottom: 0;
    height: 300px;
    left: 0;
    right: 0;
  }
}
.single-portfolio::before {
  content: "";
  position: absolute;
  right: 12%;
  bottom: -8%;
  width: 42%;
  aspect-ratio: 1/1;
  z-index: 1;
  background-image: radial-gradient(circle, #1340ef 1.6px, transparent 2.2px);
  background-size: 13px 13px;
  -webkit-mask-image: radial-gradient(circle at 62% 105%, #000 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0.35) 62%, transparent 80%);
  mask-image: radial-gradient(circle at 62% 105%, #000 0%, rgba(0, 0, 0, 0.85) 35%, rgba(0, 0, 0, 0.35) 62%, transparent 80%);
}
.single-portfolio__content {
  display: flex;
  align-items: center;
}
@media (max-width: 860px) {
  .single-portfolio__content {
    flex-wrap: wrap;
  }
}
.single-portfolio__left {
  width: 50%;
}
@media (max-width: 860px) {
  .single-portfolio__left {
    width: 100%;
  }
}
.single-portfolio__title h1 {
  font-size: 34px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}
@media (max-width: 1100px) {
  .single-portfolio__title h1 {
    font-size: 44px;
  }
}
@media (max-width: 860px) {
  .single-portfolio__title h1 {
    font-size: 26px;
    margin-top: 30px;
  }
}
.single-portfolio__desc {
  max-width: 46ch;
}
.single-portfolio__desc p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(35, 31, 32, 0.65);
  margin: 0;
}
@media (max-width: 860px) {
  .single-portfolio__desc {
    max-width: none;
  }
}
.single-portfolio__link {
  margin-top: 40px;
}
.single-portfolio__link a {
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  min-width: 218px;
  padding: 18px 24px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}
@media (max-width: 640px) {
  .single-portfolio__link a {
    width: 100%;
  }
}
.single-portfolio__right {
  width: 50%;
  z-index: 3;
}
@media (max-width: 860px) {
  .single-portfolio__right {
    width: 100%;
    margin-top: 20px;
  }
}
.single-portfolio__client {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.single-portfolio__client img {
  max-width: 180px;
  max-height: 120px;
  margin-top: 10px;
}
.single-portfolio__mac {
  position: relative;
}
.single-portfolio__mac img.mac {
  position: static;
  width: 100%;
  height: unset;
  aspect-ratio: unset;
}
.single-portfolio__mac img {
  position: absolute;
  width: 75.8%;
  height: unset;
  aspect-ratio: 1.6/1;
  left: 12.5%;
  top: 10%;
}

.single-portfolio-content {
  background-color: #fff;
  padding: 120px 15px 50px;
  position: relative;
}
@media (max-width: 640px) {
  .single-portfolio-content {
    padding: 50px 15px 10px;
  }
}
.single-portfolio-content__flex {
  display: flex;
  flex-wrap: wrap;
}
.single-portfolio-content__left {
  width: 50%;
  position: relative;
}
@media (max-width: 1100px) {
  .single-portfolio-content__left {
    width: 100%;
  }
}
.single-portfolio-content__left:before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--blue);
}
@media (max-width: 1100px) {
  .single-portfolio-content__left:before {
    display: none;
  }
}
.single-portfolio-content__left:nth-child(1):after {
  content: "";
  position: absolute;
  right: -5px;
  top: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--blue);
}
@media (max-width: 1100px) {
  .single-portfolio-content__left:nth-child(1):after {
    display: none;
  }
}
.single-portfolio-content__left.text {
  padding-right: 120px;
}
@media (max-width: 1100px) {
  .single-portfolio-content__left.text {
    padding-right: 0;
  }
}
.single-portfolio-content__left.text p {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.5;
}
.single-portfolio-content__left.pad {
  padding-top: 60px;
}
@media (max-width: 1100px) {
  .single-portfolio-content__left.pad {
    padding-top: 20px;
  }
}
.single-portfolio-content__right {
  width: 50%;
  padding-left: 120px;
}
@media (max-width: 1100px) {
  .single-portfolio-content__right {
    margin-top: 20px;
    padding-left: 0;
    width: 100%;
  }
}
.single-portfolio-content__right p {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.5;
}
.single-portfolio-content__right.pad {
  padding-top: 60px;
}
@media (max-width: 1100px) {
  .single-portfolio-content__right.pad {
    padding-top: 20px;
  }
}
.single-portfolio-content__un-title {
  font-weight: 600;
  color: var(--blue);
}
.single-portfolio-content__title {
  font-size: 32px;
  margin-top: 18px;
  width: 490px;
  font-weight: 500;
  line-height: 1.2;
}
@media (max-width: 860px) {
  .single-portfolio-content__title {
    width: 100%;
    font-size: 24px;
  }
}
.single-portfolio-content__info {
  background-color: rgba(19, 64, 239, 0.08);
  border-radius: 12px;
  padding: 30px;
  margin-top: 30px;
  width: 460px;
}
@media (max-width: 860px) {
  .single-portfolio-content__info {
    width: 100%;
  }
}

.single-features {
  background-color: #fff;
  position: relative;
  padding: 50px 15px;
}
@media (max-width: 640px) {
  .single-features {
    padding: 20px 15px;
  }
}
.single-features__content {
  display: flex;
  background-color: rgba(19, 64, 239, 0.08);
  padding: 30px;
  border-radius: 22px;
}
@media (max-width: 1100px) {
  .single-features__content {
    flex-wrap: wrap;
    gap: 30px 0;
  }
}
.single-features__item {
  width: 25%;
  display: flex;
  align-items: center;
  padding-right: 60px;
}
@media (max-width: 1100px) {
  .single-features__item {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .single-features__item {
    width: 100%;
  }
}
.single-features__icon img {
  width: 44px;
  height: 44px;
}
.single-features__right {
  width: calc(100% - 44px);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
}
.single-features__right span:nth-child(1) {
  font-weight: 600;
  color: var(--blue);
  display: block;
}
.single-features__right span:nth-child(2) {
  font-size: 13px;
  margin-top: 6px;
}

.single-portfolio-info__item {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 24px;
}
.single-portfolio-info__icon svg {
  width: 44px;
  height: 44px;
  fill: var(--blue);
}
.single-portfolio-info__icon svg path {
  fill: var(--blue);
}
.single-portfolio-info__right {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.single-portfolio-info__right span:nth-child(1) {
  text-transform: uppercase;
  font-size: 13px;
  color: var(--blue);
}
.single-portfolio-info__right span:nth-child(2) {
  font-weight: 500;
}
.single-portfolio-info__right a {
  font-size: 16px;
  color: var(--ink);
  margin-right: 6px;
}

.single-photos {
  background: #fff;
  position: relative;
  padding: 60px 15px;
}
.single-photos__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.single-photos__un-title {
  font-weight: 600;
  color: var(--blue);
}
.single-photos__title {
  margin-top: 12px;
  font-size: 44px;
  font-weight: 600;
}
.single-photos__visit-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
}
.single-photos__visit-link:hover {
  text-decoration: underline;
}
.single-photos__photos {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem 2.4rem;
}
@media (max-width: 1100px) {
  .single-photos__photos {
    margin-top: 30px;
  }
}
@media (max-width: 640px) {
  .single-photos__photos {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
.single-photos__item {
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 0 6px 0px #b8b8b8;
}
.single-photos__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-res {
  padding: 15px;
  position: relative;
  background-color: #fff;
}
.single-res__title {
  font-weight: 600;
  color: var(--blue);
}
.single-res__content {
  display: flex;
  padding: 30px 0;
  border-radius: 22px;
}
@media (max-width: 1100px) {
  .single-res__content {
    flex-wrap: wrap;
    gap: 30px 0;
  }
}
.single-res__item {
  width: 25%;
  display: flex;
  align-items: center;
  padding-right: 60px;
}
@media (max-width: 1100px) {
  .single-res__item {
    width: 50%;
  }
}
@media (max-width: 640px) {
  .single-res__item {
    width: 100%;
  }
}
.single-res__icon img {
  width: 44px;
  height: 44px;
}
.single-res__right {
  width: calc(100% - 44px);
  padding-left: 18px;
  display: flex;
  flex-direction: column;
}
.single-res__right span:nth-child(1) {
  font-weight: 600;
  color: #000000;
  font-size: 22px;
  display: block;
}
.single-res__right span:nth-child(2) {
  font-size: 13px;
  margin-top: 6px;
}

.single-more-projects {
  padding: 60px 15px;
  background-color: #fff;
}
.single-more-projects__un-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
.single-more-projects__title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 2.5rem;
}
.single-more-projects__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .single-more-projects__grid {
    grid-template-columns: 1fr;
  }
}
.single-more-projects__card {
  display: block;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(35, 31, 32, 0.1);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.single-more-projects__card:hover {
  border-color: var(--blue);
  box-shadow: 0 1.5rem 3rem -1.5rem rgba(0, 43, 255, 0.35);
}
.single-more-projects__card:hover .single-more-projects__link svg {
  transform: translateX(4px);
}
.single-more-projects__media {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.single-more-projects__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.single-more-projects__body {
  padding: 1.75rem;
}
.single-more-projects__project-title {
  margin: 0 0 0.5rem;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.single-more-projects__desc {
  margin: 0 0 1.25rem;
  color: rgba(35, 31, 32, 0.6);
  font-size: 0.9375rem;
  line-height: 1.45;
}
.single-more-projects__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--blue);
}
.single-more-projects__link svg {
  transition: transform 0.2s ease;
}

.feedback-portfolio {
  position: relative;
  background-color: #fff;
  padding: 60px 15px;
}
@media (max-width: 640px) {
  .feedback-portfolio {
    padding: 20px 15px;
  }
}
.feedback-portfolio__content {
  background-color: var(--blue);
  display: flex;
  padding: 40px 60px;
  border-radius: 24px;
}
@media (max-width: 1100px) {
  .feedback-portfolio__content {
    flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .feedback-portfolio__content {
    padding: 30px 14px;
  }
}
.feedback-portfolio__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  background-color: #fff;
}
.feedback-portfolio__icon svg {
  height: 60%;
  position: relative;
  right: 2px;
}
.feedback-portfolio__left {
  display: flex;
  align-items: center;
  width: 65%;
}
@media (max-width: 1100px) {
  .feedback-portfolio__left {
    width: 100%;
  }
}
@media (max-width: 640px) {
  .feedback-portfolio__left {
    flex-wrap: wrap;
  }
}
.feedback-portfolio__contents {
  display: flex;
  flex-direction: column;
  width: calc(100% - 100px);
  padding-left: 45px;
}
@media (max-width: 640px) {
  .feedback-portfolio__contents {
    width: 100%;
    padding-left: 0;
    margin-top: 20px;
  }
}
.feedback-portfolio__contents span:nth-child(1) {
  font-weight: 600;
  color: #fff;
  font-size: 26px;
  display: block;
}
@media (max-width: 640px) {
  .feedback-portfolio__contents span:nth-child(1) {
    font-size: 22px;
  }
}
.feedback-portfolio__contents span:nth-child(2) {
  font-size: 16px;
  color: #fff;
  margin-top: 12px;
}
.feedback-portfolio__btn {
  width: 35%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1100px) {
  .feedback-portfolio__btn {
    width: 100%;
    justify-content: flex-start;
    margin-top: 30px;
  }
}
.feedback-portfolio__btn a, .feedback-portfolio__btn button {
  background-color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 20px 30px;
  border-radius: 8px;
  gap: 48px;
  text-decoration: none;
}
@media (max-width: 640px) {
  .feedback-portfolio__btn a, .feedback-portfolio__btn button {
    width: 100%;
    justify-content: space-between;
  }
}
.feedback-portfolio__btn a span, .feedback-portfolio__btn button span {
  font-weight: 600;
  color: var(--blue);
}
.feedback-portfolio__btn-outline {
  background-color: transparent !important;
  border: 2px solid #fff !important;
}
.feedback-portfolio__btn-outline span {
  color: #fff !important;
}

.single-portfolio-text {
  position: relative;
  padding: 40px 15px 20px;
}
.single-portfolio-text__content {
  display: flex;
  border: 1px solid #e2e2e2;
  box-shadow: 0 0 9px #f2f4ff;
  border-radius: 32px;
  padding: 45px 40px;
  position: relative;
}
@media (max-width: 1024px) {
  .single-portfolio-text__content {
    flex-wrap: wrap;
  }
}
@media (max-width: 575px) {
  .single-portfolio-text__content {
    padding: 35px 25px;
  }
}
.single-portfolio-text__content:before {
  content: "";
  position: absolute;
  inset: 0;
  border-left: 3px solid #002bff;
  border-radius: 32px;
}
.single-portfolio-text__title {
  width: 40%;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 600;
  padding-right: 200px;
}
@media (max-width: 1200px) {
  .single-portfolio-text__title {
    padding-right: 100px;
  }
}
@media (max-width: 1024px) {
  .single-portfolio-text__title {
    width: 100%;
    padding-right: 0;
  }
}
@media (max-width: 575px) {
  .single-portfolio-text__title {
    font-size: 22px;
  }
}
.single-portfolio-text__text {
  width: 60%;
  padding-left: 50px;
}
@media (max-width: 1024px) {
  .single-portfolio-text__text {
    width: 100%;
    padding-left: 0;
    margin-top: 40px;
  }
}
@media (max-width: 575px) {
  .single-portfolio-text__text {
    margin-top: 20px;
  }
}
.single-portfolio-text__text p {
  margin-bottom: 20px;
  font-size: 20px;
}
@media (max-width: 575px) {
  .single-portfolio-text__text p {
    font-size: 16px;
  }
}
.single-portfolio-text__text a {
  color: var(--blue);
}
.single-portfolio-text__text ol {
  padding-left: 40px;
  font-size: 20px;
}
@media (max-width: 575px) {
  .single-portfolio-text__text ol {
    font-size: 16px;
    padding-left: 20px;
  }
}
.single-portfolio-text__text ul {
  padding-left: 40px;
  font-size: 20px;
}
@media (max-width: 575px) {
  .single-portfolio-text__text ul {
    font-size: 16px;
    padding-left: 20px;
  }
}
.single-portfolio-text__text h3 {
  font-size: 26px;
  margin: 40px 0 20px;
}
@media (max-width: 575px) {
  .single-portfolio-text__text h3 {
    font-size: 20px;
  }
}

.single-portfolio-image {
  margin-bottom: 100px;
}
.single-portfolio-image__img {
  text-align: center;
}
.single-portfolio-image__img img {
  max-width: 90%;
  margin: auto;
}

.service-single .container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(1.5rem, 3vw, 3rem) 0;
}
@media (max-width: 64rem) {
  .service-single .container {
    padding-left: 0;
    padding-right: 0;
  }
}
.service-single__layout {
  display: grid;
  grid-template-columns: 290px 1fr;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: start;
}
@media (max-width: 64rem) {
  .service-single__layout {
    grid-template-columns: 1fr;
  }
}
.service-single__nav {
  position: sticky;
  top: calc(var(--header-height, 0px) + 1.5rem);
}
@media (max-width: 64rem) {
  .service-single__nav {
    position: static;
  }
}
.service-single__title {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.1;
}
.service-single__desc {
  max-width: 70ch;
  color: rgba(0, 0, 0, 0.7);
}
.service-single__desc h2 {
  font-size: 28px;
  margin: 10px 0 18px;
  letter-spacing: 0;
  font-weight: 600;
}
.service-single__desc h3 {
  font-size: 22px;
  margin: 10px 0 18px;
  letter-spacing: 0;
  font-weight: 600;
}
.service-single__desc p {
  margin-bottom: 16px;
}
.service-single__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}
.service-single__faq {
  display: grid;
  gap: 0.75rem;
  max-width: 70ch;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.service-single__faq-item {
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 6px;
  background: #fff;
}
.service-single__faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  background: none;
  border: 0;
  appearance: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}
.service-single__faq-icon {
  flex: none;
  color: rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease;
}
.service-single__faq-item.is-open .service-single__faq-icon {
  transform: rotate(180deg);
}
.service-single__faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 1.25rem;
  transition: grid-template-rows 0.25s ease, padding 0.25s ease;
}
.service-single__faq-item.is-open .service-single__faq-answer {
  grid-template-rows: 1fr;
  padding: 0 1.25rem 1rem;
}
.service-single__faq-answer-inner {
  overflow: hidden;
  min-height: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.7);
}
.service-single__faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* LEFT MENU BOX (mimics your service cards look) */
.service-nav {
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #fff;
  padding: 1.75rem 1.25rem;
  overflow: hidden;
  box-shadow: 0 24px 48px -32px rgba(0, 0, 0, 0.18);
}
.service-nav__group + .service-nav__group {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}
.service-nav__title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  color: rgba(0, 0, 0, 0.4);
}
.service-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.2rem;
}
.service-nav__item a {
  display: block;
  padding: 0.65rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.65);
  border-radius: 10px;
  border-left: 3px solid transparent;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.service-nav__item a:hover {
  background: var(--panel);
  color: var(--ink);
  transform: translateX(2px);
}
.service-nav__item.is-current a {
  background: rgba(0, 43, 255, 0.08);
  border-left-color: var(--blue);
  color: var(--blue);
  font-weight: 600;
}
.service-nav {
  /* little blue triangle corner (like your cards) */
}
.service-nav__corner {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: var(--blue);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
  pointer-events: none;
}

/* BUTTONS (match your minimal style) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1.5rem;
  border-radius: 2px;
  text-decoration: none;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  cursor: pointer;
}
.btn--ghost {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.45);
  color: rgba(0, 0, 0, 0.85);
}
.btn--solid {
  background: var(--ink);
  border: 1px solid var(--ink);
  color: #fff;
}
.btn--blue {
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
}
.btn:hover {
  transform: translateY(-1px);
}

/* Featured portfolio block (bottom image + hover gif) */
.service-feature {
  position: relative;
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  display: grid;
  gap: 0.75rem;
  max-width: 620px;
}
.service-feature__link {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.service-feature__media {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 6px;
  overflow: hidden;
  isolation: isolate;
  background: #fff;
}
.service-feature__img, .service-feature__gif {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 220ms ease, transform 220ms ease;
  will-change: opacity, transform;
}
.service-feature__gif {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.service-feature:hover .service-feature__gif, .service-feature:focus-within .service-feature__gif {
  opacity: 1;
  transform: scale(1.02);
}
.service-feature:hover .is-hide-hover, .service-feature:focus-within .is-hide-hover {
  opacity: 0;
  transform: scale(1.02);
}
.service-feature__meta {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.7);
}
.service-feature__meta strong {
  display: block;
  color: rgba(0, 0, 0, 0.85);
  margin-bottom: 0.2rem;
  font-weight: 600;
}

.service-switch {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
}
.service-switch__tabs {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}
.service-switch__tab {
  appearance: none;
  border: 1px solid rgba(0, 0, 0, 0.45);
  background: #fff;
  color: rgba(0, 0, 0, 0.85);
  padding: 0.55rem 2rem 0.45rem;
  border-radius: 2px;
  font-size: 0.875rem;
  letter-spacing: 0.12em;
  cursor: pointer;
}
.service-switch__tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}
.service-switch__empty {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.65);
}

/* Portfolio grid inside service: match your homepage look */
.service-single .portfolio-grid {
  margin-top: clamp(2rem, 4vw, 3.5rem);
}
.service-single .portfolio__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.2rem 2.4rem;
}
@media (max-width: 64rem) {
  .service-single .portfolio__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 40rem) {
  .service-single .portfolio__grid {
    grid-template-columns: 1fr;
  }
}
.service-single .project {
  position: relative;
  display: grid;
  gap: 0.85rem;
}
.service-single .project__link {
  text-decoration: none;
}
.service-single .project__media {
  position: relative;
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 1.5/1;
  overflow: hidden;
  isolation: isolate;
}
.service-single .project__img,
.service-single .project__gif {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: opacity 220ms ease, transform 220ms ease;
  will-change: opacity, transform;
}
.service-single .project__gif {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
}
.service-single .project:hover .project__gif,
.service-single .project:focus-within .project__gif {
  opacity: 1;
  transform: scale(1.02);
}
.service-single .project:hover .project__hide-hover,
.service-single .project:focus-within .project__hide-hover {
  opacity: 0;
  transform: scale(1.02);
}
.service-single .project__wysiwyg {
  margin-top: 14px;
  font-size: 0.75rem;
  line-height: 1.35;
  color: rgba(0, 0, 0, 0.7);
}

/* Samples grid */
.samples__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
@media (max-width: 64rem) {
  .samples__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 40rem) {
  .samples__grid {
    grid-template-columns: 1fr;
  }
}

.sample {
  margin: 0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}
.sample__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Services archive (/service/) */
.services-archive {
  background: var(--bg);
  color: var(--ink);
}
.services-archive .container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 7.5rem) 0 clamp(3rem, 6vw, 5rem);
}
@media (max-width: 64rem) {
  .services-archive .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}
.services-archive__head {
  margin-bottom: clamp(1.75rem, 4vw, 3rem);
}
.services-archive .portfolio__see-more {
  margin-top: clamp(2rem, 5vw, 3.5rem);
}
.services-archive__title {
  margin: 0 0 1.1rem;
  font-size: clamp(2.25rem, 4.6vw, 4rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: 0.01em;
  color: var(--ink);
}
.services-archive__intro {
  max-width: 52ch;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.55;
  color: rgba(35, 31, 32, 0.65);
}
.services-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.75rem;
}
@media (max-width: 64rem) {
  .services-archive__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 40rem) {
  .services-archive__grid {
    grid-template-columns: 1fr;
  }
}

.service-card-v2 {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 1.75rem 1.75rem 2.25rem;
  transition: box-shadow 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
}
.service-card-v2:hover, .service-card-v2:focus-within {
  box-shadow: 0 20px 36px -20px rgba(0, 0, 0, 0.2);
  transform: translateY(-4px);
  border-color: rgba(0, 43, 255, 0.25);
}
.service-card-v2__link {
  position: absolute;
  inset: 0;
  z-index: 5;
}
.service-card-v2::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: var(--blue);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.service-card-v2__head {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.service-card-v2__icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--panel);
  color: var(--blue);
}
.service-card-v2__icon img {
  width: 24px;
  height: 24px;
}
.service-card-v2__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ink);
}
.service-card-v2__desc {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.55;
  color: rgba(35, 31, 32, 0.65);
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.service-card-v2__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.service-card-v2__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: var(--ink);
}
.service-card-v2__list svg {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  color: var(--blue);
}

.error-404 {
  padding-top: clamp(8rem, 12vw, 11rem);
  padding-bottom: clamp(4rem, 8vw, 8rem);
  color: var(--ink);
  text-align: center;
}
.error-404__hero {
  position: relative;
  max-width: 52rem;
  margin: 0 auto;
}
.error-404__kicker {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.6em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.6);
}
.error-404__code {
  margin: 0;
  font-size: clamp(6rem, 16vw, 14rem);
  line-height: 0.9;
  font-weight: 400;
  letter-spacing: 0.15em;
  color: var(--blue);
}
.error-404__title {
  margin: 1rem 0 0.75rem;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--ink);
}
.error-404__desc {
  margin: 0 auto 2rem;
  max-width: 38ch;
  font-size: 1rem;
  color: rgba(0, 0, 0, 0.7);
}
.error-404__actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.error-404__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 2rem;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease;
}
.error-404__btn--primary {
  background: var(--pink);
  color: #fff;
  border: 1px solid var(--pink);
}
.error-404__btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid rgba(0, 0, 0, 0.45);
}
.error-404__btn:hover {
  transform: translateY(-2px);
}
.error-404__divider {
  margin-top: clamp(3rem, 6vw, 6rem);
}

/*# sourceMappingURL=style.css.map */
