:root {
  --orange: #003172;
  --orange-hover: #00458f;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.72);
  --hero: #16181d;
  --glass: rgba(28, 31, 38, 0.18);
  --line: rgba(255, 255, 255, 0.14);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-display: "Inter", system-ui, sans-serif;
  --font-text: "Poppins", system-ui, sans-serif;
  --header-h: 88px;
  --ink: #15181e;
  --paper: #ffffff;
  --muted-ink: #4a5560;
  --z-slide: 10;
  --z-scrim: 20;
  --z-stage: 30;
  --z-header: 50;
  --z-nav: 60;
  --max: 1240px;
  --page-gutter: max(32px, calc((100vw - var(--max)) / 2));
}

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

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font);
  color: var(--white);
  background: var(--hero);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

body.home {
  background: #ffffff;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 100;
  background: var(--orange);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
}

.skip-link:focus {
  top: 16px;
}

/* Header */

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-header);
  padding: 12px 0 0;
}

.admin-bar .site-header {
  top: 32px;
}

.site-header.is-solid {
  position: relative;
  background: rgba(16, 18, 22, 0.88);
  backdrop-filter: blur(16px);
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.header-inner {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand-link,
.site-brand .custom-logo-link {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.brand-logo,
.custom-logo {
  display: block;
  height: 68px;
  width: auto;
  max-width: min(310px, 62vw);
  object-fit: contain;
}

.site-header:not(.is-solid) .brand-logo,
.site-header:not(.is-solid) .custom-logo {
  filter: brightness(0) invert(1);
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-panel {
  display: contents;
}

.nav-panel-brand,
.nav-contact {
  display: none;
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-menu .menu-link,
.primary-menu > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  transition: color 180ms ease;
}

.primary-menu .menu-link:hover,
.primary-menu > li > a:hover,
.primary-menu .current-menu-item > a {
  color: var(--white);
}

.menu-caret {
  display: inline-flex;
  color: var(--orange);
  margin-top: 1px;
}

.primary-menu > .menu-item-has-children {
  position: relative;
  padding-bottom: 18px;
  margin-bottom: -18px;
}

.primary-menu > .menu-item-has-children::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  z-index: 4;
  width: 280px;
  height: 22px;
  transform: translateX(-50%);
}

.primary-menu > .menu-item-wide::after {
  width: 480px;
}

.primary-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 5;
  transform: translateX(-50%);
  min-width: 240px;
  max-height: min(70vh, 520px);
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  padding: 10px;
  list-style: none;
  background: rgba(22, 24, 29, 0.94);
  border: 1px solid var(--line);
  border-radius: 14px;
  backdrop-filter: blur(18px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, visibility 0s linear 220ms;
}

.primary-menu .menu-item-wide > .sub-menu {
  min-width: 460px;
  columns: 2;
  column-gap: 8px;
}

.primary-menu .menu-item-wide > .sub-menu li {
  break-inside: avoid;
}

.primary-menu > .menu-item-has-children:hover > .sub-menu,
.primary-menu > .menu-item-has-children.is-hover > .sub-menu,
.primary-menu > .menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.primary-menu .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--white);
  cursor: pointer;
  transition: background 180ms ease;
}

.primary-menu .sub-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: calc(var(--z-nav) + 1);
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  min-height: 44px;
  min-width: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  cursor: pointer;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
}

.nav-toggle-bars span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-toggle-bars span {
  transition: transform 180ms ease, opacity 180ms ease;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--hero);
}

.home .hero {
  margin-bottom: -12px;
}

.home .about {
  position: relative;
  z-index: 2;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
  z-index: var(--z-slide);
}

.hero-slide {
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-image,
.hero-slide-video,
.hero-slide-poster {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center center;
}

.hero-slide-video,
.hero-slide-poster {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-slide-poster {
  z-index: 1;
}

.hero-slide.is-playing .hero-slide-poster {
  opacity: 0;
}

.hero-slide-video::-webkit-media-controls,
.hero-slide-video::-webkit-media-controls-enclosure,
.hero-slide-video::-webkit-media-controls-start-playback-button,
.hero-slide-video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.hero-placeholder {
  width: 100%;
  height: 100%;
  background:
    radial-gradient(ellipse at 62% 48%, rgba(80, 86, 98, 0.35), transparent 46%),
    linear-gradient(180deg, #1c1f26 0%, #12141a 100%);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: var(--z-scrim);
  background:
    linear-gradient(180deg, rgba(10, 12, 16, 0.38) 0%, rgba(10, 12, 16, 0.18) 38%, rgba(10, 12, 16, 0.55) 100%);
  pointer-events: none;
}

.hero-wordmark {
  position: absolute;
  top: 12%;
  left: 50%;
  z-index: var(--z-stage);
  transform: translate(-48%, -80px);
  font-size: clamp(5.5rem, 16vw, 13.5rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: rgba(255, 255, 255, 0.06);
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  opacity: 0;
}

.hero.is-ready .hero-wordmark {
  animation: hero-from-top 1100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-stage {
  position: relative;
  z-index: var(--z-stage);
  width: min(var(--max), calc(100% - 64px));
  min-height: 100vh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 380px) 1fr;
  gap: 48px;
  align-items: end;
  padding: calc(var(--header-h) + 48px) 0 72px;
}

.stat-card {
  width: 100%;
  max-width: 360px;
  margin: 0 0 96px -36px;
  padding: 36px 34px 32px;
  border-radius: 26px;
  background: var(--glass);
  border: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateX(-90px);
}

.hero.is-ready .stat-card {
  animation: hero-from-left 1100ms cubic-bezier(0.22, 1, 0.36, 1) 120ms forwards;
}

.stat-value {
  margin: 0;
  font-size: 4rem;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
}

.stat-label {
  margin: 10px 0 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.stat-copy {
  margin: 14px 0 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: var(--muted);
}

.stat-people {
  display: flex;
  align-items: center;
  margin-top: 26px;
}

.avatar,
.avatar-add {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  flex-shrink: 0;
}

.avatar {
  margin-right: -12px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 18%;
}

.avatar-a {
  background-image: url("../../images/team-1.jpg");
}

.avatar-b {
  background-image: url("../../images/team-2.jpg");
}

.avatar-c {
  background-image: url("../../images/team-3.jpg");
}

.avatar-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 6px;
  background: var(--orange);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 180ms ease;
}

.avatar-add:hover {
  background: var(--orange-hover);
}

.hero-copy {
  justify-self: end;
  width: min(100%, 620px);
  margin-bottom: 96px;
  padding-bottom: 8px;
  opacity: 0;
  transform: translateX(90px);
}

.hero.is-ready .hero-copy {
  animation: hero-from-right 1100ms cubic-bezier(0.22, 1, 0.36, 1) 180ms forwards;
}

@keyframes hero-from-top {
  to {
    opacity: 1;
    transform: translate(-48%, 0);
  }
}

@keyframes hero-from-left {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes hero-from-right {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

[data-reveal] {
  opacity: 0;
  --reveal-delay: 0ms;
}

[data-reveal="up"].is-in {
  animation: fadeInUp 1250ms ease var(--reveal-delay) both;
}

[data-reveal="down"].is-in {
  animation: fadeInDown 1250ms ease var(--reveal-delay) both;
}

[data-reveal="left"].is-in {
  animation: fadeInLeft 1250ms ease var(--reveal-delay) both;
}

[data-reveal="right"].is-in {
  animation: fadeInRight 1250ms ease var(--reveal-delay) both;
}

[data-reveal-delay="200"] {
  --reveal-delay: 200ms;
}

[data-reveal-delay="400"] {
  --reveal-delay: 400ms;
}

[data-reveal-delay="600"] {
  --reveal-delay: 600ms;
}

[data-reveal].is-done {
  animation: none;
  opacity: 1;
  transform: none;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 80px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -80px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-80px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(80px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes hero-mobile-title {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero-title {
  margin: 0;
  font-size: clamp(2.9rem, 6vw, 5.1rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.hero-title span {
  display: block;
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 28px;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  min-height: 58px;
  padding: 8px 10px 8px 26px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 1.02rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease;
}

.btn-orange:hover {
  background: var(--orange-hover);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

.hero-excerpt {
  margin: 0;
  max-width: 52ch;
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero-controls {
  position: absolute;
  right: 40px;
  bottom: 36px;
  z-index: var(--z-stage);
  display: flex;
  gap: 10px;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(20, 22, 28, 0.45);
  color: var(--white);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: background 180ms ease, border-color 180ms ease;
}

.hero-arrow:hover {
  background: var(--orange);
  border-color: var(--orange);
}

/* About */

.about {
  background: var(--paper);
  color: #555555;
  font-family: var(--font-text);
  padding: 80px 0 0;
  overflow: hidden;
}

.about-wrap {
  width: min(var(--max), calc(100% - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, 0.62fr) minmax(0, 1.4fr);
  grid-template-areas:
    "kicker content"
    "media  content";
  column-gap: 32px;
  row-gap: 18px;
  align-items: start;
}

.about-kicker {
  grid-area: kicker;
  align-self: start;
  margin: 0;
}

.about-content {
  grid-area: content;
  padding-bottom: 88px;
  margin-left: -12px;
}

.about-media {
  grid-area: media;
  position: relative;
  margin-left: calc(-1 * var(--page-gutter));
  width: calc(100% + var(--page-gutter));
  min-height: 420px;
  align-self: stretch;
}

.about-photo {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left bottom;
  border: 0;
  background: none;
  border-radius: 0;
}

.media-slot {
  position: relative;
  overflow: hidden;
  background: #e8eaef;
  border-radius: 22px;
}

.media-slot--wide {
  aspect-ratio: 16 / 10;
  min-height: 168px;
  margin-top: 28px;
}

.media-slot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1c2430;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
}

.about-kicker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  background: var(--orange);
  color: var(--white);
}

.about-kicker-icon svg {
  width: 10px;
  height: 10px;
}

.about-title {
  margin: 0 0 36px;
  max-width: none;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  letter-spacing: 0;
  line-height: 1.2;
  color: #1c2430;
}

.about-title strong {
  font-weight: 500;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  align-items: start;
}

.about-quote {
  margin: 0;
}

.about-quote-head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about-quote-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(145deg, #c9c3bb, #8d8680);
}

.about-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 10px;
  margin-bottom: 8px;
}

.about-rating-score {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #1c2430;
}

.about-stars {
  display: flex;
  gap: 5px;
  color: var(--orange);
}

.about-quote-text {
  margin: 0;
  font-family: var(--font-text);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.6;
  color: #353535;
}

.about-quote-cite {
  display: block;
  margin-top: 10px;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #1c2430;
}

.about-copy-col p {
  margin: 0 0 20px;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
  text-align: left;
}

.about-btn {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

/* Why Choose */

.choose {
  background: #1c2430;
  color: #ffffff;
  padding: 120px 0;
  overflow: hidden;
}

.choose-wrap {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.choose-head {
  width: 45%;
}

.choose-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
}

.choose-kicker-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--orange);
}

.choose-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  color: #ffffff;
}

.choose-title strong {
  font-weight: 500;
}

.choose-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  padding-top: 80px;
}

.choose-photo {
  width: 26%;
  flex-shrink: 0;
}

.choose-photo img {
  display: block;
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: center center;
  border-radius: 25px;
}

.choose-stats {
  width: 70%;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}

.choose-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  gap: 40px;
}

.choose-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  border-radius: 25px;
  background: #242d3b;
}

.choose-card--accent {
  background: var(--orange);
}

.choose-num {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
}

.choose-num--sm {
  font-size: 32px;
}

.choose-num--md {
  font-size: 62px;
}

.choose-num--lg {
  font-size: 92px;
}

.choose-suffix {
  font-weight: 500;
  color: var(--orange);
}

.choose-num--sm .choose-suffix {
  font-size: 30px;
}

.choose-num--md .choose-suffix {
  font-size: 35px;
}

.choose-num--lg .choose-suffix {
  font-size: 61px;
  color: #ffffff;
}

.choose-label {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
}

.choose-copy {
  margin: 0;
  padding: 0 40px;
  min-height: 80px;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #e9e9e9;
}

/* Services */

.services {
  background: #ffffff;
  color: #1c2430;
  padding: 120px 0;
  overflow: hidden;
}

.services-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.services-head {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 80px;
  width: 100%;
}

.services-intro {
  flex: 0 1 389px;
  width: 389px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e9e9e9;
  text-align: right;
}

.services-intro p {
  margin: 0 0 20px;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
}

.services-intro a {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.services-heading {
  flex: 0 1 576px;
  width: 576px;
  max-width: 576px;
}

.services-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #1c2430;
}

.services-kicker-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--orange);
}

.services-title {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  color: #1c2430;
}

.services-title strong {
  font-weight: 500;
}

.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 40px;
  padding: 40px;
  border-radius: 25px;
  background: #f7f7f7;
  overflow: visible;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100px;
  height: 100px;
  background: #ffffff;
  border-bottom-left-radius: 60px;
  pointer-events: none;
}

.service-card-go {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  transition: transform 400ms ease;
}

.service-card-go:hover {
  background: var(--orange-hover);
  transform: rotate(45deg);
}

.service-card-title {
  width: 70%;
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: #1c2430;
}

.service-card-image {
  width: 100%;
  aspect-ratio: 1024 / 683;
  object-fit: cover;
  border-radius: 20px;
}

/* Projects */

.projects {
  background: #1c2430;
  color: #ffffff;
  padding: 120px 0;
  overflow: hidden;
}

.projects-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.projects-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
}

.projects-heading {
  width: 50%;
}

.projects-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
}

.projects-kicker-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--orange);
}

.projects-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  color: #ffffff;
}

.projects-title strong {
  font-weight: 500;
}

.projects-aside {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.projects-copy {
  margin: 0;
  max-width: 42ch;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #e9e9e9;
  text-align: left;
}

.projects-btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.project-card {
  position: relative;
  min-height: 520px;
  border-radius: 25px;
  overflow: hidden;
}

.project-card-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform 600ms ease;
}

.project-card:hover .project-card-bg {
  transform: scale(1.06);
}

.project-card-info {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 30px;
  border-radius: 25px;
  background: rgba(28, 36, 48, 0.16);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transform: translateY(12px);
  transition: transform 500ms ease;
}

.project-card:hover .project-card-info {
  transform: translateY(0);
}

.project-card-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
}

.project-card-cat {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #e9e9e9;
}

.project-card-go {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  transition: transform 400ms ease, background 180ms ease;
}

.project-card-go:hover {
  background: var(--orange-hover);
  transform: rotate(45deg);
}

/* Reviews */

.reviews {
  background: #ffffff;
  color: #1c2430;
  padding: 120px 0 0;
  overflow: hidden;
}

.reviews-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.reviews-head {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 50px;
}

.reviews-heading {
  flex: 1 1 auto;
  width: auto;
  max-width: none;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.reviews-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #1c2430;
}

.reviews-kicker-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--orange);
}

.reviews-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  color: #1c2430;
}

.reviews-title strong {
  font-weight: 500;
}

@media (min-width: 961px) {
  .reviews-title-line {
    white-space: nowrap;
  }
}

.reviews-aside {
  flex: 0 1 335px;
  width: 335px;
  max-width: 335px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 20px;
  padding-top: 0;
}

.reviews-copy {
  margin: 0;
  max-width: none;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
}

.reviews-head-photo {
  flex: 0 1 335px;
  width: 335px;
  max-width: 335px;
  margin-left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.reviews-head-photo img {
  width: 100%;
  height: 224px;
  object-fit: cover;
  border-radius: 20px;
}

.reviews-btn {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
}

.reviews-body {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.reviews-photos {
  flex: 0 1 469px;
  width: 469px;
  max-width: 469px;
  min-height: 550px;
}

.reviews-photo {
  width: 100%;
  object-fit: cover;
  display: block;
}

.reviews-photo--tall {
  height: 550px;
  border-radius: 20px;
}

.reviews-photo--wide {
  width: 78%;
  max-width: 601px;
  margin-top: 50px;
  margin-left: auto;
  height: 294px;
  border-radius: 20px 20px 0 0;
}

.reviews-slider {
  position: relative;
  flex: 0 1 771px;
  width: 771px;
  max-width: 771px;
}

.reviews-viewport {
  position: relative;
  overflow: hidden;
}

.review-mark {
  position: absolute;
  right: 0;
  top: 8px;
  z-index: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 230px;
  font-weight: 400;
  line-height: 0.7;
  color: #f7f7f7;
  pointer-events: none;
  user-select: none;
}

.reviews-track {
  position: relative;
  z-index: 1;
  display: flex;
  transition: transform 1000ms ease;
}

.review-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: var(--orange);
}

.review-quote {
  margin: 20px 0 40px;
  font-family: var(--font-text);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: #1c2430;
  min-height: 4.8em;
}

.review-quote.is-note {
  font-style: normal;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 16px;
}

.review-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.review-name {
  display: block;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: #1c2430;
}

.review-role {
  display: block;
  margin-top: 2px;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  color: var(--orange);
}

.page-shell {
  padding: 160px 0 80px;
}

.page-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.page-inner h1 {
  margin: 0 0 24px;
  font-size: 2.4rem;
}

.page-body {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.7;
}

.page-body h2 {
  margin: 32px 0 12px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: #ffffff;
}

.page-body p {
  margin: 0 0 14px;
}

.page-body a {
  color: #8eb4e8;
  text-decoration: underline;
}

/* CTA banner — Morph overlap: 80% image + 45% copy with -25% margin */

.cta-banner {
  background: #1c2430;
  color: #ffffff;
  padding: 120px 0;
  overflow: visible;
}

.cta-banner-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
}

.cta-layout {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
}

.cta-media {
  position: relative;
  width: 80%;
  min-height: 650px;
  border-radius: 25px;
  overflow: hidden;
  background-color: #1c2430;
  background-image: var(--cta-bg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cta-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 36, 48, 0.25);
  pointer-events: none;
}

.cta-play-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 69%;
  min-height: 650px;
  padding: 0;
}

.cta-play {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  padding: 0;
  border: 2px solid var(--orange);
  border-radius: 50%;
  background: rgba(28, 36, 48, 0.16);
  color: #ffffff;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
  transition: background 400ms ease;
}

.cta-play:hover,
.cta-play:focus-visible {
  background: var(--orange);
}

.cta-play-icon {
  display: block;
  width: 0;
  height: 0;
  margin: 0 0 0 4px;
  border-style: solid;
  border-width: 13px 0 13px 22px;
  border-color: transparent transparent transparent currentColor;
}

.cta-play::before,
.cta-play::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 var(--orange);
  animation: cta-ripple 3s infinite;
  opacity: 0.6;
  z-index: -1;
  pointer-events: none;
}

.cta-play::before {
  animation-delay: 0.9s;
}

.cta-play::after {
  animation-delay: 0.3s;
}

@keyframes cta-ripple {
  0% {
    box-shadow: 0 0 0 0 var(--orange);
    opacity: 0.55;
  }

  70% {
    box-shadow: 0 0 0 50px var(--orange);
    opacity: 0;
  }

  100% {
    box-shadow: 0 0 0 0 var(--orange);
    opacity: 0;
  }
}

.cta-panel {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  width: 45%;
  min-height: 464px;
  margin-left: -25%;
}

.cta-notch {
  display: block;
  width: 335px;
  height: 50px;
  flex-shrink: 0;
  pointer-events: none;
}

.cta-notch--top {
  border-radius: 0 0 25px 0;
  box-shadow: 20px 20px 0 0 #1c2430;
}

.cta-notch--bottom {
  border-radius: 0 25px 0 0;
  box-shadow: 20px -20px 0 0 #1c2430;
}

.cta-copy {
  position: relative;
  z-index: 1;
  padding: 50px 0 50px 50px;
  background: #1c2430;
  border-radius: 25px;
}

.cta-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  color: #ffffff;
}

.cta-title strong {
  font-weight: 500;
}

.cta-text {
  margin: 0 0 28px;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #e9e9e9;
}

.cta-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cta-modal[hidden] {
  display: none;
}

.cta-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 14, 18, 0.82);
}

.cta-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(960px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}

.cta-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.cta-modal-close:hover {
  background: var(--orange);
}

.cta-modal-frame,
.cta-modal-frame iframe,
.cta-modal-frame video {
  width: 100%;
  height: 100%;
  border: 0;
}

.cta-modal-frame video {
  display: block;
  object-fit: contain;
  background: #000;
}

@media (max-width: 1024px) {
  .cta-banner {
    padding: 80px 0;
  }

  .cta-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-media {
    width: 100%;
    min-height: 365px;
  }

  .cta-play-wrap {
    width: 100%;
    min-height: 365px;
  }

  .cta-play {
    width: 120px;
    height: 120px;
  }

  .cta-panel {
    width: 100%;
    min-height: 0;
    margin-left: 0;
    margin-top: 28px;
  }

  .cta-notch {
    display: none;
  }

  .cta-copy {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .cta-title {
    font-size: 46px;
  }
}

/* Insights */

.insights {
  background: #ffffff;
  color: #1c2430;
  padding: 120px 0;
  overflow: hidden;
}

.insights-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.insights-head {
  width: 60%;
  text-align: center;
}

.insights-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #1c2430;
}

.insights-kicker-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--orange);
}

.insights-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  color: #1c2430;
}

.insights-title strong {
  font-weight: 500;
}

@media (min-width: 961px) {
  .insights-title-line {
    white-space: nowrap;
  }
}

.insights-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.insight-card {
  overflow: hidden;
  border-radius: 25px;
  background: #f7f7f7;
}

.insight-media {
  position: relative;
  overflow: hidden;
  border-radius: 25px 25px 0 0;
}

.insight-media img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 400ms ease;
}

.insight-card:hover .insight-media img {
  transform: scale(1.05);
}

.insight-cat {
  position: absolute;
  top: 0;
  left: 0;
  padding: 10px 20px;
  border-radius: 0 0 25px 0;
  background: #ffffff;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1c2430;
}

.insight-body {
  padding: 40px;
}

.insight-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1c2430;
}

.insight-date,
.insight-comments {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.insight-date svg,
.insight-comments svg {
  flex-shrink: 0;
  color: var(--orange);
}

.insight-card-title {
  margin: 20px 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: #1c2430;
}

.insight-excerpt {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
}

/* Ready to Build */

.build {
  background: #1c2430;
  color: #ffffff;
  padding: 120px 0;
  overflow: hidden;
}

.build-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
}

.build-copy {
  width: 66%;
}

.build-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
}

.build-kicker-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--orange);
}

.build-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 75px;
  font-weight: 300;
  line-height: 1.2;
  color: #ffffff;
}

.build-title strong {
  font-weight: 500;
}

@media (min-width: 961px) {
  .build-title-line {
    white-space: nowrap;
  }
}

.build-go {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  transition: transform 400ms ease, background 180ms ease;
}

.build-go:hover {
  background: var(--orange-hover);
  transform: rotate(45deg);
}

/* Contact */

.contact {
  background: #ffffff;
  color: #1c2430;
  padding: 120px 0;
  overflow: hidden;
}

.contact-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.contact-form-card,
.contact-info {
  width: 50%;
}

.contact-form-card {
  padding: 40px;
  border-radius: 25px;
  background: #f7f7f7;
}

.contact-form-title {
  margin: 0 0 32px;
  text-align: center;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.3;
  color: #1c2430;
}

.contact-success {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--orange);
}

.contact-form {
  position: relative;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px 0;
}

.contact-field {
  display: flex;
  flex-direction: column;
  width: 48%;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1c2430;
}

.contact-field--full {
  width: 100%;
}

.contact-field span {
  padding-bottom: 10px;
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  padding: 17px;
  border: 1px solid #e7e7e7;
  border-radius: 15px;
  background: #ffffff;
  color: #1c2430;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.5;
}

.contact-field select {
  min-height: 56px;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%231c2430' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5 6 6.5 11 1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: #9aa0a6;
}

.contact-field textarea {
  height: 170px;
  resize: vertical;
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 17px 34px;
  border: 1px solid var(--orange);
  border-radius: 15px;
  background: var(--orange);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.contact-submit:hover {
  background: transparent;
  color: #1c2430;
}

.contact-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 22px;
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
  color: #555555;
}

.contact-kvkk input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--orange);
}

.contact-kvkk a {
  color: var(--orange);
  text-decoration: underline;
}

.contact-company {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #1c2430;
}

.contact-value a:hover {
  color: var(--orange);
}

.contact-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #1c2430;
}

.contact-kicker-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--orange);
}

.contact-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  color: #1c2430;
}

.contact-title strong {
  font-weight: 500;
}

@media (min-width: 961px) {
  .contact-title-line {
    white-space: nowrap;
  }
}

.contact-lead {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
}

.contact-rule {
  width: 100%;
  height: 0;
  margin: 20px 0;
  border: 0;
  border-top: 1px solid #e9e9e9;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 30px;
}

.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 35px;
  color: var(--orange);
}

.contact-label {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1c2430;
}

.contact-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: #1c2430;
}

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

@media (max-width: 960px) {
  .header-inner {
    width: calc(100% - 40px);
  }

  .site-header {
    padding: 12px 0 0;
  }

  .brand-logo,
  .custom-logo {
    height: auto;
    max-height: 50px;
    max-width: min(160px, 42vw);
  }

  .primary-menu .menu-item-wide > .sub-menu {
    columns: 1;
    min-width: 0;
  }

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

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: var(--z-nav);
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    background: #1c2430;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transition: opacity 220ms ease, visibility 220ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100%;
    padding: 16px 24px max(28px, env(safe-area-inset-bottom));
  }

  .nav-panel-brand {
    display: block;
    margin: 0 56px 16px 0;
  }

  .nav-panel-brand img {
    display: block;
    height: 64px;
    width: auto;
    max-width: min(280px, 78vw);
    object-fit: contain;
    filter: brightness(0) invert(1);
  }

  .primary-menu {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .primary-menu > li {
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .primary-menu > .menu-item-has-children {
    position: static;
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .primary-menu > .menu-item-has-children::after {
    content: none;
  }

  .primary-menu > li > .menu-link,
  .primary-menu > li > a {
    width: 100%;
    justify-content: space-between;
    min-height: 52px;
    padding: 8px 0;
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: -0.02em;
  }

  .primary-menu .menu-caret {
    color: #ffffff;
    transition: transform 180ms ease;
  }

  .primary-menu .menu-caret svg {
    width: 12px;
    height: 8px;
  }

  .primary-menu > .menu-item-has-children.is-open > a .menu-caret {
    transform: rotate(180deg);
  }

  .primary-menu .sub-menu,
  .primary-menu .menu-item-wide > .sub-menu,
  .primary-menu > .menu-item-has-children:hover > .sub-menu,
  .primary-menu > .menu-item-has-children:focus-within > .sub-menu {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    min-width: 0;
    max-height: none;
    width: 100%;
    margin: 0;
    padding: 0 0 12px 14px;
    overflow: visible;
    columns: 1;
    column-gap: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    background: transparent;
    border: 0;
    border-left: 2px solid rgba(255, 255, 255, 0.28);
    border-radius: 0;
    backdrop-filter: none;
  }

  .primary-menu > .menu-item-has-children.is-open > .sub-menu {
    display: block;
  }

  .primary-menu .sub-menu a {
    min-height: 44px;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.78);
  }

  .nav-contact {
    display: block;
    margin-top: auto;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .nav-contact-kicker {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #ffffff;
  }

  .nav-contact-kicker-icon {
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: var(--orange);
  }

  .nav-contact-list {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .nav-contact-list a,
  .nav-contact-list p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin: 0;
    font-family: var(--font-text);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
  }

  .nav-contact-list svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--orange);
  }

  .nav-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border-radius: 14px;
    background: var(--orange);
    color: #ffffff;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 100svh;
  }

  .hero-wordmark {
    position: relative;
    top: auto;
    left: auto;
    z-index: var(--z-stage);
    width: 100%;
    margin: 0;
    padding: calc(var(--header-h) + 20px) 20px 0;
    transform: translateY(-36px);
    font-size: clamp(2.6rem, 11vw, 3.4rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    color: #ffffff;
    -webkit-text-stroke: 0;
    text-align: center;
    white-space: normal;
  }

  .hero.is-ready .hero-wordmark {
    animation: hero-mobile-title 1100ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }

  .hero-stage {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(100% - 40px);
    min-height: 0;
    flex: 0 0 auto;
    gap: 18px;
    padding: 120px 0 28px;
  }

  .hero-copy {
    order: 1;
    justify-self: stretch;
    width: 100%;
    margin-bottom: 0;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(1.75rem, 7vw, 2.15rem);
    font-weight: 700;
    line-height: 1.25;
  }

  .hero-title span {
    display: inline;
  }

  .hero-title span + span::before {
    content: " ";
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }

  .hero-excerpt {
    order: -1;
    max-width: 36ch;
    margin: 0 auto;
    text-align: center;
    font-size: 14px;
    line-height: 1.55;
  }

  .stat-card {
    order: 2;
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    row-gap: 12px;
    width: 100%;
    max-width: 100%;
    margin: 4px 0 0;
    padding: 22px 20px 20px;
    text-align: left;
  }

  .stat-value {
    grid-column: 1;
    grid-row: 1;
    align-self: center;
    font-size: 3rem;
  }

  .stat-label {
    grid-column: 2;
    grid-row: 1;
    align-self: center;
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
  }

  .stat-copy {
    grid-column: 1 / -1;
    margin: 0;
    text-align: center;
    font-size: 14px;
  }

  .stat-people {
    grid-column: 1 / -1;
    justify-content: center;
    margin-top: 8px;
  }

  .about {
    padding: 56px 0 0;
  }

  .about-wrap {
    width: min(var(--max), calc(100% - 40px));
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "content"
      "media";
    gap: 28px;
  }

  .about-content {
    padding-bottom: 0;
    margin-left: 0;
  }

  .about-media {
    width: 100vw;
    max-width: 100vw;
    margin: 0 0 0 calc(50% - 50vw);
    min-height: 0;
    aspect-ratio: auto;
  }

  .about-photo {
    position: static;
    display: block;
    width: 72%;
    height: auto;
    object-fit: contain;
    object-position: left bottom;
    border-radius: 0;
  }

  .about-title {
    margin-bottom: 28px;
    max-width: 100%;
    font-size: 46px;
  }

  .about-kicker {
    font-size: 16px;
  }

  .about-rating-score,
  .about-quote-cite {
    font-size: 15px;
  }

  .about-quote-text {
    font-size: 16px;
  }

  .about-copy-col p {
    font-size: 15px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .choose {
    padding: 80px 0;
  }

  .choose-head {
    width: 100%;
  }

  .choose-title {
    font-size: 46px;
  }

  .choose-kicker {
    font-size: 16px;
  }

  .choose-body {
    flex-direction: column;
    gap: 50px;
    padding-top: 48px;
  }

  .choose-photo {
    width: 100%;
    order: 2;
  }

  .choose-stats {
    width: 100%;
    order: 1;
  }

  .choose-photo img {
    height: 320px;
  }

  .choose-card {
    padding: 20px;
  }

  .choose-copy {
    padding: 0 20px;
  }

  .choose-num--sm {
    font-size: 28px;
  }

  .choose-num--md {
    font-size: 52px;
  }

  .choose-num--lg {
    font-size: 72px;
  }

  .choose-label {
    font-size: 19px;
  }

  .services {
    padding: 80px 0;
  }

  .services-wrap {
    gap: 48px;
  }

  .services-head {
    width: 100%;
    flex-direction: column;
    gap: 24px;
  }

  .services-heading {
    flex: none;
    width: 100%;
    max-width: none;
    order: 1;
    text-align: center;
  }

  .services-intro {
    flex: none;
    width: 100%;
    max-width: none;
    order: 2;
    text-align: center;
    border-bottom: 1px solid #e9e9e9;
  }

  .services-intro p {
    margin-bottom: 20px;
  }

  .services-intro a {
    display: block;
    margin-top: 10px;
  }

  .services-kicker {
    justify-content: center;
    font-size: 16px;
  }

  .services-title {
    font-size: 46px;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-card:last-child {
    grid-column: 1 / -1;
  }

  .service-card {
    padding: 30px;
  }

  .service-card-title {
    font-size: 21px;
  }

  .service-card::before {
    width: 90px;
    height: 90px;
    border-bottom-left-radius: 55px;
  }

  .service-card-go {
    width: 70px;
    height: 70px;
  }

  .projects {
    padding: 80px 0;
  }

  .projects-wrap {
    gap: 48px;
  }

  .projects-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .projects-heading,
  .projects-aside {
    width: 100%;
  }

  .projects-title {
    font-size: 46px;
  }

  .projects-kicker {
    font-size: 16px;
  }

  .projects-grid {
    gap: 24px;
  }

  .project-card {
    min-height: 420px;
  }

  .project-card-info {
    padding: 20px;
  }

  .project-card-title {
    font-size: 24px;
  }

  .reviews {
    padding: 80px 0 0;
  }

  .reviews-wrap {
    gap: 48px;
  }

  .reviews-head,
  .reviews-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
  }

  .reviews-heading,
  .reviews-aside,
  .reviews-head-photo,
  .reviews-photos,
  .reviews-slider {
    flex: none;
    width: 100%;
    max-width: none;
    margin-left: 0;
  }

  .reviews-heading {
    order: 1;
  }

  .reviews-head-photo {
    order: 2;
  }

  .reviews-aside {
    order: 3;
  }

  .reviews-head-photo img {
    height: 240px;
  }

  .reviews-copy {
    max-width: none;
  }

  .reviews-title {
    font-size: 46px;
  }

  .reviews-photo--tall {
    height: 360px;
  }

  .reviews-photo--wide {
    width: 100%;
  }

  .review-quote {
    font-size: 22px;
  }

  .cta-banner {
    padding: 80px 0;
  }

  .cta-layout {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-media {
    width: 100%;
    min-height: 365px;
  }

  .cta-play-wrap {
    width: 100%;
    min-height: 365px;
  }

  .cta-play {
    width: 120px;
    height: 120px;
  }

  .cta-panel {
    width: 100%;
    min-height: 0;
    margin-left: 0;
    margin-top: 28px;
  }

  .cta-notch {
    display: none;
  }

  .cta-copy {
    padding: 0;
    background: transparent;
    border-radius: 0;
  }

  .cta-title {
    font-size: 46px;
  }

  .insights {
    padding: 80px 0;
  }

  .insights-wrap {
    gap: 48px;
  }

  .insights-head {
    width: 100%;
  }

  .insights-title {
    font-size: 46px;
  }

  .insights-kicker {
    font-size: 16px;
  }

  .insights-grid {
    grid-template-columns: 1fr;
  }

  .insight-body {
    padding: 30px;
  }

  .build {
    padding: 80px 0;
  }

  .build-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  .build-copy {
    width: 100%;
  }

  .build-title {
    font-size: 45px;
  }

  .build-kicker {
    font-size: 16px;
  }

  .build-go {
    width: 120px;
    height: 120px;
  }

  .contact {
    padding: 80px 0;
  }

  .contact-wrap {
    flex-direction: column;
    gap: 48px;
  }

  .contact-form-card,
  .contact-info {
    width: 100%;
  }

  .contact-info {
    order: 1;
  }

  .contact-form-card {
    order: 2;
  }

  .contact-title {
    font-size: 46px;
  }

  .contact-kicker {
    font-size: 16px;
  }

}

@media (max-width: 767px) {
  .hero-title {
    font-size: 32px;
    line-height: 1.25;
  }

  .hero-excerpt {
    font-size: 14px;
  }

  .stat-value {
    font-size: 40px;
  }

  .stat-label {
    font-size: 16px;
  }

  .stat-copy {
    font-size: 14px;
  }

  .avatar,
  .avatar-add {
    width: 45px;
    height: 45px;
  }

  .avatar {
    margin-right: -15px;
  }

  .btn-orange {
    font-size: 12px;
    min-height: 48px;
    padding: 6px 8px 6px 20px;
  }

  .about-wrap {
    grid-template-areas:
      "kicker"
      "content"
      "media";
    width: calc(100% - 40px);
  }

  .about-media {
    margin-left: calc(50% - 50vw);
    width: 100vw;
    max-width: 100vw;
    min-height: 0;
    aspect-ratio: auto;
  }

  .about-photo {
    position: static;
    display: block;
    width: 72%;
    height: auto;
    object-fit: contain;
    object-position: left bottom;
    border-radius: 0;
  }

  .about-title {
    font-size: 36px;
  }

  .about-kicker {
    font-size: 14px;
  }

  .about-copy-col p {
    font-size: 14px;
  }

  .about-btn {
    font-size: 12px;
  }

  .choose-wrap,
  .services-wrap,
  .projects-wrap,
  .reviews-wrap,
  .insights-wrap,
  .build-wrap,
  .contact-wrap,
  .cta-banner-wrap,
  .footer-wrap {
    width: calc(100% - 40px);
  }

  .choose-title {
    font-size: 36px;
  }

  .choose-kicker {
    font-size: 14px;
  }

  .choose-stats {
    flex-direction: column;
    align-items: stretch;
  }

  .choose-col {
    gap: 20px;
  }

  .choose-num--sm {
    font-size: 28px;
  }

  .choose-num--md {
    font-size: 42px;
  }

  .choose-num--lg {
    font-size: 62px;
  }

  .choose-copy {
    font-size: 14px;
  }

  .services-title {
    font-size: 36px;
  }

  .services-kicker {
    font-size: 14px;
  }

  .services-intro {
    font-size: 14px;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card:last-child {
    grid-column: auto;
  }

  .service-card {
    padding: 20px;
    gap: 24px;
  }

  .service-card-title {
    font-size: 18px;
  }

  .service-card::before {
    width: 80px;
    height: 80px;
    border-bottom-left-radius: 50px;
  }

  .service-card-go {
    width: 60px;
    height: 60px;
  }

  .service-card-go svg {
    width: 22px;
    height: 22px;
  }

  .projects-title {
    font-size: 36px;
  }

  .projects-kicker {
    font-size: 14px;
  }

  .projects-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .project-card {
    min-height: 720px;
  }

  .project-card-info {
    padding: 15px;
    transform: none;
  }

  .project-card-title {
    font-size: 24px;
  }

  .project-card-cat {
    font-size: 14px;
  }

  .project-card-go {
    width: 40px;
    height: 40px;
  }

  .project-card-go svg {
    width: 16px;
    height: 16px;
  }

  .reviews-title {
    font-size: 36px;
  }

  .reviews-kicker {
    font-size: 14px;
  }

  .review-quote {
    font-size: 19px;
  }

  .review-name {
    font-size: 17px;
  }

  .review-role {
    font-size: 14px;
  }

  .review-mark {
    font-size: 130px;
  }

  .reviews-photo--tall {
    height: 413px;
  }

  .reviews-photo--wide {
    height: 200px;
  }

  .cta-play-wrap {
    min-height: 240px;
  }

  .cta-play {
    width: 80px;
    height: 80px;
  }

  .insights-title {
    font-size: 36px;
  }

  .insights-kicker {
    font-size: 14px;
  }

  .insight-media img {
    height: 210px;
  }

  .insight-body {
    padding: 20px;
  }

  .insight-card-title {
    font-size: 17px;
  }

  .cta-title {
    font-size: 36px;
  }

  .build-title {
    font-size: 35px;
  }

  .build-kicker {
    font-size: 14px;
  }

  .build-go {
    width: 80px;
    height: 80px;
  }

  .build-go svg {
    width: 28px;
    height: 28px;
  }

  .contact-title {
    font-size: 36px;
  }

  .contact-kicker {
    font-size: 14px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .contact-field {
    width: 100%;
  }

  .contact-value {
    font-size: 18px;
  }

  .contact-item {
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .hero-controls {
    right: 16px;
    bottom: 20px;
  }
}

/* Footer */

.site-footer {
  background: #1c2430;
  color: #ffffff;
}

.footer-main {
  position: relative;
  overflow: hidden;
  padding: 120px 0 0;
}

.footer-wrap {
  position: relative;
  z-index: 1;
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 80px;
  padding-bottom: 120px;
}

.footer-brand {
  width: 30%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.footer-logo img {
  display: block;
  width: 65%;
  height: auto;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
}

.footer-offices {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}

.footer-label {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.footer-value {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.footer-links {
  width: 15%;
}

.footer-heading {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: #ffffff;
}

.footer-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  color: #ffffff;
}

.footer-links a svg {
  flex-shrink: 0;
  color: var(--orange);
}

.footer-links a:hover {
  color: #e7e7e7;
}

.footer-aside {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.footer-aside > .footer-heading {
  max-width: 73%;
  margin-bottom: 0;
}

.footer-news {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.footer-news-row {
  display: flex;
  align-items: center;
  padding: 5px;
  border: 1px solid #e7e7e7;
  border-radius: 20px;
}

.footer-news input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 17px;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-family: var(--font-text);
  font-size: 16px;
}

.footer-news input[type="email"]::placeholder {
  color: #c9c1c1;
}

.footer-news input[type="email"]:focus {
  outline: none;
}

.footer-news-kvkk {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-family: var(--font-text);
  font-size: 12px;
  line-height: 1.5;
  color: #c9c1c1;
}

.footer-news-kvkk input {
  margin-top: 2px;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  accent-color: var(--orange);
}

.footer-news-kvkk a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-news button {
  flex-shrink: 0;
  padding: 20.5px 34px;
  border: 1px solid var(--orange);
  border-radius: 15px;
  background: var(--orange);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.footer-news button:hover {
  background: transparent;
  color: #ffffff;
}

.footer-news-ok {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  color: #e9e9e9;
}

.footer-social-list {
  display: flex;
  gap: 10px;
}

.footer-social-list a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--orange);
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
}

.footer-social-list a:hover {
  background: transparent;
}

.footer-mark {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  width: 62%;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-size: 200px;
  font-weight: 500;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 2px #323e50;
  pointer-events: none;
  user-select: none;
}

.footer-bar {
  border-top: 1px solid #323e50;
  padding: 30px 0;
}

.footer-bar-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.footer-copy {
  margin: 0;
  max-width: 58%;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #e9e9e9;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px 25px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal a {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.footer-legal a:hover {
  color: #e7e7e7;
}

.footer-credit {
  border-top: 1px solid #323e50;
  padding: 18px 0 22px;
}

.footer-credit-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #e9e9e9;
  text-decoration: none;
}

.footer-credit-link:hover {
  color: #ffffff;
}

.footer-credit-logo {
  display: block;
  height: 28px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.footer-credit-name {
  font-weight: 500;
  color: #ffffff;
}

@media (max-width: 960px) {
  .footer-main {
    padding-top: 80px;
  }

  .footer-wrap {
    flex-wrap: wrap;
    gap: 48px;
    padding-bottom: 80px;
  }

  .footer-brand {
    width: 46%;
  }

  .footer-links {
    width: 24%;
  }

  .footer-aside {
    width: 100%;
  }

  .footer-aside > .footer-heading {
    max-width: none;
  }

  .footer-mark {
    font-size: 135px;
    -webkit-text-stroke-width: 1px;
  }
}

@media (max-width: 767px) {
  .footer-wrap {
    flex-direction: column;
    align-items: center;
    gap: 48px;
    padding-bottom: 64px;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-aside {
    width: 100%;
    align-items: center;
  }

  .footer-logo {
    display: flex;
    justify-content: center;
  }

  .footer-logo img {
    width: auto;
    max-width: 180px;
    margin: 0 auto;
  }

  .footer-tagline {
    font-size: 18px;
  }

  .footer-offices {
    width: 100%;
    gap: 36px;
  }

  .footer-label {
    font-weight: 500;
  }

  .footer-heading {
    font-size: 21px;
  }

  .footer-links ul {
    align-items: center;
  }

  .footer-news {
    width: 100%;
    padding: 0;
    background: transparent;
    border: 0;
  }

  .footer-news-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    background: #f7f7f7;
    border: 0;
    border-radius: 20px;
  }

  .footer-news input[type="email"] {
    width: 100%;
    padding: 16px 18px;
    border-radius: 15px;
    background: #ffffff;
    color: #1c2430;
  }

  .footer-news input[type="email"]::placeholder {
    color: #9a9a9a;
  }

  .footer-news button {
    width: 100%;
    padding: 16px 24px;
  }

  .footer-news-kvkk {
    justify-content: center;
    text-align: left;
  }

  .footer-social {
    width: 100%;
  }

  .footer-social-list {
    justify-content: center;
  }

  .footer-mark {
    width: 100%;
    font-size: clamp(56px, 18vw, 80px);
    -webkit-text-stroke-width: 1px;
  }

  .footer-bar-wrap {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .footer-copy {
    max-width: none;
    font-size: 13px;
  }

  .contact-company {
    font-size: 13px;
  }

  .footer-legal {
    justify-content: center;
    gap: 0;
  }

  .footer-legal li:not(:last-child)::after {
    content: "|";
    margin: 0 10px;
    color: #ffffff;
  }
}

@media (scripting: none) {
  .hero-wordmark,
  .stat-card,
  .hero-copy,
  [data-reveal] {
    opacity: 1;
  }

  .hero-wordmark {
    transform: translateX(-48%);
  }

  @media (max-width: 960px) {
    .hero-wordmark {
      transform: none;
    }
  }

  .stat-card,
  .hero-copy,
  [data-reveal] {
    transform: none;
  }
}

/* About page hero — Morph inner banner (post-1154) */

.page-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 220px 20px 150px;
  overflow: hidden;
  background: #1c2430;
  text-align: center;
}

.page-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: bottom right;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: #1c2430;
  opacity: 0.3;
  pointer-events: none;
}

.page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 75px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0;
  color: #ffffff;
}

.page-hero-crumb {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
}

.page-hero-crumb a {
  color: var(--orange);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.page-hero-crumb a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .page-hero-title {
    font-size: 45px;
  }

  .page-hero-crumb {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .page-hero-title {
    font-size: 35px;
  }

  .page-hero-crumb {
    font-size: 14px;
  }

  .page-hero-crumb a {
    font-size: 12px;
  }
}

/* About page intro — Morph Precision Work + stats */

.page-intro {
  background: #ffffff;
  color: #1c2430;
  padding: 120px 0;
  margin: 0;
}

.page-template-page-hakkimizda {
  background: #1c2430;
}

.page-template-page-hakkimizda #main {
  display: flex;
  flex-direction: column;
}

.page-intro-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.page-intro-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.page-intro-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #1c2430;
  white-space: nowrap;
}

.page-intro-kicker-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background: var(--orange);
}

.page-intro-title {
  width: 65%;
  max-width: 65%;
  margin: -19px 0 -26px;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  color: #1c2430;
}

.page-intro-title span {
  font-weight: 500;
}

.page-intro-title[data-reveal="right"].is-in {
  animation-name: fadeInRightMorph;
}

@keyframes fadeInRightMorph {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDownMorph {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.page-template-page-hakkimizda .reviews,
.page-template-page-hakkimizda .cta-banner,
.page-template-page-hakkimizda .contact {
  margin: 0;
  overflow: visible;
}

.page-template-page-hakkimizda .reviews-head[data-reveal="down"].is-in {
  animation-name: fadeInDownMorph;
}

.page-template-page-hakkimizda .reviews-photos[data-reveal="left"].is-in {
  animation-name: fadeInLeft;
}

.page-template-page-hakkimizda .reviews-slider[data-reveal="right"].is-in {
  animation-name: fadeInRightMorph;
}

.page-template-page-hakkimizda .projects {
  margin: 0;
  overflow: visible;
}

.page-template-page-hakkimizda .projects-heading[data-reveal="left"].is-in {
  animation-name: fadeInLeft;
}

.page-template-page-hakkimizda .projects-grid[data-reveal="right"].is-in {
  animation-name: fadeInRight;
}

.page-template-page-hakkimizda .project-card {
  min-height: 500px;
}

.page-template-page-hakkimizda .project-card-bg {
  background-size: 950px auto;
  transition: background-size 600ms ease;
}

.page-template-page-hakkimizda .project-card:hover .project-card-bg {
  transform: none;
  background-size: 900px auto;
}

.page-template-page-hakkimizda .project-card-info {
  transform: translateY(160px);
  transition: transform 500ms ease;
}

.page-template-page-hakkimizda .project-card:hover .project-card-info,
.page-template-page-hakkimizda .project-card:focus-within .project-card-info {
  transform: translateY(0);
}

.page-template-page-hakkimizda .project-card-go {
  transition: background 180ms ease;
}

.page-template-page-hakkimizda .project-card-go:hover {
  transform: none;
}

.page-template-page-hakkimizda .project-card-go svg {
  transition: transform 500ms ease;
}

.page-template-page-hakkimizda .project-card:hover .project-card-go svg,
.page-template-page-hakkimizda .project-card-go:hover svg {
  transform: rotate(45deg);
}

@media (max-width: 767px) {
  .page-template-page-hakkimizda .project-card {
    min-height: 500px;
  }

  .page-template-page-hakkimizda .project-card-info {
    transform: translateY(220px);
  }

  .page-template-page-hakkimizda .project-card:hover .project-card-info,
  .page-template-page-hakkimizda .project-card:focus-within .project-card-info {
    transform: translateY(0);
  }
}

.page-intro-rule {
  display: block;
  width: 100%;
  margin: 10px 0;
  border: 0;
  border-top: 1px solid #e7e7e7;
}

.page-intro-stats {
  display: flex;
  flex-direction: row;
  gap: 50px;
}

.page-stat {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-stat-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0;
  row-gap: 10px;
}

.page-stat-value {
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 500;
  line-height: 1.2;
  color: #1c2430;
}

.page-stat-suffix {
  padding-bottom: 6px;
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 500;
  line-height: 1;
  color: var(--orange);
}

.page-stat-label {
  width: 100%;
  margin: 0;
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 500;
  line-height: 1.3;
  color: #1c2430;
}

.page-stat-copy {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
}

@media (max-width: 1024px) {
  .page-intro-head {
    flex-direction: column;
    gap: 24px;
  }

  .page-intro-title {
    width: 100%;
    max-width: 100%;
    margin: -14px 0 -22px;
    font-size: 46px;
  }

  .page-intro-stats {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px 0;
  }

  .page-stat {
    width: 46.4%;
    flex: none;
  }

  .page-stat-value {
    font-size: 52px;
  }

  .page-stat-suffix {
    font-size: 25px;
  }

  .page-intro-kicker {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .page-intro {
    padding: 80px 0;
  }

  .page-intro-wrap {
    gap: 36px;
  }

  .page-intro-title {
    font-size: 36px;
  }

  .page-stat {
    width: 100%;
  }

  .page-stat-value {
    font-size: 42px;
  }

  .page-intro-kicker {
    font-size: 14px;
  }

  .page-stat-copy {
    font-size: 14px;
  }
}

/* About — Morph Our Core Team */

.team {
  background: #ffffff;
  color: #1c2430;
  padding: 120px 0;
}

.team-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.team-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 80px;
}

.team-heading,
.team-copy-wrap {
  flex: 1;
  min-width: 0;
}

.team-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #1c2430;
}

.team-kicker-icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  background: var(--orange);
}

.team-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1.2;
  color: #1c2430;
}

.team-title strong {
  font-weight: 500;
}

.team-copy {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
}

.team-card {
  width: 32.3%;
}

.team-card-media {
  position: relative;
  overflow: hidden;
  border-radius: 25px;
  background-color: #d7d7d7;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 560px auto;
  transition: background-size 600ms ease;
}

.team-card-media:hover,
.team-card-media:focus-within {
  background-size: 500px auto;
}

.team-card-overlay {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  min-height: 700px;
  margin-top: -250px;
  padding: 20px;
  transform: translateY(250px);
  transition: transform 600ms ease;
}

.team-card-media:hover .team-card-overlay,
.team-card-media:focus-within .team-card-overlay {
  transform: translateY(0);
}

.team-card-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-card-social a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
}

.team-card-social a:hover,
.team-card-social a:focus-visible {
  background: var(--orange-hover);
}

.team-card-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-top: 20px;
}

.team-card-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: #1c2430;
}

.team-card-role {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--orange);
}

@media (max-width: 1024px) {
  .team {
    padding: 80px 0;
  }

  .team-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .team-copy-wrap {
    width: 100%;
  }

  .team-title {
    font-size: 46px;
  }

  .team-card {
    width: 48.5%;
  }

  .team-card-media {
    background-size: 460px auto;
  }

  .team-card-media:hover,
  .team-card-media:focus-within {
    background-size: 400px auto;
  }

  .team-card-overlay {
    min-height: 610px;
    margin-top: -210px;
    transform: translateY(210px);
  }

  .team-card-name {
    font-size: 21px;
  }

  .team-card-role {
    font-size: 15px;
  }

  .team-card-social a {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 767px) {
  .team-wrap {
    gap: 48px;
  }

  .team-kicker {
    font-size: 14px;
  }

  .team-title {
    font-size: 36px;
  }

  .team-copy {
    font-size: 14px;
  }

  .team-card {
    width: 100%;
  }

  .team-card-media {
    background-size: 420px auto;
  }

  .team-card-media:hover,
  .team-card-media:focus-within {
    background-size: 370px auto;
  }

  .team-card-overlay {
    min-height: 560px;
    margin-top: -190px;
    transform: translateY(190px);
  }

  .team-card-name {
    font-size: 18px;
  }

  .team-card-role {
    font-size: 14px;
  }

  .team-card-social a {
    width: 40px;
    height: 40px;
  }
}

/* About — Morph client logo carousel */

.clients {
  background: #ffffff;
  padding: 0 0 120px;
}

.clients-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
}

.clients-bar {
  padding: 50px;
  border-radius: 25px;
  background: var(--orange);
}

.clients-view {
  overflow: hidden;
}

.clients-track {
  display: flex;
  align-items: center;
  gap: 80px;
  will-change: transform;
}

.clients-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  min-width: 0;
}

.clients-slide img {
  display: block;
  width: 100%;
  max-height: 56px;
  height: auto;
  object-fit: contain;
  mix-blend-mode: screen;
}

@media (max-width: 1024px) {
  .clients {
    padding-bottom: 80px;
  }

  .clients-bar {
    padding: 30px 20px;
  }

  .clients-track {
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .clients-track {
    gap: 20px;
  }

  .clients-slide img {
    max-height: 44px;
  }
}

/* Project details */

.page-template-page-proje {
  background: #ffffff;
  color: #1c2430;
}

.project-facts {
  background: #f3f3f3;
  padding: 56px 0;
}

.project-facts-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 28px 40px;
}

.project-fact-label {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c2430;
}

.project-fact-value {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: #1c2430;
}

.project-showcase {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 120px;
}

@media (max-width: 1024px) {
  .project-facts-wrap {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .project-showcase {
    padding: 56px 0 80px;
  }
}

@media (max-width: 767px) {
  .project-facts {
    padding: 36px 0;
  }

  .project-facts-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }

  .project-fact-value {
    font-size: 16px;
  }
}

/* Service details — Morph post-1157 */

.page-template-page-hizmet {
  background: #ffffff;
  color: #1c2430;
}

.page-template-page-hizmet .contact {
  padding-top: 80px;
}

.service-detail {
  background: #ffffff;
  padding: 120px 0;
}

.service-detail-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) min(32%, 400px);
  align-items: start;
  gap: 40px 50px;
}

.service-detail-main {
  min-width: 0;
}

.service-detail-aside {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.service-detail-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  line-height: 1.3;
  color: #1c2430;
}

.service-detail-lead,
.service-detail-copy {
  margin: 0 0 22px;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
}

.service-detail-heading {
  margin: 28px 0 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  line-height: 1.3;
  color: #1c2430;
}

.service-detail-main .service-detail-heading:first-child {
  margin-top: 0;
}

.service-showcase {
  grid-column: 1 / -1;
  width: 100%;
  margin: 0;
}

.service-detail-intro {
  max-width: 860px;
  margin: 0 0 40px;
}

.service-detail-split {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 56px;
  margin: 0 0 40px;
}

.service-detail-split-link {
  display: block;
  width: 62%;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 25px;
  cursor: zoom-in;
}

.service-detail-split-image {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 25px;
  transition: transform 0.7s ease;
}

.service-detail-split-link:hover .service-detail-split-image {
  transform: scale(1.05);
}

.service-detail-checks {
  flex: 1;
  order: 2;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.service-detail-checks li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  color: #1c2430;
}

.service-detail-check {
  display: inline-flex;
  color: var(--orange);
  flex-shrink: 0;
}

.service-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

.service-gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: 25px;
}

.service-gallery-item a {
  display: block;
  height: 100%;
  cursor: zoom-in;
}

.service-gallery-item img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s ease;
}

.service-gallery-item a:hover img {
  transform: scale(1.06);
}

.service-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 72px;
  background: rgba(12, 16, 24, 0.92);
}

.service-lightbox[hidden] {
  display: none;
}

.service-lightbox-image {
  max-width: min(1400px, 100%);
  max-height: calc(100vh - 96px);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
}

.service-lightbox-close,
.service-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
}

.service-lightbox-close:hover,
.service-lightbox-nav:hover {
  background: var(--orange);
}

.service-lightbox-close {
  top: 24px;
  right: 24px;
}

.service-lightbox-nav.is-prev {
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.service-lightbox-nav.is-next {
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.service-nav {
  padding: 40px;
  border-radius: 25px;
  background: #f7f7f7;
}

.service-aside-title {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
  color: #1c2430;
}

.service-nav-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-nav-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #e7e7e7;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: #1c2430;
}

.service-nav-list li:last-child a {
  border-bottom: 0;
  padding-bottom: 0;
}

.service-nav-list a.is-current,
.service-nav-list a:hover {
  color: var(--orange);
}

.service-cta {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 400px;
  min-height: 400px;
  padding: 32px;
  border-radius: 25px;
  background-color: #1c2430;
  background-image: var(--service-cta-bg);
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.service-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, #1c2430 100%);
  pointer-events: none;
}

.service-cta-title,
.service-cta-copy,
.service-cta-link {
  position: relative;
  z-index: 1;
}

.service-cta-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.3;
}

.service-cta-copy {
  margin: 0 0 20px;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.6;
  color: #e9e9e9;
}

.service-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
}

.service-cta-link:hover {
  color: var(--orange);
}

@media (max-width: 1024px) {
  .service-detail {
    padding: 80px 0;
  }

  .service-detail-wrap {
    grid-template-columns: 1fr;
  }

  .service-showcase {
    grid-column: auto;
  }

  .service-gallery {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail-title {
    font-size: 30px;
  }

  .service-detail-heading {
    font-size: 22px;
  }

  .service-detail-split {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
  }

  .service-detail-split-link,
  .service-detail-split-image {
    width: 100%;
  }

  .service-detail-split-image {
    height: 420px;
  }

  .service-gallery-item img,
  .service-cta {
    height: 320px;
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .service-detail-title {
    font-size: 26px;
  }

  .service-detail-split-image {
    height: 280px;
  }

  .service-detail-checks li {
    font-size: 16px;
  }

  .service-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-gallery-item img,
  .service-cta {
    height: 280px;
    min-height: 280px;
  }

  .service-lightbox {
    padding: 72px 16px 16px;
  }

  .service-nav {
    padding: 24px 20px;
  }

  .service-cta {
    padding: 28px 20px;
    min-height: 320px;
  }
}

/* Contact page — Morph contact-us */

.page-template-page-iletisim {
  background: #ffffff;
  color: #1c2430;
}

.page-template-page-iletisim #main {
  background: #ffffff;
}

.contact--page {
  padding-top: 100px;
  padding-bottom: 80px;
}

.contact-map {
  width: 100%;
  height: 450px;
  background: #e9ecef;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-faq {
  background: #ffffff;
  padding: 100px 0 120px;
}

.contact-faq-wrap {
  width: min(1340px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 80px;
  align-items: start;
}

.contact-faq-head {
  max-width: none;
  margin: 0;
}

.contact-faq-item {
  border-bottom: 1px solid #e6e6e6;
  overflow-anchor: none;
}

.contact-faq-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
  color: #1c2430;
}

.contact-faq-title strong {
  font-weight: 500;
}

.contact-faq-lead {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #555555;
}

.contact-faq-list {
  min-width: 0;
}

.contact-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  color: #1c2430;
}

.contact-faq-item summary::-webkit-details-marker,
.contact-faq-item summary::marker {
  display: none;
  content: "";
}

.contact-faq-item summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

.contact-faq-mark {
  position: relative;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.contact-faq-mark::before,
.contact-faq-mark::after {
  content: "";
  position: absolute;
  background: var(--orange);
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-faq-mark::before {
  top: 6px;
  left: 0;
  width: 14px;
  height: 2px;
}

.contact-faq-mark::after {
  top: 0;
  left: 6px;
  width: 2px;
  height: 14px;
}

.contact-faq-item[open] .contact-faq-mark::after {
  opacity: 0;
}

.contact-faq-item p {
  margin: 0 0 22px;
  padding-right: 28px;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #555555;
}

@media (max-width: 1024px) {
  .contact-faq-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-faq-head {
    position: static;
  }

  .contact-faq-title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .contact--page {
    padding-top: 64px;
    padding-bottom: 48px;
  }

  .contact-map {
    height: 320px;
  }

  .contact-faq {
    padding: 64px 0 80px;
  }

  .contact-faq-wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-faq-head {
    position: static;
  }

  .contact-faq-title {
    font-size: 30px;
  }

  .contact-faq-item summary {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }

  .hero-wordmark,
  .stat-card,
  .hero-copy,
  [data-reveal] {
    opacity: 1 !important;
  }

  .hero-wordmark {
    transform: translateX(-48%) !important;
  }

  @media (max-width: 960px) {
    .hero-wordmark {
      transform: none !important;
    }
  }

  .stat-card,
  .hero-copy,
  [data-reveal] {
    transform: none !important;
  }
}

/* Products catalog */

.catalog-page,
.product-page {
  background: #ffffff;
  color: #1c2430;
}

.page-hero.is-compact {
  padding: 150px 20px 72px;
}

.page-hero.is-compact .page-hero-title {
  font-size: 56px;
}

.catalog-main {
  background: #ffffff;
}

.catalog-bar {
  background: #f3f3f3;
  padding: 34px var(--page-gutter);
}

.catalog-bar-inner {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.catalog-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1c2430;
}

.catalog-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1c2430;
  transition: color 180ms ease;
}

.catalog-back:hover,
.catalog-back:focus-visible {
  color: var(--orange);
}

.catalog {
  background: #ffffff;
  padding: 56px var(--page-gutter) 120px;
}

.catalog-grid {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px 22px;
}

.catalog-card {
  display: block;
  min-width: 0;
  color: inherit;
  cursor: pointer;
}

.catalog-card:hover .catalog-card-title,
.catalog-card:focus-visible .catalog-card-title {
  color: var(--orange);
}

.catalog-card-media {
  margin: 0;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-radius: 22px;
  background: #eceae6;
}

.catalog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 320ms ease;
}

.catalog-card-media.is-tone {
  background:
    radial-gradient(120% 80% at 18% 22%, color-mix(in srgb, var(--tone) 58%, #ffffff) 0%, transparent 52%),
    radial-gradient(90% 70% at 82% 78%, color-mix(in srgb, var(--tone) 70%, #1c2430) 0%, transparent 48%),
    linear-gradient(128deg, color-mix(in srgb, var(--tone) 88%, #ffffff), var(--tone) 46%, color-mix(in srgb, var(--tone) 72%, #1c2430));
}

.catalog-card:hover .catalog-card-media img {
  transform: scale(1.04);
}

.catalog-card-title {
  margin: 14px 0 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1c2430;
  transition: color 180ms ease;
}

.catalog-card-copy {
  margin: 8px 0 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: #5b6576;
}

@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 36px 22px;
  }
}

@media (max-width: 767px) {
  .catalog-bar {
    padding: 24px 20px;
  }

  .catalog-bar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .catalog-title {
    font-size: 26px;
  }

  .catalog {
    padding: 32px 20px 80px;
  }

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

  .catalog-card-title {
    font-size: 12px;
  }

  .catalog-card-copy {
    font-size: 13px;
  }
}

@media (max-width: 479px) {
  .catalog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .page-hero.is-compact {
    padding: 120px 20px 56px;
  }

  .page-hero.is-compact .page-hero-title {
    font-size: 32px;
  }
}

/* Product detail */

.product-detail {
  background: #ffffff;
  padding: 72px var(--page-gutter) 120px;
}

.product-detail-wrap {
  width: min(1480px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 56px;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.product-photo {
  margin: 0;
  overflow: hidden;
  border-radius: 22px;
  background: #eceae6;
}

.product-photo.is-main {
  grid-column: 1 / -1;
  aspect-ratio: 5 / 4;
}

.product-photo:not(.is-main) {
  aspect-ratio: 5 / 4;
}

.product-photo a,
.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
}

.product-photo img {
  object-fit: cover;
  transition: transform 320ms ease;
}

.product-photo a:hover img {
  transform: scale(1.03);
}

.product-photo.is-tone {
  background:
    radial-gradient(120% 80% at 18% 22%, color-mix(in srgb, var(--tone) 58%, #ffffff) 0%, transparent 52%),
    radial-gradient(90% 70% at 82% 78%, color-mix(in srgb, var(--tone) 70%, #1c2430) 0%, transparent 48%),
    linear-gradient(128deg, color-mix(in srgb, var(--tone) 88%, #ffffff), var(--tone) 46%, color-mix(in srgb, var(--tone) 72%, #1c2430));
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-top: 8px;
}

.product-code {
  margin: 0;
  padding: 20px 22px;
  border-radius: 18px;
  background: #f3f3f3;
}

.product-code dt {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.product-code dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #1c2430;
}

.product-info-title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1c2430;
}

.product-copy p {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #4a5560;
}

@media (max-width: 1024px) {
  .product-detail-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-info {
    padding-top: 0;
  }
}

@media (max-width: 767px) {
  .product-detail {
    padding: 40px 20px 80px;
  }

  .product-info-title {
    font-size: 22px;
  }

  .product-code dd {
    font-size: 18px;
  }
}

/* References */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.references-page {
  background: #ffffff;
  color: #1c2430;
}

.refs-main {
  background: #ffffff;
}

.refs-intro {
  background: #ffffff;
  color: #1c2430;
  padding: 72px var(--page-gutter) 28px;
}

.refs-intro-wrap {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: start;
  gap: 32px 48px;
}

.refs-intro-copy {
  max-width: 58ch;
}

.refs-intro-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 42px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: #1c2430;
}

.refs-intro-copy p {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.7;
  color: #4a5560;
}

.refs-intro-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  min-width: 140px;
}

.refs-intro-stat strong {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--orange);
}

.refs-intro-stat span {
  margin-top: 8px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4a5560;
}

.refs {
  background: #f6f7f9;
  padding: 36px var(--page-gutter) 120px;
}

.refs-tools {
  width: min(1240px, 100%);
  margin: 0 auto 28px;
}

.refs-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.refs-chip {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #d7dce3;
  border-radius: 999px;
  background: #ffffff;
  color: #1c2430;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.refs-chip:hover,
.refs-chip:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
}

.refs-chip.is-active {
  background: var(--orange);
  border-color: var(--orange);
  color: #ffffff;
}

.refs-empty {
  width: min(1240px, 100%);
  margin: 0 auto 20px;
  font-family: var(--font-text);
  font-size: 15px;
  color: #4a5560;
}

.refs-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.refs-card[hidden] {
  display: none;
}

.refs-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 26px 26px 28px;
  border: 1px solid #e4e7ec;
  border-radius: 25px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(21, 24, 30, 0.04);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.refs-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--orange) 28%, #e4e7ec);
  box-shadow: 0 18px 40px rgba(0, 49, 114, 0.1);
}

.refs-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.refs-card-index {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--orange);
}

.refs-card-cat {
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0, 49, 114, 0.07);
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.refs-card-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: #1c2430;
}

.refs-card-client {
  margin: 8px 0 0;
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 500;
  color: #5c6673;
}

.refs-card-meta {
  margin: 16px 0 0;
}

.refs-card-loc {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-text);
  font-size: 13px;
  color: #4a5560;
}

.refs-card-work {
  margin: auto 0 0;
  padding-top: 18px;
  border-top: 1px solid #eef0f3;
  font-family: var(--font-text);
  font-size: 14px;
  line-height: 1.55;
  color: #3b4450;
}

@media (max-width: 1100px) {
  .refs-intro-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .refs-intro-stat {
    align-items: flex-start;
  }

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

@media (max-width: 767px) {
  .refs-intro {
    padding: 48px 20px 16px;
  }

  .refs {
    padding: 24px 20px 80px;
  }

  .refs-grid {
    grid-template-columns: 1fr;
  }

  .refs-card {
    min-height: 0;
  }
}

/* Blog */

.blog-page {
  background: #ffffff;
  color: #1c2430;
}

.blog-main {
  background: #ffffff;
}

.page-hero-kicker {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.page-hero-title.is-article {
  max-width: 18ch;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.18;
}

.blog-list {
  background: #ffffff;
  padding: 56px var(--page-gutter) 100px;
}

.blog-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
}

a.insight-card {
  display: flex;
  flex-direction: column;
  color: inherit;
  height: 100%;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

a.insight-card:hover,
a.insight-card:focus-visible {
  transform: translateY(-4px);
}

a.insight-card:hover .insight-card-title,
a.insight-card:focus-visible .insight-card-title {
  color: var(--orange);
}

.article {
  background: #ffffff;
  color: #1c2430;
  padding: 72px var(--page-gutter) 40px;
}

.article-wrap {
  width: min(760px, 100%);
  margin: 0 auto;
}

.article-date {
  margin: 0 0 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange);
}

.article-body {
  font-family: var(--font-text);
  font-size: 17px;
  line-height: 1.8;
  color: #3b4450;
}

.article-body p {
  margin: 0 0 1.15em;
}

.article-body ul {
  margin: 0 0 1.25em;
  padding-left: 1.2em;
}

.article-body li {
  margin: 0 0 0.45em;
}

.article-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
}

.article-back:hover,
.article-back:focus-visible {
  color: var(--orange-hover);
}

.blog-related {
  background: #f6f7f9;
  padding: 72px var(--page-gutter) 40px;
}

.blog-related-head {
  width: min(1240px, 100%);
  margin: 0 auto 28px;
}

.page-template-page-blog .cta-banner,
.page-template-page-yazi .cta-banner {
  margin: 0;
}

@media (max-width: 767px) {
  .blog-list,
  .blog-related,
  .article {
    padding-left: 20px;
    padding-right: 20px;
  }

  .insight-body {
    padding: 24px;
  }
}

#genta-wa {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

#genta-wa:hover,
#genta-wa:focus-visible {
  background: #1ebe5d;
  color: #fff;
}
